@hpcc-js/chart
Advanced tools
Comparing version 2.27.10 to 2.28.0
@@ -6,2 +6,30 @@ # Change Log | ||
# [2.28.0](https://github.com/hpcc-systems/Visualization/compare/@hpcc-js/chart@2.27.5...@hpcc-js/chart@2.28.0) (2020-04-22) | ||
### Features | ||
* Add __lparam to color callbacks ([ef920bd](https://github.com/hpcc-systems/Visualization/commit/ef920bd8c209f8475dbb18bd1a2d8cca482b2333)) | ||
* Add fontSize and fontFamily to Axis ([d84a62a](https://github.com/hpcc-systems/Visualization/commit/d84a62ad7a6d265839ab3213eff037181eb81b20)), closes [#3569](https://github.com/hpcc-systems/Visualization/issues/3569) | ||
## 2.15.11 (2020-04-21) | ||
## 2.15.10 (2020-04-21) | ||
## 2.15.9 (2020-04-17) | ||
## 2.15.7 (2020-04-11) | ||
## [2.27.10](https://github.com/hpcc-systems/Visualization/compare/@hpcc-js/chart@2.27.5...@hpcc-js/chart@2.27.10) (2020-04-21) | ||
@@ -8,0 +36,0 @@ |
{ | ||
"name": "@hpcc-js/chart", | ||
"version": "2.27.10", | ||
"version": "2.28.0", | ||
"description": "hpcc-js - Viz Chart", | ||
@@ -82,3 +82,3 @@ "main": "dist/index.js", | ||
"homepage": "https://github.com/hpcc-systems/Visualization", | ||
"gitHead": "bb306944a7418aa6a31c1416ec81273657c2f750" | ||
"gitHead": "e857dc6a992992996caa233da8cd8e770ae5d4a4" | ||
} |
export declare const PKG_NAME = "@hpcc-js/chart"; | ||
export declare const PKG_VERSION = "2.27.10"; | ||
export declare const BUILD_VERSION = "2.15.10"; | ||
export declare const PKG_VERSION = "2.28.0"; | ||
export declare const BUILD_VERSION = "2.15.12"; | ||
//# sourceMappingURL=__package__.d.ts.map |
@@ -80,2 +80,11 @@ import { publish, SVGWidget } from "@hpcc-js/common"; | ||
ordinals_exists: () => boolean; | ||
fontSize: { | ||
(): number; | ||
(_: number): Axis; | ||
}; | ||
fontSize_exists: () => boolean; | ||
fontFamily: { | ||
(): string; | ||
(_: string): Axis; | ||
}; | ||
tickCount: { | ||
@@ -82,0 +91,0 @@ (): number; |
@@ -13,4 +13,4 @@ import { InputField } from "@hpcc-js/common"; | ||
_palette: any; | ||
fillColor: (row: any, column: any, value: any) => string; | ||
textColor: (row: any, column: any, value: any) => string; | ||
fillColor: (row: any, column: any, value: any, origRow: any) => string; | ||
textColor: (row: any, column: any, value: any, origRow: any) => string; | ||
dblclick: (row: any, column: any, selected: any) => void; | ||
@@ -17,0 +17,0 @@ tooltip: any; |
@@ -11,5 +11,5 @@ import { InputField } from "@hpcc-js/common"; | ||
private getScale; | ||
protected pointColor(row: any, col: any, sel: any): string; | ||
protected lineColor(row: any, col: any, sel: any): string; | ||
protected areaColor(row: any, col: any, sel: any): string; | ||
protected pointColor(row: any, col: any, value: any, origRow: any): string; | ||
protected lineColor(row: any, col: any, value: any, origRow: any): string; | ||
protected areaColor(row: any, col: any, value: any, origRow: any): string; | ||
layerEnter(host: XYAxis, element: any, duration?: number): void; | ||
@@ -60,5 +60,5 @@ protected _prevPointShape: any; | ||
_palette: any; | ||
fillColor: (row: any, column: any, value: any) => string; | ||
strokeColor: (row: any, column: any, value: any) => string; | ||
textColor: (row: any, column: any, value: any) => string; | ||
fillColor: (row: any, column: any, value: any, origRow: any) => string; | ||
strokeColor: (row: any, column: any, value: any, origRow: any) => string; | ||
textColor: (row: any, column: any, value: any, origRow: any) => string; | ||
dblclick: (row: any, column: any, selected: any) => void; | ||
@@ -65,0 +65,0 @@ tooltip: any; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
3583106
21923