@arcgis/charts-js-common
Advanced tools
Comparing version 4.32.0-next.20 to 4.32.0-next.21
@@ -51,2 +51,3 @@ import type { WebChart, WebChartDataItem, WebMapWebChart, IRendererSymbol, WebChartSeriesType, ISimpleFillSymbol, ISimpleLineSymbol, ISimpleMarkerSymbol } from "@arcgis/charts-spec"; | ||
* @param props.graphicTemplate The graphic template to use to compute the color | ||
* @returns An object containing the renderer symbol and whether the color match was applied to the data item. | ||
*/ | ||
@@ -63,3 +64,6 @@ export declare function computeRendererSymbol(props: { | ||
graphicTemplate: Graphic; | ||
}): Promise<IRendererSymbol | undefined>; | ||
}): Promise<{ | ||
rendererSymbol: IRendererSymbol | undefined; | ||
colorMatchApplied: boolean; | ||
}>; | ||
/** | ||
@@ -71,2 +75,3 @@ * Completes a data set with renderer colors. | ||
* @param props.allowColorMatch Whether the color match is allowed | ||
* @returns An object containing the data items that may be filled with the renderer symbol and whether the color match was applied to any of the data items. | ||
*/ | ||
@@ -78,3 +83,6 @@ export declare function completeDataWithRendererSymbol(props: { | ||
allowColorMatch: boolean; | ||
}): Promise<WebChartDataItem[]>; | ||
}): Promise<{ | ||
dataItems: WebChartDataItem[]; | ||
colorMatchApplied: boolean; | ||
}>; | ||
/** | ||
@@ -81,0 +89,0 @@ * Gets the renderer color stored in the data item, when in color match mode. |
@@ -71,2 +71,3 @@ import type { WebChartDataTypes, CalculatedMinMaxBoundsPayload, LegendItemVisibility, WebChartSeriesType, WebChartDataItem, WebChart } from "@arcgis/charts-spec"; | ||
chartId?: string; | ||
colorMatchApplied: boolean; | ||
}): void; | ||
@@ -73,0 +74,0 @@ /** |
@@ -37,2 +37,3 @@ import type { OverlayTerms, WebChart, WebChartDataItem, WebChartLabelBehavior, WebChartQuery, WebChartStackedKinds, WebChartTypes, IField, TimeIntervalInfo } from "@arcgis/charts-spec"; | ||
timeIntervalInfo?: TimeIntervalInfo; | ||
colorMatchApplied?: boolean; | ||
}; | ||
@@ -39,0 +40,0 @@ series: { |
{ | ||
"name": "@arcgis/charts-js-common", | ||
"version": "4.32.0-next.20", | ||
"version": "4.32.0-next.21", | ||
"publishConfig": { | ||
@@ -37,4 +37,4 @@ "registry": "https://registry.npmjs.org/", | ||
"dependencies": { | ||
"@arcgis/charts-shared-utils": "4.32.0-next.20", | ||
"@arcgis/charts-spec": "4.32.0-next.20", | ||
"@arcgis/charts-shared-utils": "4.32.0-next.21", | ||
"@arcgis/charts-spec": "4.32.0-next.21", | ||
"chance": "^1.1.11", | ||
@@ -41,0 +41,0 @@ "d3-array": "^3.1.1", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
4988790
78923
+ Added@arcgis/charts-shared-utils@4.32.0-next.21(transitive)
+ Added@arcgis/charts-spec@4.32.0-next.21(transitive)
- Removed@arcgis/charts-shared-utils@4.32.0-next.20(transitive)
- Removed@arcgis/charts-spec@4.32.0-next.20(transitive)