@arcgis/charts-components 5.2.0-next.97 → 5.2.0-next.98

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- {"$schema":"https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json","name":"@arcgis/charts-components","version":"5.2.0-next.97","description-markup":"markdown","contributions":{"html":{"elements":[{"name":"arcgis-chart","description":"The ArcGIS Chart component renders a chart by setting a [model](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#model) object that defines the chart's configuration and data.\n\nYou can render a chart either by:\n- Setting [layerItemId](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#layerItemId) and [chartIndex](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#chartIndex) to load a saved chart from a layer item.\n- Create a new chart by using the [`createModel()`](/references/charts-components/model/shared/setup-utils/#createModel) function to create a chart model and set it to the [model](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#model) property.\n\n> [!IMPORTANT]\n>\n> See the [Introduction to charts](https://developers.arcgis.com/javascript/latest/charts-components-intro/) guide for detailed examples on how to render a chart using the above patterns.\n\nThere are 10 supported chart types, each with its own model properties and methods. Refer to the [chart types documentation](https://developers.arcgis.com/javascript/latest/charts/chart-types/) for more information on each chart type.\n\n##### See also:\n- [Tutorial: Display a chart](https://developers.arcgis.com/javascript/latest/tutorials/display-a-chart/)\n- [Tutorial: Chart and map interactions](https://developers.arcgis.com/javascript/latest/tutorials/chart-and-map-interactions/)\n\n> [!WARNING]\n> When the chart is rendering while its container is not yet fully sized, a console error about the chart's attribute height may appear. This is a known issue and should not affect the functionality of the chart.\n--\n\n### Events\n- **arcgisAxesMinMaxChange** - Emitted when the chart's axes minimum or maximum values are computed.\n- **arcgisBadDataWarningRaise** - Emitted when the chart's data is incompatible with its model. Bad data such as empty dataset, axis logarithmic scale being incompatible with the data will trigger this event.\nThe event details contain information about the error.\n- **arcgisChartNotFoundWarning** - Emitted when the chart is not found for the given [chartIndex](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#chartIndex) property with a valid [layerItemId](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#layerItemId).\n- **arcgisConfigChange** - Emitted when the chart configuration is changed.\n- **arcgisDataFetchComplete** - Emitted once the chart data has been fetched but not yet fully processed. This event can be used to see all the slices before they get grouped into the 'other' slice during the post-processing step for pie charts.\nThe event details contain the pie chart's data with its ungrouped slices.\n\n**Note**: Applicable to pie charts only.\n- **arcgisDataProcessComplete** - Emitted once the chart data is updated and any subsequent updates to the chart's data.\nThe event details contain the chart's data.\n- **arcgisDataProcessError** - Emitted when an error occurred while fetching or processing the data for the chart.\n- **arcgisLegendItemVisibilityChange** - Emitted once a legend item visibility has been changed.\nThe event details contain the toggled item's visibility and related information (series or slice id).\n- **arcgisNoRenderPropChange** - Emitted when a no-render property ([rotated](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#rotated), [legendPosition](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#legendPosition), [legendVisibility](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#legendVisibility), [view](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#view) and [featureIndex](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#featureIndex)) is changed.\n- **arcgisRenderingComplete** - Emitted once the chart is created and the rendering is complete. This event also emits with any subsequent chart updates, including when the chart is refreshed or when the configuration is changed.\n- **arcgisRuntimeError** - Emitted when an error occurred that prevents the chart from being created or updated.\n- **arcgisSelectionComplete** - Emitted when a selection is applied to the chart.\nThe [`selectionData`](/references/charts-components/utils/misc/interfaces/#SelectionData) event detail contains various information about the selection, including the selected OIDs.\n- **arcgisSeriesColorChange** - Emitted once one of the chart's series color has been assigned or changed.\n- **arcgisSeriesOrder** - Emitted when the chart is created and at every update to confirm the order of the series on the chart.\nThe event details contain the modified series' indexes and names.\n\n### Methods\n- `applySelectionFromSelectionManager(): void` - Apply the selection from the selection manager to the chart.\n- `clearSelection(): Promise<void>` - Clears all selection on the chart.\n\n**Note**: Not applicable to gauge.\n- `componentOnReady(): Promise<this>` - Creates a promise that resolves once the component is fully loaded.\n- `destroy(): Promise<void>` - Destroys the chart instance.\n- `exportAsCSV(options?: CSVOptions): Promise<void>` - Export the current chart's data as a CSV file.\n- `exportAsImage(format?: DownloadableChartImagesTypes): Promise<void>` - Exports and downloads the current chart as an image.\n- Supported formats: `png` (default), `jpeg`, `jpg`, `webp`, and `svg`.\n - When `webp` format is used on Safari, it will fallback to `png`.\n- `loadModel(): Promise<void>` - Returns a promise that resolves when the chart model is fully loaded.\n\nThis method should be used when loading a chart with [layerItemId](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#layerItemId) and [chartIndex](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#chartIndex), and further customization of the chart model is needed.\n- `notify(message?: string, heading?: string): Promise<void>` - Passes external messages to the chart component and displays them in the chart's container.\nWhen a model update is overriding the notification modal, consider waiting for the [@arcgisUpdateComplete](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#event-arcgisUpdateComplete) event.\n- `refresh(props?: {\n updateData?: boolean;\n resetAxesBounds?: boolean;\n}): Promise<void>` - Re-render the chart.\n- `resetZoom(): Promise<void>` - Resets the chart's zoom and brings it back to full zoom extent.\n\n**Note**: Not applicable to gauges, heat charts, pie charts and radar charts.\n- `switchSelection(): Promise<void>` - Switches the selection on the chart.\n\n**Note**: Not applicable to gauges.\n\n### Slots\n- **action-bar** - Slot for the [arcgis-charts-action-bar](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-charts-action-bar/) component or [calcite-action-bar](https://developers.arcgis.com/calcite-design-system/components/action-bar/) component.","doc-url":"https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/","attributes":[{"name":"action-mode","description":"Specifies how user interactions on the chart are handled.\n\n- `monoSelection`: Select one data item at a time. Each new selection replaces the previous selection.\n- `multiSelection`: Select multiple data items. Each new selection is added to the existing selection.\n- `multiSelectionWithCtrlKey`: Select multiple data items only while holding Ctrl (or Cmd on macOS). Without the key, selection behaves like `monoSelection`.\n- `zoom`: Zoom into an area of the chart.\n- `none`: Disable interaction-driven selection and zoom actions.\n\n**Note**: Not applicable to gauges.","value":{"type":["\"none\"","\"monoSelection\"","\"multiSelection\"","\"multiSelectionWithCtrlKey\"","\"zoom\""]}},{"name":"allow-using-object-id-stat","description":"When `true`, object ID can be used as a numeric field for aggregated charts (for example, `sum` of `objectId`).","default":"false","value":{"type":"boolean"}},{"name":"animation-enabled","description":"When `true`, elements such as data items, axes, and legends will animate when the chart is first rendered or when the chart's configuration is updated.\n\n<video\n src=\"https://developers.arcgis.com/javascript/latest/assets/references/components/chart/animationEnabled.webm\"\n aria-label=\"animationEnabled\"\n width=\"720\"\n autoPlay\n loop\n muted\n playsInline\n/>","default":"false","value":{"type":"boolean"}},{"name":"auto-destroy-disabled","description":"When `true`, the component is not destroyed automatically when it is disconnected from the document, which is useful when moving or temporarily hiding it.\n\n> [!CAUTION]\n>\n> Call the [destroy()](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#destroy) method when you are done to prevent memory leaks.","default":"false","value":{"type":"boolean"}},{"name":"auto-inverse-data-label-text-color","description":"When `true`, the data label text color is automatically adjusted for readability based on its background, switching to either the chart background color or white when the contrast is too low.\n\n| With `autoInverseDataLabelTextColor` | Without `autoInverseDataLabelTextColor` |\n| -------- | -------- |\n| ![autoInverseDataLabelTextColor true](https://developers.arcgis.com/javascript/latest/assets/references/components/chart/autoInverseDataLabelTextColorTrue.avif) | ![autoInverseDataLabelTextColor false](https://developers.arcgis.com/javascript/latest/assets/references/components/chart/autoInverseDataLabelTextColorFalse.avif) |\n\n**Note**: Applicable to heat charts only.","default":"false","value":{"type":"boolean"}},{"name":"chart-index","description":"The index of the chart to be rendered from the layer. Must be used in conjunction with the `layerItemId` or `layer` property.\n\nIf a `layer` or `layerItemId` is set without `chartIndex`, the first chart in the layer will be rendered.\n\nIf the `chartIndex` is out of bounds, the first chart in the layer will be rendered and a warning event will be emitted.","value":{"type":"number"}},{"name":"configuration-enabled","description":"Whether to use features uniquely designed for a chart currently being configured by a user via the UI.\nWhen `true` and if the [arcgis-charts-action-bar](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-charts-action-bar/) is slotted in the chart component,\nthe action bar will expose an \"Edit chart\" action, surface relevant error states, and show a helpful in-container placeholder about the chart’s purpose.","default":"false","value":{"type":"boolean"}},{"name":"cursor-range","description":"Defines how the cursor selection rectangle is constrained when [actionMode](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#actionMode) is `zoom`, `multiSelection`, or `multiSelectionWithCtrlKey`.\n\n- `multi-axes`: Allows drawing a free rectangle across both axes.\n- `x-axis`: Constrains the rectangle to the x-axis direction.\n- `y-axis`: Constrains the rectangle to the y-axis direction.\n- `undefined`: Uses the default behavior for the current chart type and action mode.\n\n**Note**: Not applicable to gauges.","value":{"type":["\"multi-axes\"","\"x-axis\"","\"y-axis\""]}},{"name":"enable-beta-features","description":"Whether to enable the beta features from the chart component.","default":"false","value":{"type":"boolean"}},{"name":"error-policy","description":"When set to `ignore`, the chart fails silently without displaying an error or hiding the chart.\nBy default, it is set to `throw`, which displays an error alert and hides the chart when it can't be created or updated.","default":"\"throw\"","value":{"type":["\"throw\"","\"ignore\""]}},{"name":"filter-by-selection","description":"When `true`, the chart uses the current selection as a data filter and renders only selected elements instead of rendering the full dataset with selection styling.\nAxis bounds, time binning intervals will be computed based on the selected elements only.\n\n**Note**: Not applicable to gauges or charts configured with imagery layers.","default":"false","value":{"type":"boolean"}},{"name":"filter-by-view-extent","description":"When `true`, chart queries are constrained to the current map view extent. The chart refreshes as the view extent changes, and the axis bounds or other derived values are recalculated from the view extent data.","default":"false","value":{"type":"boolean"}},{"name":"hide-loader-animation","description":"When `true`, the loader animation is hidden when the chart is being created or updated. By default, it is shown at chart creation and each update (if it takes more than 300ms).\n| When `hideLoaderAnimation` is `true` | When `hideLoaderAnimation` is `false` |\n| -------- | -------- |\n| <video src=\"https://developers.arcgis.com/javascript/latest/assets/references/components/chart/hideLoaderAnimationTrue.webm\" aria-label=\"animationEnabled\" width=\"720\" autoPlay loop muted playsInline/> | <video src=\"https://developers.arcgis.com/javascript/latest/assets/references/components/chart/hideLoaderAnimationFalse.webm\" aria-label=\"animationEnabled\" width=\"720\" autoPlay loop muted playsInline/>","default":"false","value":{"type":"boolean"}},{"name":"hide-ui-messages","description":"When set to `true`, UI messages are hidden. These messages can be no data warnings, any placeholder messages set or invalid chart configuration.\nBy default, its value is `false`, which displays the messages on the chart.","default":"false","value":{"type":"boolean"}},{"name":"hide-zero-count-categories","description":"When `true`, missing categories from a `Count` aggregation are kept as gaps in the chart's data.\n\nWhen data is retrieved from the server, features with a count of 0 are excluded from the response, resulting in missing chart entries.\n\nBy default, the chart's [WebChartGenericDataItem](https://developers.arcgis.com/javascript/latest/references/charts-components/spec/data-source/#WebChartGenericDataItem-dataItems) associated with empty categories (from only a `Count` aggregation) are populated with 0s.","default":"false","value":{"type":"boolean"}},{"name":"ignore-view-extent","description":"When `true`, it signals the queries to ignore the view's extent, whether an additional geometry filter is provided or not.\n\nThis property will be effective when the component's [view](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#view) property is provided or when the [layer](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#layer) property is set to [`FeatureLayerView`](/references/core/views/layers/FeatureLayerView/).\n\nBy default the queries made by the chart will consider the view's extent as the unique geometry filter applicable. This implies ignoring any\ngeometry filters passed through the [model](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#model) or the [runtimeDataFilters](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#runtimeDataFilters) properties.","default":"false","value":{"type":"boolean"}},{"name":"interactions-disabled","description":"When `true`, all interactions such as zooming and selection are disabled on the chart. The chart will be rendered in a read-only state.","default":"false","value":{"type":"boolean"}},{"name":"layer-item-id","description":"Layer item ID associated with the chart to be rendered. Can be used in conjunction with the `chartIndex` property. If `layerItemId` is set without `chartIndex`, the first chart in the layer will be rendered.\n\nThe layer item ID can be found in the URL of the layer's item page on ArcGIS Online or Enterprise.\nFor example, in the URL `https://www.arcgis.com/home/item.html?id=8871626e970a4f3e9d6113ec63a92f2f`, the layer item ID is `8871626e970a4f3e9d6113ec63a92f2f`.\n\nSupported layer types include: [`FeatureLayer`](/references/core/layers/FeatureLayer), [`SubtypeSublayer`](/references/core/layers/support/SubtypeSublayer), [`ImageryLayer`](/references/core/layers/ImageryLayer), [`ImageryTileLayer`](/references/core/layers/ImageryTileLayer) and [`WCSLayer`](/references/core/layers/WCSLayer).","value":{"type":"string"}},{"name":"legend-interactions-disabled","description":"When `true`, disables the toggling of series or slices from the legend items. Clicking on the legend items will not hide or show the corresponding elements on the chart.\n\n**Note**: Only applicable to charts with multiple series and while the legend is displayed.","default":"false","value":{"type":"boolean"}},{"name":"null-as-valid","description":"When `true`, null values are considered as valid.\n\nBy default, when the data contains only null values, the chart dataset is considered empty:\n- The [@arcgisBadDataWarningRaise](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#event-arcgisBadDataWarningRaise) event will be sent.\n- The \"No data available to display\" warning message will be displayed in the chart container.","default":"false","value":{"type":"boolean"}},{"name":"placeholder","description":"Placeholder text displayed in the chart container when no chart is configured.\nIf the string contains HTML tags they will be interpreted as such.","value":{"type":"string"}},{"name":"popup-template-field-infos-enabled","description":"When `true`, field aliases from layer's [popupTemplate](/references/core/layers/FeatureLayer/#popupTemplate) are used to render field names in tooltips, axes and legend on the chart.","default":"false","value":{"type":"boolean"}},{"name":"return-features-extent","description":"When `true`, the feature extent is returned in the payload of [@arcgisDataProcessComplete](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#event-arcgisDataProcessComplete)\nand [@arcgisSelectionComplete](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#event-arcgisSelectionComplete) events.\nApplies only to:\n- Charts using an aggregation.\n- Data sources using a feature layer compatible with envelope aggregation.\n\nThe extent is returned through the [featuresExtentField](https://developers.arcgis.com/javascript/latest/references/charts-components/utils/defaults/index/#featuresExtentField) variable.\n\n**Note**: Not applicable to gauges.","default":"false","value":{"type":"boolean"}},{"name":"return-selection-indexes","description":"When `true`, selection indexes are computed and returned whenever a selection is made on or passed to the chart.\n\n**Note**: Not applicable to gauges.","default":"false","value":{"type":"boolean"}},{"name":"return-selection-oi-ds","description":"When `true`, object ids are computed and returned whenever a selection is made on or passed to the chart.\nOnly considered for data sources using a [feature layer](/references/core/layers/FeatureLayer).\n\n**Note**: Not applicable to gauges or charts configured with imagery layers.","default":"false","value":{"type":"boolean"}},{"name":"rotated","description":"When `true`, the chart is rotated 90 degrees so that the x-axis becomes vertical and the y-axis becomes horizontal.\n\n**Note**: Applicable to bar charts, box plots, combo bar line charts and line charts.","default":"false","value":{"type":"boolean"}},{"name":"set-time-binning-info-when-not-provided","description":"When `true`, the time binning unit and size is automatically set when not provided via the [`temporalBinningSize`](/references/charts-components/model/bar-chart-model/bar-chart-model/#temporalBinningSize) or [`temporalBinningUnit`](/references/charts-components/model/line-chart-model/line-chart-model/#temporalBinningUnit) properties of the chart model.\n\nThe time binning unit and size information for the chart will be derived from the dataset's date minimum and maximum values to compute an interval that best fits the date range.\n\n**Note**: Only applicable to charts with temporal binning enabled (bar chart, combo bar line chart, line chart, radar chart).","default":"false","value":{"type":"boolean"}},{"name":"show-empty-series","description":"When `true`, show the series on the chart and legend even if it doesn't contain any data.\n\nBy default, the empty series are hidden from the chart and the legend.","default":"false","value":{"type":"boolean"}},{"name":"skip-chart-creation-queue","description":"When `true`, charts will render immediately without waiting for other charts to finish rendering.\nBy default, charts are queued so that only one chart renders at a time.","default":"false","value":{"type":"boolean"}},{"name":"sync-charts-selection","description":"When `true`, the selection will be synchronized between charts configured with the same layer.","default":"false","value":{"type":"boolean"}},{"name":"sync-view-selection","description":"Determines whether the chart's selection should be synchronized with either the chart's [selectionManager](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#selectionManager) or the layer view's.","default":"false","value":{"type":"boolean"}},{"name":"sync-view-time-extent","description":"Whether the chart should be refreshed when the view's time extent changes.\n\n**Note**: Not supported for histogram.","default":"false","value":{"type":"boolean"}},{"name":"sync-view-time-zone","description":"Whether the chart's data should be in sync with the view's [timeZone](/references/core/views/MapView/#timeZone).\n\n**Note**: This applies only to charts supporting temporal data. Additionally if the data is binned, it applies only if the layer has the\ncapacity to handle the `/queryBins` operation. For any other case the chart will ignore the view's time zone regardless of the value of this property.","default":"false","value":{"type":"boolean"}},{"name":"time-zone","description":"Used to set a custom time zone for the chart.","value":{"type":"string"}},{"name":"zero-count-as-valid","description":"When `true`, count=0 is considered a valid statistic.\n\nBy default, when the aggregation type is \"count\" and the data contains only values equal to 0, the chart dataset\nis considered empty:\n- The [@arcgisBadDataWarningRaise](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#event-arcgisBadDataWarningRaise) event will be sent.\n- The \"No data available to display\" warning message will be displayed in the chart container.","default":"false","value":{"type":"boolean"}}],"slots":[{"name":"action-bar","description":"Slot for the [arcgis-charts-action-bar](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-charts-action-bar/) component or [calcite-action-bar](https://developers.arcgis.com/calcite-design-system/components/action-bar/) component."}],"events":[{"name":"arcgisAxesMinMaxChange","type":"AxesMinMaxChangePayload","description":"Emitted when the chart's axes minimum or maximum values are computed."},{"name":"arcgisBadDataWarningRaise","type":"DataWarningObject","description":"Emitted when the chart's data is incompatible with its model. Bad data such as empty dataset, axis logarithmic scale being incompatible with the data will trigger this event.\nThe event details contain information about the error."},{"name":"arcgisChartNotFoundWarning","type":"string","description":"Emitted when the chart is not found for the given [chartIndex](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#chartIndex) property with a valid [layerItemId](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#layerItemId)."},{"name":"arcgisConfigChange","type":"{\n newConfig: WebChart | undefined;\n oldConfig: WebChart | undefined;\n functionCalled: string | undefined;\n}","description":"Emitted when the chart configuration is changed."},{"name":"arcgisDataFetchComplete","type":"WebChartDataTypes","description":"Emitted once the chart data has been fetched but not yet fully processed. This event can be used to see all the slices before they get grouped into the 'other' slice during the post-processing step for pie charts.\nThe event details contain the pie chart's data with its ungrouped slices.\n\n**Note**: Applicable to pie charts only."},{"name":"arcgisDataProcessComplete","type":"DataProcessCompletePayload","description":"Emitted once the chart data is updated and any subsequent updates to the chart's data.\nThe event details contain the chart's data."},{"name":"arcgisDataProcessError","type":"void","description":"Emitted when an error occurred while fetching or processing the data for the chart."},{"name":"arcgisLegendItemVisibilityChange","type":"LegendItemVisibilityChangePayload","description":"Emitted once a legend item visibility has been changed.\nThe event details contain the toggled item's visibility and related information (series or slice id)."},{"name":"arcgisNoRenderPropChange","type":"NoRenderPropChangePayload","description":"Emitted when a no-render property ([rotated](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#rotated), [legendPosition](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#legendPosition), [legendVisibility](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#legendVisibility), [view](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#view) and [featureIndex](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#featureIndex)) is changed."},{"name":"arcgisRenderingComplete","type":"void","description":"Emitted once the chart is created and the rendering is complete. This event also emits with any subsequent chart updates, including when the chart is refreshed or when the configuration is changed."},{"name":"arcgisRuntimeError","type":"void","description":"Emitted when an error occurred that prevents the chart from being created or updated."},{"name":"arcgisSelectionComplete","type":"SelectionCompletePayload","description":"Emitted when a selection is applied to the chart.\nThe [`selectionData`](/references/charts-components/utils/misc/interfaces/#SelectionData) event detail contains various information about the selection, including the selected OIDs."},{"name":"arcgisSeriesColorChange","type":"SeriesColorChangePayload","description":"Emitted once one of the chart's series color has been assigned or changed."},{"name":"arcgisSeriesOrder","type":"string[]","description":"Emitted when the chart is created and at every update to confirm the order of the series on the chart.\nThe event details contain the modified series' indexes and names."}],"js":{"properties":[{"name":"actionMode","description":"Specifies how user interactions on the chart are handled.\n\n- `monoSelection`: Select one data item at a time. Each new selection replaces the previous selection.\n- `multiSelection`: Select multiple data items. Each new selection is added to the existing selection.\n- `multiSelectionWithCtrlKey`: Select multiple data items only while holding Ctrl (or Cmd on macOS). Without the key, selection behaves like `monoSelection`.\n- `zoom`: Zoom into an area of the chart.\n- `none`: Disable interaction-driven selection and zoom actions.\n\n**Note**: Not applicable to gauges.","type":"ActionModes | undefined"},{"name":"allowUsingObjectIdStat","description":"When `true`, object ID can be used as a numeric field for aggregated charts (for example, `sum` of `objectId`).","type":"boolean"},{"name":"animationEnabled","description":"When `true`, elements such as data items, axes, and legends will animate when the chart is first rendered or when the chart's configuration is updated.\n\n<video\n src=\"https://developers.arcgis.com/javascript/latest/assets/references/components/chart/animationEnabled.webm\"\n aria-label=\"animationEnabled\"\n width=\"720\"\n autoPlay\n loop\n muted\n playsInline\n/>","type":"boolean | undefined"},{"name":"aria","description":"The ARIA attributes for the chart component. Provides accessibility information to assistive technologies such as screen readers. Supports the following properties: [\\`label\\`](https://developer.mozilla.org/docs/Web/Accessibility/ARIA/Reference/Attributes/aria-label), [\\`description\\`](https://developer.mozilla.org/docs/Web/Accessibility/ARIA/Reference/Attributes/aria-description), [\\`describedByElements\\`](https://developer.mozilla.org/docs/Web/API/Element/ariaDescribedByElements), and [\\`labelledByElements\\`](https://developer.mozilla.org/docs/Web/API/Element/ariaLabelledByElements).","type":"DOMContainerAria | undefined"},{"name":"autoDestroyDisabled","description":"When `true`, the component is not destroyed automatically when it is disconnected from the document, which is useful when moving or temporarily hiding it.\n\n> [!CAUTION]\n>\n> Call the [destroy()](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#destroy) method when you are done to prevent memory leaks.","type":"boolean"},{"name":"autoInverseDataLabelTextColor","description":"When `true`, the data label text color is automatically adjusted for readability based on its background, switching to either the chart background color or white when the contrast is too low.\n\n| With `autoInverseDataLabelTextColor` | Without `autoInverseDataLabelTextColor` |\n| -------- | -------- |\n| ![autoInverseDataLabelTextColor true](https://developers.arcgis.com/javascript/latest/assets/references/components/chart/autoInverseDataLabelTextColorTrue.avif) | ![autoInverseDataLabelTextColor false](https://developers.arcgis.com/javascript/latest/assets/references/components/chart/autoInverseDataLabelTextColorFalse.avif) |\n\n**Note**: Applicable to heat charts only.","type":"boolean"},{"name":"calciteThemingCSSVariables","description":"Specifies the Calcite CSS variables to use when applying a Calcite theme.\n\nBy default the following variables are used:\n- background: `--calcite-color-foreground-1`\n- text: `--calcite-color-text-1`\n- line: `--calcite-color-border-1`\n- secondary line: `--calcite-color-text-3`\n- spinner: `--calcite-color-brand-hover`\n\nThe chart colors are overridden by those associated to those CSS variables, but only if they have not been customized beforehand.","type":"CalciteThemeCSSVariables"},{"name":"chartIndex","description":"The index of the chart to be rendered from the layer. Must be used in conjunction with the `layerItemId` or `layer` property.\n\nIf a `layer` or `layerItemId` is set without `chartIndex`, the first chart in the layer will be rendered.\n\nIf the `chartIndex` is out of bounds, the first chart in the layer will be rendered and a warning event will be emitted.","type":"number | undefined"},{"name":"chartLimits","description":"Customize the maximum number of data items allowed on the chart.\n\nThe chart's behavior once that limit is reached can be adjusted through the `behaviorAfterLimit` nested property, to either reject the creation\nor update of the chart, or render the elements up to the given limits.\n\n**Note**: Not applicable to gauges.","type":"ChartElementLimit | undefined"},{"name":"chartWillRender","description":"Lifecycle function executed after the data has been processed and before the chart renders.\nCan be used to alter the model from information extracted from the data.\n\n**Note**: Applicable to gauges and pie charts only.","type":"PreRenderCallback | undefined"},{"name":"configurationEnabled","description":"Whether to use features uniquely designed for a chart currently being configured by a user via the UI.\nWhen `true` and if the [arcgis-charts-action-bar](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-charts-action-bar/) is slotted in the chart component,\nthe action bar will expose an \"Edit chart\" action, surface relevant error states, and show a helpful in-container placeholder about the chart’s purpose.","type":"boolean"},{"name":"cursorRange","description":"Defines how the cursor selection rectangle is constrained when [actionMode](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#actionMode) is `zoom`, `multiSelection`, or `multiSelectionWithCtrlKey`.\n\n- `multi-axes`: Allows drawing a free rectangle across both axes.\n- `x-axis`: Constrains the rectangle to the x-axis direction.\n- `y-axis`: Constrains the rectangle to the y-axis direction.\n- `undefined`: Uses the default behavior for the current chart type and action mode.\n\n**Note**: Not applicable to gauges.","type":"CursorRange | undefined"},{"name":"dataLabelFormatter","description":"Callback function used to format the data labels. If the returned string contains HTML tags they will be interpreted as such.","type":"BarAndLineDataLabelFormatCallback | HistogramLabelFormatCallback | PieChartLabelFormatCallback | ScatterplotLabelFormatCallback | undefined"},{"name":"enableBetaFeatures","description":"Whether to enable the beta features from the chart component.","type":"boolean"},{"name":"errorPolicy","description":"When set to `ignore`, the chart fails silently without displaying an error or hiding the chart.\nBy default, it is set to `throw`, which displays an error alert and hides the chart when it can't be created or updated.","type":"ErrorPolicy"},{"name":"filterBySelection","description":"When `true`, the chart uses the current selection as a data filter and renders only selected elements instead of rendering the full dataset with selection styling.\nAxis bounds, time binning intervals will be computed based on the selected elements only.\n\n**Note**: Not applicable to gauges or charts configured with imagery layers.","type":"boolean"},{"name":"filterByViewExtent","description":"When `true`, chart queries are constrained to the current map view extent. The chart refreshes as the view extent changes, and the axis bounds or other derived values are recalculated from the view extent data.","type":"boolean"},{"name":"gaugeInnerLabelFormatter","description":"Callback function used to format the gauge inner label. If the returned string contains HTML tags they will be interpreted as such.","type":"GaugeInnerLabelFormatCallback | undefined"},{"name":"guideTooltipFormatter","description":"Callback function used to format the axes guides tooltip. If the returned string contains HTML tags they will be interpreted as such.","type":"GuideTooltipFormatCallback | undefined"},{"name":"hideLoaderAnimation","description":"When `true`, the loader animation is hidden when the chart is being created or updated. By default, it is shown at chart creation and each update (if it takes more than 300ms).\n| When `hideLoaderAnimation` is `true` | When `hideLoaderAnimation` is `false` |\n| -------- | -------- |\n| <video src=\"https://developers.arcgis.com/javascript/latest/assets/references/components/chart/hideLoaderAnimationTrue.webm\" aria-label=\"animationEnabled\" width=\"720\" autoPlay loop muted playsInline/> | <video src=\"https://developers.arcgis.com/javascript/latest/assets/references/components/chart/hideLoaderAnimationFalse.webm\" aria-label=\"animationEnabled\" width=\"720\" autoPlay loop muted playsInline/>","type":"boolean"},{"name":"hideUIMessages","description":"When set to `true`, UI messages are hidden. These messages can be no data warnings, any placeholder messages set or invalid chart configuration.\nBy default, its value is `false`, which displays the messages on the chart.","type":"boolean"},{"name":"hideZeroCountCategories","description":"When `true`, missing categories from a `Count` aggregation are kept as gaps in the chart's data.\n\nWhen data is retrieved from the server, features with a count of 0 are excluded from the response, resulting in missing chart entries.\n\nBy default, the chart's [WebChartGenericDataItem](https://developers.arcgis.com/javascript/latest/references/charts-components/spec/data-source/#WebChartGenericDataItem-dataItems) associated with empty categories (from only a `Count` aggregation) are populated with 0s.","type":"boolean"},{"name":"ignoreViewExtent","description":"When `true`, it signals the queries to ignore the view's extent, whether an additional geometry filter is provided or not.\n\nThis property will be effective when the component's [view](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#view) property is provided or when the [layer](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#layer) property is set to [`FeatureLayerView`](/references/core/views/layers/FeatureLayerView/).\n\nBy default the queries made by the chart will consider the view's extent as the unique geometry filter applicable. This implies ignoring any\ngeometry filters passed through the [model](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#model) or the [runtimeDataFilters](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#runtimeDataFilters) properties.","type":"boolean"},{"name":"interactionsDisabled","description":"When `true`, all interactions such as zooming and selection are disabled on the chart. The chart will be rendered in a read-only state.","type":"boolean"},{"name":"layer","description":"Used to perform queries.\nIf the layer is a `FeatureLayerView` or if the layer and the `view` property are both provided, the queries will be executed client-side.","type":"ChartLayerInput | FeatureLayerView | undefined"},{"name":"layerItemId","description":"Layer item ID associated with the chart to be rendered. Can be used in conjunction with the `chartIndex` property. If `layerItemId` is set without `chartIndex`, the first chart in the layer will be rendered.\n\nThe layer item ID can be found in the URL of the layer's item page on ArcGIS Online or Enterprise.\nFor example, in the URL `https://www.arcgis.com/home/item.html?id=8871626e970a4f3e9d6113ec63a92f2f`, the layer item ID is `8871626e970a4f3e9d6113ec63a92f2f`.\n\nSupported layer types include: [`FeatureLayer`](/references/core/layers/FeatureLayer), [`SubtypeSublayer`](/references/core/layers/support/SubtypeSublayer), [`ImageryLayer`](/references/core/layers/ImageryLayer), [`ImageryTileLayer`](/references/core/layers/ImageryTileLayer) and [`WCSLayer`](/references/core/layers/WCSLayer).","type":"string | undefined"},{"name":"legendInteractionsDisabled","description":"When `true`, disables the toggling of series or slices from the legend items. Clicking on the legend items will not hide or show the corresponding elements on the chart.\n\n**Note**: Only applicable to charts with multiple series and while the legend is displayed.","type":"boolean | undefined"},{"name":"legendValueLabelFormatter","description":"When the pie chart label contains either a numeric value or a percentage (which can be set through the\n[displayNumericValueOnLegendItems](https://developers.arcgis.com/javascript/latest/references/charts-components/model/pie-chart-model/pie-chart-model/#displayNumericValueOnLegendItems) and\n[displayPercentageOnLegendItems](https://developers.arcgis.com/javascript/latest/references/charts-components/model/pie-chart-model/pie-chart-model/#displayPercentageOnLegendItems) properties from the pie chart model), this property\ncan be used to format the numeric value and/or percentage. If the returned string contains HTML tags they will be interpreted as such.","type":"PieChartLegendValueLabelFormatCallback | undefined"},{"name":"messageOverrides","description":"Custom messages for translated strings on the chart. If the returned string contains HTML tags they will be interpreted as such.\n\nThe customizable messages can be found thru the [`CommonStringsIdentity`](/references/charts-components/utils/localization/interfaces/#CommonStringsIdentity) variable.","type":"Record<string, unknown> | undefined"},{"name":"model","description":"Provides an API to interact with the chart's configuration.\n\n`model` accepts either a [ChartModel](https://developers.arcgis.com/javascript/latest/references/charts-components/model/chart-model/chart-model/) instance or a [WebChart](https://developers.arcgis.com/javascript/latest/references/charts-components/spec/web-chart/#WebChart) object.\n- `ChartModel`: A chart model class instance, which can be created using the [createModel](https://developers.arcgis.com/javascript/latest/references/charts-components/model/shared/setup-utils/#createModel) function.\n - This is the recommended approach as it ensures the chart configuration is valid and compatible with the component.\n- `WebChart`: A plain chart configuration object that follows the [WebChart](https://developers.arcgis.com/javascript/latest/references/charts-components/spec/web-chart/#WebChart) specification.","type":"ChartModel | WebChart | undefined"},{"name":"nullAsValid","description":"When `true`, null values are considered as valid.\n\nBy default, when the data contains only null values, the chart dataset is considered empty:\n- The [@arcgisBadDataWarningRaise](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#event-arcgisBadDataWarningRaise) event will be sent.\n- The \"No data available to display\" warning message will be displayed in the chart container.","type":"boolean"},{"name":"placeholder","description":"Placeholder text displayed in the chart container when no chart is configured.\nIf the string contains HTML tags they will be interpreted as such.","type":"string | undefined"},{"name":"popupTemplateFieldInfosEnabled","description":"When `true`, field aliases from layer's [popupTemplate](/references/core/layers/FeatureLayer/#popupTemplate) are used to render field names in tooltips, axes and legend on the chart.","type":"boolean | undefined"},{"name":"returnFeaturesExtent","description":"When `true`, the feature extent is returned in the payload of [@arcgisDataProcessComplete](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#event-arcgisDataProcessComplete)\nand [@arcgisSelectionComplete](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#event-arcgisSelectionComplete) events.\nApplies only to:\n- Charts using an aggregation.\n- Data sources using a feature layer compatible with envelope aggregation.\n\nThe extent is returned through the [featuresExtentField](https://developers.arcgis.com/javascript/latest/references/charts-components/utils/defaults/index/#featuresExtentField) variable.\n\n**Note**: Not applicable to gauges.","type":"boolean"},{"name":"returnSelectionIndexes","description":"When `true`, selection indexes are computed and returned whenever a selection is made on or passed to the chart.\n\n**Note**: Not applicable to gauges.","type":"boolean"},{"name":"returnSelectionOIDs","description":"When `true`, object ids are computed and returned whenever a selection is made on or passed to the chart.\nOnly considered for data sources using a [feature layer](/references/core/layers/FeatureLayer).\n\n**Note**: Not applicable to gauges or charts configured with imagery layers.","type":"boolean | undefined"},{"name":"rotated","description":"When `true`, the chart is rotated 90 degrees so that the x-axis becomes vertical and the y-axis becomes horizontal.\n\n**Note**: Applicable to bar charts, box plots, combo bar line charts and line charts.","type":"boolean"},{"name":"runtimeDataFilters","description":"Applies runtime data filters to the chart, features will be filtered based on the provided key value pairs.\n\nSupported keys are `where`, `objectIds`, `geometry`, `spatialRelationship`, `distance`, `units`, `timeExtent`, and `gdbVersion`.","type":"WebChartDataFilters | undefined"},{"name":"secondaryYAxisLabelFormatter","description":"Callback function used to format the secondary y-axis labels. If the returned string contains HTML tags they will be interpreted as such.","type":"AxisLabelFormatCallback | undefined"},{"name":"selectionData","description":"Applies a programmatic selection to the chart. The payload can target chart elements by object IDs (`selectionOIDs`), by indexes (`selectionIndexes`), or by items (`selectionItems`).\n\n##### Selection by object IDs\nWhen passing in a `selectionOIDs` array, the chart will match the provided object IDs with the chart's data items and apply the selection.","type":"SelectionData | undefined"},{"name":"selectionManager","description":"Selection manager object used to synchronize the selections with the chart when [syncViewSelection](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#syncViewSelection) is `true`.\nIt has precedence over the layer view's [SelectionManager](/references/core/views/SelectionManager/) when both are available.","type":"SelectionManager | undefined"},{"name":"selectionTheme","description":"Customizes the visual style applied to selected and non-selected chart data items (bars, slices, markers, boxes etc.).\n\n- The [`selectedElementsTheme`](/references/charts-components/utils/misc/interfaces/#SelectionTheme-selectedElementsTheme) property controls the appearance of selected elements.\n- The [`nonSelectedElementsTheme`](/references/charts-components/utils/misc/interfaces/#SelectionTheme-nonSelectedElementsTheme) property controls the appearance of elements that are not selected.","type":"SelectionTheme | undefined"},{"name":"setTimeBinningInfoWhenNotProvided","description":"When `true`, the time binning unit and size is automatically set when not provided via the [`temporalBinningSize`](/references/charts-components/model/bar-chart-model/bar-chart-model/#temporalBinningSize) or [`temporalBinningUnit`](/references/charts-components/model/line-chart-model/line-chart-model/#temporalBinningUnit) properties of the chart model.\n\nThe time binning unit and size information for the chart will be derived from the dataset's date minimum and maximum values to compute an interval that best fits the date range.\n\n**Note**: Only applicable to charts with temporal binning enabled (bar chart, combo bar line chart, line chart, radar chart).","type":"boolean"},{"name":"showEmptySeries","description":"When `true`, show the series on the chart and legend even if it doesn't contain any data.\n\nBy default, the empty series are hidden from the chart and the legend.","type":"boolean"},{"name":"skipChartCreationQueue","description":"When `true`, charts will render immediately without waiting for other charts to finish rendering.\nBy default, charts are queued so that only one chart renders at a time.","type":"boolean"},{"name":"syncChartsSelection","description":"When `true`, the selection will be synchronized between charts configured with the same layer.","type":"boolean"},{"name":"syncViewSelection","description":"Determines whether the chart's selection should be synchronized with either the chart's [selectionManager](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#selectionManager) or the layer view's.","type":"boolean"},{"name":"syncViewTimeExtent","description":"Whether the chart should be refreshed when the view's time extent changes.\n\n**Note**: Not supported for histogram.","type":"boolean"},{"name":"syncViewTimeZone","description":"Whether the chart's data should be in sync with the view's [timeZone](/references/core/views/MapView/#timeZone).\n\n**Note**: This applies only to charts supporting temporal data. Additionally if the data is binned, it applies only if the layer has the\ncapacity to handle the `/queryBins` operation. For any other case the chart will ignore the view's time zone regardless of the value of this property.","type":"boolean"},{"name":"timeZone","description":"Used to set a custom time zone for the chart.","type":"MapView[\"timeZone\"] | undefined"},{"name":"tooltipFormatter","description":"Callback function used to format the tooltips when hovering over a chart element. If the returned string contains HTML tags they will be interpreted as such.","type":"TooltipFormatters | undefined"},{"name":"updateSplitBySeries","description":"Whether to automatically add the missing series to cover the split-by values not referenced in the configuration.\n- This property only applies to plain chart configuration object that's constructed following the [WebChart](https://developers.arcgis.com/javascript/latest/references/charts-components/spec/web-chart/#WebChart) specification.\n - When [`addMissingSeries`](/references/charts-components/utils/components/interfaces/#MissingSplitBySeriesProps-addMissingSeries) is set to `true`, the missing series will be added.\n - When [`seriesTemplate`](/references/charts-components/utils/components/interfaces/#MissingSplitBySeriesProps-seriesTemplate) is omitted, the first existing series from the configuration will be copied to be used as a model for the missing ones. The chart won't render if the series template is not set and there's no series in the configuration.\n- If a chart is configured using a chart model, this property is not necessary as the split-by series will be updated automatically when the model's properties are changed.\n\n**Note**: Applicable only to bar chart, box plot, line chart and radar chart when a split-by field is used.","type":"MissingSplitBySeriesProps | undefined"},{"name":"view","description":"Used to access the feature layer view instance in order to perform client side queries.","type":"MapView | SceneView | undefined"},{"name":"xAxisLabelFormatter","description":"Callback function used to format the x-axis labels. If the returned string contains HTML tags they will be interpreted as such.","type":"AxisLabelFormatCallback | undefined"},{"name":"yAxisLabelFormatter","description":"Callback function used to format the y-axis labels. If the returned string contains HTML tags they will be interpreted as such.","type":"AxisLabelFormatCallback | undefined"},{"name":"zeroCountAsValid","description":"When `true`, count=0 is considered a valid statistic.\n\nBy default, when the aggregation type is \"count\" and the data contains only values equal to 0, the chart dataset\nis considered empty:\n- The [@arcgisBadDataWarningRaise](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#event-arcgisBadDataWarningRaise) event will be sent.\n- The \"No data available to display\" warning message will be displayed in the chart container.","type":"boolean"}],"events":[{"name":"arcgisAxesMinMaxChange","type":"AxesMinMaxChangePayload","description":"Emitted when the chart's axes minimum or maximum values are computed."},{"name":"arcgisBadDataWarningRaise","type":"DataWarningObject","description":"Emitted when the chart's data is incompatible with its model. Bad data such as empty dataset, axis logarithmic scale being incompatible with the data will trigger this event.\nThe event details contain information about the error."},{"name":"arcgisChartNotFoundWarning","type":"string","description":"Emitted when the chart is not found for the given [chartIndex](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#chartIndex) property with a valid [layerItemId](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#layerItemId)."},{"name":"arcgisConfigChange","type":"{\n newConfig: WebChart | undefined;\n oldConfig: WebChart | undefined;\n functionCalled: string | undefined;\n}","description":"Emitted when the chart configuration is changed."},{"name":"arcgisDataFetchComplete","type":"WebChartDataTypes","description":"Emitted once the chart data has been fetched but not yet fully processed. This event can be used to see all the slices before they get grouped into the 'other' slice during the post-processing step for pie charts.\nThe event details contain the pie chart's data with its ungrouped slices.\n\n**Note**: Applicable to pie charts only."},{"name":"arcgisDataProcessComplete","type":"DataProcessCompletePayload","description":"Emitted once the chart data is updated and any subsequent updates to the chart's data.\nThe event details contain the chart's data."},{"name":"arcgisDataProcessError","type":"void","description":"Emitted when an error occurred while fetching or processing the data for the chart."},{"name":"arcgisLegendItemVisibilityChange","type":"LegendItemVisibilityChangePayload","description":"Emitted once a legend item visibility has been changed.\nThe event details contain the toggled item's visibility and related information (series or slice id)."},{"name":"arcgisNoRenderPropChange","type":"NoRenderPropChangePayload","description":"Emitted when a no-render property ([rotated](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#rotated), [legendPosition](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#legendPosition), [legendVisibility](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#legendVisibility), [view](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#view) and [featureIndex](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#featureIndex)) is changed."},{"name":"arcgisRenderingComplete","type":"void","description":"Emitted once the chart is created and the rendering is complete. This event also emits with any subsequent chart updates, including when the chart is refreshed or when the configuration is changed."},{"name":"arcgisRuntimeError","type":"void","description":"Emitted when an error occurred that prevents the chart from being created or updated."},{"name":"arcgisSelectionComplete","type":"SelectionCompletePayload","description":"Emitted when a selection is applied to the chart.\nThe [`selectionData`](/references/charts-components/utils/misc/interfaces/#SelectionData) event detail contains various information about the selection, including the selected OIDs."},{"name":"arcgisSeriesColorChange","type":"SeriesColorChangePayload","description":"Emitted once one of the chart's series color has been assigned or changed."},{"name":"arcgisSeriesOrder","type":"string[]","description":"Emitted when the chart is created and at every update to confirm the order of the series on the chart.\nThe event details contain the modified series' indexes and names."}]}},{"name":"arcgis-charts-action-bar","description":"The Charts Action Bar component provides context-specific actions such as rotation, zooming, and filtering, as well as general actions like exporting the chart as an image or CSV file.\nThis component is designed to be used with a chart component and is not intended for standalone use.\n--\n\n### Events\n- **arcgisActionBarToggle** - Event triggered once action bar expand is toggled.\n- **arcgisDefaultActionSelect** - Event triggered once a default action is selected.\n\n### Methods\n- `componentOnReady(): Promise<this>` - Creates a promise that resolves once the component is fully loaded.\n\n### Slots\n- **custom-action-top** - A slot for adding custom `calcite-action` to the top of the default actions.\n- **custom-action-below** - A slot for adding custom `calcite-action` to the bottom of the default actions.","doc-url":"https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-charts-action-bar/","attributes":[{"name":"action-bar-selection-mode","description":"Defines which selection mode the slotted action bar should use.\n- `monoSelection`: Select a single data point/series, new selection replaces the previous one.\n- `multiSelection`: Select multiple data points/series, new selection adds to the previous one.\n- `multiSelectionWithCtrlKey`: Select multiple data points/series while holding the Ctrl key (Cmd key on Mac), new selection adds to the previous one.","default":"\"multiSelectionWithCtrlKey\"","value":{"type":["\"monoSelection\"","\"multiSelection\"","\"multiSelectionWithCtrlKey\""]}},{"name":"chart-type","description":"Chart type used to determine which default actions to display.","value":{"type":["\"scatterSeries\"","\"pieSeries\"","\"gaugeSeries\"","\"lineSeries\"","\"barSeries\"","\"histogramSeries\"","\"boxPlotSeries\"","\"radarSeries\"","\"comboLineAndBarSeries\"","\"heatSeries\""]}},{"name":"clear-selection-state","description":"When `disabled`, interaction with the clear selection action is prevented and the component is displayed with lower opacity.","default":"\"enabled\"","value":{"type":["\"disabled\"","\"enabled\""]}},{"name":"clear-selection-title","description":"Custom title for the clear selection action.","value":{"type":"string"}},{"name":"clear-selection-toggle","description":"When `active`, the clear selection action is highlighted.","default":"\"inactive\"","value":{"type":["\"active\"","\"inactive\""]}},{"name":"edit-chart-state","description":"When `disabled`, interaction with the edit chart action is prevented and the component is displayed with lower opacity.","default":"\"disabled\"","value":{"type":["\"disabled\"","\"enabled\""]}},{"name":"edit-chart-title","description":"Custom title for the edit chart action.","value":{"type":"string"}},{"name":"edit-chart-toggle","description":"When `active`, the edit chart action is highlighted.","default":"\"inactive\"","value":{"type":["\"active\"","\"inactive\""]}},{"name":"expanded","description":"When `true`, the action bar is expanded.","default":"false","value":{"type":"boolean"}},{"name":"export-action-state","description":"When `disabled`, interaction with the export action is prevented and the component is displayed with lower opacity.","default":"\"enabled\"","value":{"type":["\"disabled\"","\"enabled\""]}},{"name":"export-as-csv-state","description":"When `disabled`, interaction with the download CSV is prevented and the component is displayed with lower opacity.","default":"\"enabled\"","value":{"type":["\"disabled\"","\"enabled\""]}},{"name":"export-as-csv-title","description":"Custom title for the download CSV action.","value":{"type":"string"}},{"name":"export-as-image-state","description":"When `disabled`, interaction with the download image is prevented and the component is displayed with lower opacity.","default":"\"enabled\"","value":{"type":["\"disabled\"","\"enabled\""]}},{"name":"export-as-image-title","description":"Custom title for the download chart action.","value":{"type":"string"}},{"name":"filter-by-extent-state","description":"When `disabled`, interaction with the filter by extent action is prevented and the component is displayed with lower opacity.","default":"\"enabled\"","value":{"type":["\"disabled\"","\"enabled\""]}},{"name":"filter-by-extent-title","description":"Custom title for the filter by extent action.","value":{"type":"string"}},{"name":"filter-by-extent-toggle","description":"When `active`, the filter by extent action is highlighted.","default":"\"inactive\"","value":{"type":["\"active\"","\"inactive\""]}},{"name":"filter-by-selection-state","description":"When `disabled`, interaction with the filter by selection action is prevented and the component is displayed with lower opacity.","default":"\"enabled\"","value":{"type":["\"disabled\"","\"enabled\""]}},{"name":"filter-by-selection-title","description":"Custom title for the filter by selection action.","value":{"type":"string"}},{"name":"filter-by-selection-toggle","description":"When `active`, the filter by selection action is highlighted.","default":"\"inactive\"","value":{"type":["\"active\"","\"inactive\""]}},{"name":"force-disable-actions","description":"When `true`, overrides the individual settings for each action to instead force disable them all.","default":"false","value":{"type":"boolean"}},{"name":"full-extent-state","description":"When `disabled`, interaction with the full extent action is prevented and the component is displayed with lower opacity.","default":"\"enabled\"","value":{"type":["\"disabled\"","\"enabled\""]}},{"name":"full-extent-title","description":"Custom title for the full extent action.","value":{"type":"string"}},{"name":"full-extent-toggle","description":"When `active`, the full extent action is highlighted.","default":"\"inactive\"","value":{"type":["\"active\"","\"inactive\""]}},{"name":"legend-state","description":"When `disabled`, interaction with the legend action is prevented and the component is displayed with lower opacity.","default":"\"enabled\"","value":{"type":["\"disabled\"","\"enabled\""]}},{"name":"legend-title","description":"Custom title for the legend action.","value":{"type":"string"}},{"name":"legend-toggle","description":"When `active`, the legend action is highlighted.","default":"\"inactive\"","value":{"type":["\"active\"","\"inactive\""]}},{"name":"rotate-chart-state","description":"When `disabled`, interaction with the rotate chart action is prevented and the component is displayed with lower opacity.","default":"\"enabled\"","value":{"type":["\"disabled\"","\"enabled\""]}},{"name":"rotate-chart-title","description":"Custom title for the rotate chart action.","value":{"type":"string"}},{"name":"rotate-chart-toggle","description":"When `active`, the rotate chart action is highlighted.","default":"\"inactive\"","value":{"type":["\"active\"","\"inactive\""]}},{"name":"selection-state","description":"When `disabled`, interaction with the selection action is prevented and the component is displayed with lower opacity.","default":"\"enabled\"","value":{"type":["\"disabled\"","\"enabled\""]}},{"name":"selection-title","description":"Custom title for the selection action.","value":{"type":"string"}},{"name":"selection-toggle","description":"When `active`, the selection action is highlighted.","default":"\"inactive\"","value":{"type":["\"active\"","\"inactive\""]}},{"name":"switch-selection-state","description":"When `disabled`, interaction with the switch selection action is prevented and the component is displayed with lower opacity.","default":"\"enabled\"","value":{"type":["\"disabled\"","\"enabled\""]}},{"name":"switch-selection-title","description":"Custom title for the switch selection action.","value":{"type":"string"}},{"name":"switch-selection-toggle","description":"When `active`, the switch selection action is highlighted.","default":"\"inactive\"","value":{"type":["\"active\"","\"inactive\""]}},{"name":"zoom-state","description":"When `disabled`, interaction with the zoom action is prevented and the component is displayed with lower opacity.","default":"\"enabled\"","value":{"type":["\"disabled\"","\"enabled\""]}},{"name":"zoom-title","description":"Custom title for the zoom action.","value":{"type":"string"}},{"name":"zoom-toggle","description":"When `active`, the zoom action is highlighted.","default":"\"inactive\"","value":{"type":["\"active\"","\"inactive\""]}}],"slots":[{"name":"custom-action-top","description":"A slot for adding custom `calcite-action` to the top of the default actions."},{"name":"custom-action-below","description":"A slot for adding custom `calcite-action` to the bottom of the default actions."}],"events":[{"name":"arcgisActionBarToggle","type":"boolean","description":"Event triggered once action bar expand is toggled."},{"name":"arcgisDefaultActionSelect","type":"DefaultActionSelectPayload","description":"Event triggered once a default action is selected."}],"js":{"properties":[{"name":"actionBarSelectionMode","description":"Defines which selection mode the slotted action bar should use.\n- `monoSelection`: Select a single data point/series, new selection replaces the previous one.\n- `multiSelection`: Select multiple data points/series, new selection adds to the previous one.\n- `multiSelectionWithCtrlKey`: Select multiple data points/series while holding the Ctrl key (Cmd key on Mac), new selection adds to the previous one.","type":"Extract<ActionModes, \"monoSelection\" | \"multiSelection\" | \"multiSelectionWithCtrlKey\"> | undefined"},{"name":"chartElement","description":"Chart element reference with which the action bar is associated.","type":"ArcgisChart | undefined"},{"name":"chartType","description":"Chart type used to determine which default actions to display.","type":"ChartTypes | undefined"},{"name":"clearSelectionState","description":"When `disabled`, interaction with the clear selection action is prevented and the component is displayed with lower opacity.","type":"ActionState"},{"name":"clearSelectionTitle","description":"Custom title for the clear selection action.","type":"string | undefined"},{"name":"clearSelectionToggle","description":"When `active`, the clear selection action is highlighted.","type":"ActionToggle"},{"name":"csvExportExclusionList","description":"The CSV export action is disabled for certain chart types.\n\nModify this property to add or remove chart types from the list of disabled types.","type":"WebChartTypes[]"},{"name":"editChartState","description":"When `disabled`, interaction with the edit chart action is prevented and the component is displayed with lower opacity.","type":"ActionState"},{"name":"editChartTitle","description":"Custom title for the edit chart action.","type":"string | undefined"},{"name":"editChartToggle","description":"When `active`, the edit chart action is highlighted.","type":"ActionToggle"},{"name":"expanded","description":"When `true`, the action bar is expanded.","type":"boolean"},{"name":"exportActionState","description":"When `disabled`, interaction with the export action is prevented and the component is displayed with lower opacity.","type":"ActionState"},{"name":"exportAsCSVState","description":"When `disabled`, interaction with the download CSV is prevented and the component is displayed with lower opacity.","type":"ActionState"},{"name":"exportAsCSVTitle","description":"Custom title for the download CSV action.","type":"string | undefined"},{"name":"exportAsImageState","description":"When `disabled`, interaction with the download image is prevented and the component is displayed with lower opacity.","type":"ActionState"},{"name":"exportAsImageTitle","description":"Custom title for the download chart action.","type":"string | undefined"},{"name":"filterByExtentState","description":"When `disabled`, interaction with the filter by extent action is prevented and the component is displayed with lower opacity.","type":"ActionState"},{"name":"filterByExtentTitle","description":"Custom title for the filter by extent action.","type":"string | undefined"},{"name":"filterByExtentToggle","description":"When `active`, the filter by extent action is highlighted.","type":"ActionToggle"},{"name":"filterBySelectionState","description":"When `disabled`, interaction with the filter by selection action is prevented and the component is displayed with lower opacity.","type":"ActionState"},{"name":"filterBySelectionTitle","description":"Custom title for the filter by selection action.","type":"string | undefined"},{"name":"filterBySelectionToggle","description":"When `active`, the filter by selection action is highlighted.","type":"ActionToggle"},{"name":"forceDisableActions","description":"When `true`, overrides the individual settings for each action to instead force disable them all.","type":"boolean"},{"name":"fullExtentState","description":"When `disabled`, interaction with the full extent action is prevented and the component is displayed with lower opacity.","type":"ActionState"},{"name":"fullExtentTitle","description":"Custom title for the full extent action.","type":"string | undefined"},{"name":"fullExtentToggle","description":"When `active`, the full extent action is highlighted.","type":"ActionToggle"},{"name":"hiddenActions","description":"Holds a list of actions to hide from the action bar.\n\n**Note:** The edit chart action is hidden by default. To show it, remove its value from this array.","type":"DefaultChartActions[]"},{"name":"legendState","description":"When `disabled`, interaction with the legend action is prevented and the component is displayed with lower opacity.","type":"ActionState"},{"name":"legendTitle","description":"Custom title for the legend action.","type":"string | undefined"},{"name":"legendToggle","description":"When `active`, the legend action is highlighted.","type":"ActionToggle"},{"name":"messageOverrides","description":"Overwrite localized strings for this component.","type":"Record<string, unknown> | undefined"},{"name":"rotateChartState","description":"When `disabled`, interaction with the rotate chart action is prevented and the component is displayed with lower opacity.","type":"ActionState"},{"name":"rotateChartTitle","description":"Custom title for the rotate chart action.","type":"string | undefined"},{"name":"rotateChartToggle","description":"When `active`, the rotate chart action is highlighted.","type":"ActionToggle"},{"name":"selectionState","description":"When `disabled`, interaction with the selection action is prevented and the component is displayed with lower opacity.","type":"ActionState"},{"name":"selectionTitle","description":"Custom title for the selection action.","type":"string | undefined"},{"name":"selectionToggle","description":"When `active`, the selection action is highlighted.","type":"ActionToggle"},{"name":"switchSelectionState","description":"When `disabled`, interaction with the switch selection action is prevented and the component is displayed with lower opacity.","type":"ActionState"},{"name":"switchSelectionTitle","description":"Custom title for the switch selection action.","type":"string | undefined"},{"name":"switchSelectionToggle","description":"When `active`, the switch selection action is highlighted.","type":"ActionToggle"},{"name":"zoomState","description":"When `disabled`, interaction with the zoom action is prevented and the component is displayed with lower opacity.","type":"ActionState"},{"name":"zoomTitle","description":"Custom title for the zoom action.","type":"string | undefined"},{"name":"zoomToggle","description":"When `active`, the zoom action is highlighted.","type":"ActionToggle"}],"events":[{"name":"arcgisActionBarToggle","type":"boolean","description":"Event triggered once action bar expand is toggled."},{"name":"arcgisDefaultActionSelect","type":"DefaultActionSelectPayload","description":"Event triggered once a default action is selected."}]}}]},"css":{"properties":[],"pseudo-elements":[]}}}
1
+ {"$schema":"https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json","name":"@arcgis/charts-components","version":"5.2.0-next.98","description-markup":"markdown","contributions":{"html":{"elements":[{"name":"arcgis-chart","description":"The ArcGIS Chart component renders a chart by setting a [model](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#model) object that defines the chart's configuration and data.\n\nYou can render a chart either by:\n- Setting [layerItemId](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#layerItemId) and [chartIndex](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#chartIndex) to load a saved chart from a layer item.\n- Create a new chart by using the [`createModel()`](/references/charts-components/model/shared/setup-utils/#createModel) function to create a chart model and set it to the [model](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#model) property.\n\n> [!IMPORTANT]\n>\n> See the [Introduction to charts](https://developers.arcgis.com/javascript/latest/charts-components-intro/) guide for detailed examples on how to render a chart using the above patterns.\n\nThere are 10 supported chart types, each with its own model properties and methods. Refer to the [chart types documentation](https://developers.arcgis.com/javascript/latest/charts/chart-types/) for more information on each chart type.\n\n##### See also:\n- [Tutorial: Display a chart](https://developers.arcgis.com/javascript/latest/tutorials/display-a-chart/)\n- [Tutorial: Chart and map interactions](https://developers.arcgis.com/javascript/latest/tutorials/chart-and-map-interactions/)\n\n> [!WARNING]\n> When the chart is rendering while its container is not yet fully sized, a console error about the chart's attribute height may appear. This is a known issue and should not affect the functionality of the chart.\n--\n\n### Events\n- **arcgisAxesMinMaxChange** - Emitted when the chart's axes minimum or maximum values are computed.\n- **arcgisBadDataWarningRaise** - Emitted when the chart's data is incompatible with its model. Bad data such as empty dataset, axis logarithmic scale being incompatible with the data will trigger this event.\nThe event details contain information about the error.\n- **arcgisChartNotFoundWarning** - Emitted when the chart is not found for the given [chartIndex](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#chartIndex) property with a valid [layerItemId](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#layerItemId).\n- **arcgisConfigChange** - Emitted when the chart configuration is changed.\n- **arcgisDataFetchComplete** - Emitted once the chart data has been fetched but not yet fully processed. This event can be used to see all the slices before they get grouped into the 'other' slice during the post-processing step for pie charts.\nThe event details contain the pie chart's data with its ungrouped slices.\n\n**Note**: Applicable to pie charts only.\n- **arcgisDataProcessComplete** - Emitted once the chart data is updated and any subsequent updates to the chart's data.\nThe event details contain the chart's data.\n- **arcgisDataProcessError** - Emitted when an error occurred while fetching or processing the data for the chart.\n- **arcgisLegendItemVisibilityChange** - Emitted once a legend item visibility has been changed.\nThe event details contain the toggled item's visibility and related information (series or slice id).\n- **arcgisNoRenderPropChange** - Emitted when a no-render property ([rotated](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#rotated), [legendPosition](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#legendPosition), [legendVisibility](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#legendVisibility), [view](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#view) and [featureIndex](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#featureIndex)) is changed.\n- **arcgisRenderingComplete** - Emitted once the chart is created and the rendering is complete. This event also emits with any subsequent chart updates, including when the chart is refreshed or when the configuration is changed.\n- **arcgisRuntimeError** - Emitted when an error occurred that prevents the chart from being created or updated.\n- **arcgisSelectionComplete** - Emitted when a selection is applied to the chart.\nThe [`selectionData`](/references/charts-components/utils/misc/interfaces/#SelectionData) event detail contains various information about the selection, including the selected OIDs.\n- **arcgisSeriesColorChange** - Emitted once one of the chart's series color has been assigned or changed.\n- **arcgisSeriesOrder** - Emitted when the chart is created and at every update to confirm the order of the series on the chart.\nThe event details contain the modified series' indexes and names.\n\n### Methods\n- `applySelectionFromSelectionManager(): void` - Apply the selection from the selection manager to the chart.\n- `clearSelection(): Promise<void>` - Clears all selection on the chart.\n\n**Note**: Not applicable to gauge.\n- `componentOnReady(): Promise<this>` - Creates a promise that resolves once the component is fully loaded.\n- `destroy(): Promise<void>` - Destroys the chart instance.\n- `exportAsCSV(options?: CSVOptions): Promise<void>` - Export the current chart's data as a CSV file.\n- `exportAsImage(format?: DownloadableChartImagesTypes): Promise<void>` - Exports and downloads the current chart as an image.\n- Supported formats: `png` (default), `jpeg`, `jpg`, `webp`, and `svg`.\n - When `webp` format is used on Safari, it will fallback to `png`.\n- `loadModel(): Promise<void>` - Returns a promise that resolves when the chart model is fully loaded.\n\nThis method should be used when loading a chart with [layerItemId](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#layerItemId) and [chartIndex](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#chartIndex), and further customization of the chart model is needed.\n- `notify(message?: string, heading?: string): Promise<void>` - Passes external messages to the chart component and displays them in the chart's container.\nWhen a model update is overriding the notification modal, consider waiting for the [@arcgisUpdateComplete](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#event-arcgisUpdateComplete) event.\n- `refresh(props?: {\n updateData?: boolean;\n resetAxesBounds?: boolean;\n}): Promise<void>` - Re-render the chart.\n- `resetZoom(): Promise<void>` - Resets the chart's zoom and brings it back to full zoom extent.\n\n**Note**: Not applicable to gauges, heat charts, pie charts and radar charts.\n- `switchSelection(): Promise<void>` - Switches the selection on the chart.\n\n**Note**: Not applicable to gauges.\n\n### Slots\n- **action-bar** - Slot for the [arcgis-charts-action-bar](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-charts-action-bar/) component or [calcite-action-bar](https://developers.arcgis.com/calcite-design-system/components/action-bar/) component.","doc-url":"https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/","attributes":[{"name":"action-mode","description":"Specifies how user interactions on the chart are handled.\n\n- `monoSelection`: Select one data item at a time. Each new selection replaces the previous selection.\n- `multiSelection`: Select multiple data items. Each new selection is added to the existing selection.\n- `multiSelectionWithCtrlKey`: Select multiple data items only while holding Ctrl (or Cmd on macOS). Without the key, selection behaves like `monoSelection`.\n- `zoom`: Zoom into an area of the chart.\n- `none`: Disable interaction-driven selection and zoom actions.\n\n**Note**: Not applicable to gauges.","value":{"type":["\"none\"","\"monoSelection\"","\"multiSelection\"","\"multiSelectionWithCtrlKey\"","\"zoom\""]}},{"name":"allow-using-object-id-stat","description":"When `true`, object ID can be used as a numeric field for aggregated charts (for example, `sum` of `objectId`).","default":"false","value":{"type":"boolean"}},{"name":"animation-enabled","description":"When `true`, elements such as data items, axes, and legends will animate when the chart is first rendered or when the chart's configuration is updated.\n\n<video\n src=\"https://developers.arcgis.com/javascript/latest/assets/references/components/chart/animationEnabled.webm\"\n aria-label=\"animationEnabled\"\n width=\"720\"\n autoPlay\n loop\n muted\n playsInline\n/>","default":"false","value":{"type":"boolean"}},{"name":"auto-destroy-disabled","description":"When `true`, the component is not destroyed automatically when it is disconnected from the document, which is useful when moving or temporarily hiding it.\n\n> [!CAUTION]\n>\n> Call the [destroy()](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#destroy) method when you are done to prevent memory leaks.","default":"false","value":{"type":"boolean"}},{"name":"auto-inverse-data-label-text-color","description":"When `true`, the data label text color is automatically adjusted for readability based on its background, switching to either the chart background color or white when the contrast is too low.\n\n| With `autoInverseDataLabelTextColor` | Without `autoInverseDataLabelTextColor` |\n| -------- | -------- |\n| ![autoInverseDataLabelTextColor true](https://developers.arcgis.com/javascript/latest/assets/references/components/chart/autoInverseDataLabelTextColorTrue.avif) | ![autoInverseDataLabelTextColor false](https://developers.arcgis.com/javascript/latest/assets/references/components/chart/autoInverseDataLabelTextColorFalse.avif) |\n\n**Note**: Applicable to heat charts only.","default":"false","value":{"type":"boolean"}},{"name":"chart-index","description":"The index of the chart to be rendered from the layer. Must be used in conjunction with the `layerItemId` or `layer` property.\n\nIf a `layer` or `layerItemId` is set without `chartIndex`, the first chart in the layer will be rendered.\n\nIf the `chartIndex` is out of bounds, the first chart in the layer will be rendered and a warning event will be emitted.","value":{"type":"number"}},{"name":"configuration-enabled","description":"Whether to use features uniquely designed for a chart currently being configured by a user via the UI.\nWhen `true` and if the [arcgis-charts-action-bar](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-charts-action-bar/) is slotted in the chart component,\nthe action bar will expose an \"Edit chart\" action, surface relevant error states, and show a helpful in-container placeholder about the chart’s purpose.","default":"false","value":{"type":"boolean"}},{"name":"cursor-range","description":"Defines how the cursor selection rectangle is constrained when [actionMode](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#actionMode) is `zoom`, `multiSelection`, or `multiSelectionWithCtrlKey`.\n\n- `multi-axes`: Allows drawing a free rectangle across both axes.\n- `x-axis`: Constrains the rectangle to the x-axis direction.\n- `y-axis`: Constrains the rectangle to the y-axis direction.\n- `undefined`: Uses the default behavior for the current chart type and action mode.\n\n**Note**: Not applicable to gauges.","value":{"type":["\"multi-axes\"","\"x-axis\"","\"y-axis\""]}},{"name":"enable-beta-features","description":"Whether to enable the beta features from the chart component.","default":"false","value":{"type":"boolean"}},{"name":"error-policy","description":"When set to `ignore`, the chart fails silently without displaying an error or hiding the chart.\nBy default, it is set to `throw`, which displays an error alert and hides the chart when it can't be created or updated.","default":"\"throw\"","value":{"type":["\"throw\"","\"ignore\""]}},{"name":"filter-by-selection","description":"When `true`, the chart uses the current selection as a data filter and renders only selected elements instead of rendering the full dataset with selection styling.\nAxis bounds, time binning intervals will be computed based on the selected elements only.\n\n**Note**: Not applicable to gauges or charts configured with imagery layers.","default":"false","value":{"type":"boolean"}},{"name":"filter-by-view-extent","description":"When `true`, chart queries are constrained to the current map view extent. The chart refreshes as the view extent changes, and the axis bounds or other derived values are recalculated from the view extent data.","default":"false","value":{"type":"boolean"}},{"name":"hide-loader-animation","description":"When `true`, the loader animation is hidden when the chart is being created or updated. By default, it is shown at chart creation and each update (if it takes more than 300ms).\n| When `hideLoaderAnimation` is `true` | When `hideLoaderAnimation` is `false` |\n| -------- | -------- |\n| <video src=\"https://developers.arcgis.com/javascript/latest/assets/references/components/chart/hideLoaderAnimationTrue.webm\" aria-label=\"animationEnabled\" width=\"720\" autoPlay loop muted playsInline/> | <video src=\"https://developers.arcgis.com/javascript/latest/assets/references/components/chart/hideLoaderAnimationFalse.webm\" aria-label=\"animationEnabled\" width=\"720\" autoPlay loop muted playsInline/>","default":"false","value":{"type":"boolean"}},{"name":"hide-ui-messages","description":"When set to `true`, UI messages are hidden. These messages can be no data warnings, any placeholder messages set or invalid chart configuration.\nBy default, its value is `false`, which displays the messages on the chart.","default":"false","value":{"type":"boolean"}},{"name":"hide-zero-count-categories","description":"When `true`, missing categories from a `Count` aggregation are kept as gaps in the chart's data.\n\nWhen data is retrieved from the server, features with a count of 0 are excluded from the response, resulting in missing chart entries.\n\nBy default, the chart's [WebChartGenericDataItem](https://developers.arcgis.com/javascript/latest/references/charts-components/spec/data-source/#WebChartGenericDataItem-dataItems) associated with empty categories (from only a `Count` aggregation) are populated with 0s.","default":"false","value":{"type":"boolean"}},{"name":"ignore-view-extent","description":"When `true`, it signals the queries to ignore the view's extent, whether an additional geometry filter is provided or not.\n\nThis property will be effective when the component's [view](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#view) property is provided or when the [layer](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#layer) property is set to [`FeatureLayerView`](/references/core/views/layers/FeatureLayerView/).\n\nBy default the queries made by the chart will consider the view's extent as the unique geometry filter applicable. This implies ignoring any\ngeometry filters passed through the [model](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#model) or the [runtimeDataFilters](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#runtimeDataFilters) properties.","default":"false","value":{"type":"boolean"}},{"name":"interactions-disabled","description":"When `true`, all interactions such as zooming and selection are disabled on the chart. The chart will be rendered in a read-only state.","default":"false","value":{"type":"boolean"}},{"name":"layer-item-id","description":"Layer item ID associated with the chart to be rendered. Can be used in conjunction with the `chartIndex` property. If `layerItemId` is set without `chartIndex`, the first chart in the layer will be rendered.\n\nThe layer item ID can be found in the URL of the layer's item page on ArcGIS Online or Enterprise.\nFor example, in the URL `https://www.arcgis.com/home/item.html?id=8871626e970a4f3e9d6113ec63a92f2f`, the layer item ID is `8871626e970a4f3e9d6113ec63a92f2f`.\n\nSupported layer types include: [`FeatureLayer`](/references/core/layers/FeatureLayer), [`SubtypeSublayer`](/references/core/layers/support/SubtypeSublayer), [`ImageryLayer`](/references/core/layers/ImageryLayer), [`ImageryTileLayer`](/references/core/layers/ImageryTileLayer) and [`WCSLayer`](/references/core/layers/WCSLayer).","value":{"type":"string"}},{"name":"legend-interactions-disabled","description":"When `true`, disables the toggling of series or slices from the legend items. Clicking on the legend items will not hide or show the corresponding elements on the chart.\n\n**Note**: Only applicable to charts with multiple series and while the legend is displayed.","default":"false","value":{"type":"boolean"}},{"name":"null-as-valid","description":"When `true`, null values are considered as valid.\n\nBy default, when the data contains only null values, the chart dataset is considered empty:\n- The [@arcgisBadDataWarningRaise](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#event-arcgisBadDataWarningRaise) event will be sent.\n- The \"No data available to display\" warning message will be displayed in the chart container.","default":"false","value":{"type":"boolean"}},{"name":"placeholder","description":"Placeholder text displayed in the chart container when no chart is configured.\nIf the string contains HTML tags they will be interpreted as such.","value":{"type":"string"}},{"name":"popup-template-field-infos-enabled","description":"When `true`, field aliases from layer's [popupTemplate](/references/core/layers/FeatureLayer/#popupTemplate) are used to render field names in tooltips, axes and legend on the chart.","default":"false","value":{"type":"boolean"}},{"name":"return-features-extent","description":"When `true`, the feature extent is returned in the payload of [@arcgisDataProcessComplete](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#event-arcgisDataProcessComplete)\nand [@arcgisSelectionComplete](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#event-arcgisSelectionComplete) events.\nApplies only to:\n- Charts using an aggregation.\n- Data sources using a feature layer compatible with envelope aggregation.\n\nThe extent is returned through the [featuresExtentField](https://developers.arcgis.com/javascript/latest/references/charts-components/utils/defaults/index/#featuresExtentField) variable.\n\n**Note**: Not applicable to gauges.","default":"false","value":{"type":"boolean"}},{"name":"return-selection-indexes","description":"When `true`, selection indexes are computed and returned whenever a selection is made on or passed to the chart.\n\n**Note**: Not applicable to gauges.","default":"false","value":{"type":"boolean"}},{"name":"return-selection-oi-ds","description":"When `true`, object ids are computed and returned whenever a selection is made on or passed to the chart.\nOnly considered for data sources using a [feature layer](/references/core/layers/FeatureLayer).\n\n**Note**: Not applicable to gauges or charts configured with imagery layers.","default":"false","value":{"type":"boolean"}},{"name":"rotated","description":"When `true`, the chart is rotated 90 degrees so that the x-axis becomes vertical and the y-axis becomes horizontal.\n\n**Note**: Applicable to bar charts, box plots, combo bar line charts and line charts.","default":"false","value":{"type":"boolean"}},{"name":"set-time-binning-info-when-not-provided","description":"When `true`, the time binning unit and size is automatically set when not provided via the [`temporalBinningSize`](/references/charts-components/model/bar-chart-model/bar-chart-model/#temporalBinningSize) or [`temporalBinningUnit`](/references/charts-components/model/line-chart-model/line-chart-model/#temporalBinningUnit) properties of the chart model.\n\nThe time binning unit and size information for the chart will be derived from the dataset's date minimum and maximum values to compute an interval that best fits the date range.\n\n**Note**: Only applicable to charts with temporal binning enabled (bar chart, combo bar line chart, line chart, radar chart).","default":"false","value":{"type":"boolean"}},{"name":"show-empty-series","description":"When `true`, show the series on the chart and legend even if it doesn't contain any data.\n\nBy default, the empty series are hidden from the chart and the legend.","default":"false","value":{"type":"boolean"}},{"name":"skip-chart-creation-queue","description":"When `true`, charts will render immediately without waiting for other charts to finish rendering.\nBy default, charts are queued so that only one chart renders at a time.","default":"false","value":{"type":"boolean"}},{"name":"sync-charts-selection","description":"When `true`, the selection will be synchronized between charts configured with the same layer.","default":"false","value":{"type":"boolean"}},{"name":"sync-view-selection","description":"Determines whether the chart's selection should be synchronized with either the chart's [selectionManager](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#selectionManager) or the layer view's.","default":"false","value":{"type":"boolean"}},{"name":"sync-view-time-extent","description":"Whether the chart should be refreshed when the view's time extent changes.\n\n**Note**: Not supported for histogram.","default":"false","value":{"type":"boolean"}},{"name":"sync-view-time-zone","description":"Whether the chart's data should be in sync with the view's [timeZone](/references/core/views/MapView/#timeZone).\n\n**Note**: This applies only to charts supporting temporal data. Additionally if the data is binned, it applies only if the layer has the\ncapacity to handle the `/queryBins` operation. For any other case the chart will ignore the view's time zone regardless of the value of this property.","default":"false","value":{"type":"boolean"}},{"name":"time-zone","description":"Used to set a custom time zone for the chart.","value":{"type":"string"}},{"name":"zero-count-as-valid","description":"When `true`, count=0 is considered a valid statistic.\n\nBy default, when the aggregation type is \"count\" and the data contains only values equal to 0, the chart dataset\nis considered empty:\n- The [@arcgisBadDataWarningRaise](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#event-arcgisBadDataWarningRaise) event will be sent.\n- The \"No data available to display\" warning message will be displayed in the chart container.","default":"false","value":{"type":"boolean"}}],"slots":[{"name":"action-bar","description":"Slot for the [arcgis-charts-action-bar](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-charts-action-bar/) component or [calcite-action-bar](https://developers.arcgis.com/calcite-design-system/components/action-bar/) component."}],"events":[{"name":"arcgisAxesMinMaxChange","type":"AxesMinMaxChangePayload","description":"Emitted when the chart's axes minimum or maximum values are computed."},{"name":"arcgisBadDataWarningRaise","type":"DataWarningObject","description":"Emitted when the chart's data is incompatible with its model. Bad data such as empty dataset, axis logarithmic scale being incompatible with the data will trigger this event.\nThe event details contain information about the error."},{"name":"arcgisChartNotFoundWarning","type":"string","description":"Emitted when the chart is not found for the given [chartIndex](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#chartIndex) property with a valid [layerItemId](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#layerItemId)."},{"name":"arcgisConfigChange","type":"{\n newConfig: WebChart | undefined;\n oldConfig: WebChart | undefined;\n functionCalled: string | undefined;\n}","description":"Emitted when the chart configuration is changed."},{"name":"arcgisDataFetchComplete","type":"WebChartDataTypes","description":"Emitted once the chart data has been fetched but not yet fully processed. This event can be used to see all the slices before they get grouped into the 'other' slice during the post-processing step for pie charts.\nThe event details contain the pie chart's data with its ungrouped slices.\n\n**Note**: Applicable to pie charts only."},{"name":"arcgisDataProcessComplete","type":"DataProcessCompletePayload","description":"Emitted once the chart data is updated and any subsequent updates to the chart's data.\nThe event details contain the chart's data."},{"name":"arcgisDataProcessError","type":"void","description":"Emitted when an error occurred while fetching or processing the data for the chart."},{"name":"arcgisLegendItemVisibilityChange","type":"LegendItemVisibilityChangePayload","description":"Emitted once a legend item visibility has been changed.\nThe event details contain the toggled item's visibility and related information (series or slice id)."},{"name":"arcgisNoRenderPropChange","type":"NoRenderPropChangePayload","description":"Emitted when a no-render property ([rotated](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#rotated), [legendPosition](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#legendPosition), [legendVisibility](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#legendVisibility), [view](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#view) and [featureIndex](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#featureIndex)) is changed."},{"name":"arcgisRenderingComplete","type":"void","description":"Emitted once the chart is created and the rendering is complete. This event also emits with any subsequent chart updates, including when the chart is refreshed or when the configuration is changed."},{"name":"arcgisRuntimeError","type":"void","description":"Emitted when an error occurred that prevents the chart from being created or updated."},{"name":"arcgisSelectionComplete","type":"SelectionCompletePayload","description":"Emitted when a selection is applied to the chart.\nThe [`selectionData`](/references/charts-components/utils/misc/interfaces/#SelectionData) event detail contains various information about the selection, including the selected OIDs."},{"name":"arcgisSeriesColorChange","type":"SeriesColorChangePayload","description":"Emitted once one of the chart's series color has been assigned or changed."},{"name":"arcgisSeriesOrder","type":"string[]","description":"Emitted when the chart is created and at every update to confirm the order of the series on the chart.\nThe event details contain the modified series' indexes and names."}],"js":{"properties":[{"name":"actionMode","description":"Specifies how user interactions on the chart are handled.\n\n- `monoSelection`: Select one data item at a time. Each new selection replaces the previous selection.\n- `multiSelection`: Select multiple data items. Each new selection is added to the existing selection.\n- `multiSelectionWithCtrlKey`: Select multiple data items only while holding Ctrl (or Cmd on macOS). Without the key, selection behaves like `monoSelection`.\n- `zoom`: Zoom into an area of the chart.\n- `none`: Disable interaction-driven selection and zoom actions.\n\n**Note**: Not applicable to gauges.","type":"ActionModes | undefined"},{"name":"allowUsingObjectIdStat","description":"When `true`, object ID can be used as a numeric field for aggregated charts (for example, `sum` of `objectId`).","type":"boolean"},{"name":"animationEnabled","description":"When `true`, elements such as data items, axes, and legends will animate when the chart is first rendered or when the chart's configuration is updated.\n\n<video\n src=\"https://developers.arcgis.com/javascript/latest/assets/references/components/chart/animationEnabled.webm\"\n aria-label=\"animationEnabled\"\n width=\"720\"\n autoPlay\n loop\n muted\n playsInline\n/>","type":"boolean | undefined"},{"name":"aria","description":"The ARIA attributes for the chart component. Provides accessibility information to assistive technologies such as screen readers. Supports the following properties: [\\`label\\`](https://developer.mozilla.org/docs/Web/Accessibility/ARIA/Reference/Attributes/aria-label), [\\`description\\`](https://developer.mozilla.org/docs/Web/Accessibility/ARIA/Reference/Attributes/aria-description), [\\`describedByElements\\`](https://developer.mozilla.org/docs/Web/API/Element/ariaDescribedByElements), and [\\`labelledByElements\\`](https://developer.mozilla.org/docs/Web/API/Element/ariaLabelledByElements).","type":"DOMContainerAria | undefined"},{"name":"autoDestroyDisabled","description":"When `true`, the component is not destroyed automatically when it is disconnected from the document, which is useful when moving or temporarily hiding it.\n\n> [!CAUTION]\n>\n> Call the [destroy()](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#destroy) method when you are done to prevent memory leaks.","type":"boolean"},{"name":"autoInverseDataLabelTextColor","description":"When `true`, the data label text color is automatically adjusted for readability based on its background, switching to either the chart background color or white when the contrast is too low.\n\n| With `autoInverseDataLabelTextColor` | Without `autoInverseDataLabelTextColor` |\n| -------- | -------- |\n| ![autoInverseDataLabelTextColor true](https://developers.arcgis.com/javascript/latest/assets/references/components/chart/autoInverseDataLabelTextColorTrue.avif) | ![autoInverseDataLabelTextColor false](https://developers.arcgis.com/javascript/latest/assets/references/components/chart/autoInverseDataLabelTextColorFalse.avif) |\n\n**Note**: Applicable to heat charts only.","type":"boolean"},{"name":"calciteThemingCSSVariables","description":"Specifies the Calcite CSS variables to use when applying a Calcite theme.\n\nBy default the following variables are used:\n- background: `--calcite-color-foreground-1`\n- text: `--calcite-color-text-1`\n- line: `--calcite-color-border-1`\n- secondary line: `--calcite-color-text-3`\n- spinner: `--calcite-color-brand-hover`\n\nThe chart colors are overridden by those associated to those CSS variables, but only if they have not been customized beforehand.","type":"CalciteThemeCSSVariables"},{"name":"chartIndex","description":"The index of the chart to be rendered from the layer. Must be used in conjunction with the `layerItemId` or `layer` property.\n\nIf a `layer` or `layerItemId` is set without `chartIndex`, the first chart in the layer will be rendered.\n\nIf the `chartIndex` is out of bounds, the first chart in the layer will be rendered and a warning event will be emitted.","type":"number | undefined"},{"name":"chartLimits","description":"Customize the maximum number of data items allowed on the chart.\n\nThe chart's behavior once that limit is reached can be adjusted through the `behaviorAfterLimit` nested property, to either reject the creation\nor update of the chart, or render the elements up to the given limits.\n\n**Note**: Not applicable to gauges.","type":"ChartElementLimit | undefined"},{"name":"chartWillRender","description":"Lifecycle function executed after the data has been processed and before the chart renders.\nCan be used to alter the model from information extracted from the data.\n\n**Note**: Applicable to gauges and pie charts only.","type":"PreRenderCallback | undefined"},{"name":"configurationEnabled","description":"Whether to use features uniquely designed for a chart currently being configured by a user via the UI.\nWhen `true` and if the [arcgis-charts-action-bar](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-charts-action-bar/) is slotted in the chart component,\nthe action bar will expose an \"Edit chart\" action, surface relevant error states, and show a helpful in-container placeholder about the chart’s purpose.","type":"boolean"},{"name":"cursorRange","description":"Defines how the cursor selection rectangle is constrained when [actionMode](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#actionMode) is `zoom`, `multiSelection`, or `multiSelectionWithCtrlKey`.\n\n- `multi-axes`: Allows drawing a free rectangle across both axes.\n- `x-axis`: Constrains the rectangle to the x-axis direction.\n- `y-axis`: Constrains the rectangle to the y-axis direction.\n- `undefined`: Uses the default behavior for the current chart type and action mode.\n\n**Note**: Not applicable to gauges.","type":"CursorRange | undefined"},{"name":"dataLabelFormatter","description":"Callback function used to format the data labels. If the returned string contains HTML tags they will be interpreted as such.","type":"BarAndLineDataLabelFormatCallback | HistogramLabelFormatCallback | PieChartLabelFormatCallback | ScatterplotLabelFormatCallback | undefined"},{"name":"enableBetaFeatures","description":"Whether to enable the beta features from the chart component.","type":"boolean"},{"name":"errorPolicy","description":"When set to `ignore`, the chart fails silently without displaying an error or hiding the chart.\nBy default, it is set to `throw`, which displays an error alert and hides the chart when it can't be created or updated.","type":"ErrorPolicy"},{"name":"filterBySelection","description":"When `true`, the chart uses the current selection as a data filter and renders only selected elements instead of rendering the full dataset with selection styling.\nAxis bounds, time binning intervals will be computed based on the selected elements only.\n\n**Note**: Not applicable to gauges or charts configured with imagery layers.","type":"boolean"},{"name":"filterByViewExtent","description":"When `true`, chart queries are constrained to the current map view extent. The chart refreshes as the view extent changes, and the axis bounds or other derived values are recalculated from the view extent data.","type":"boolean"},{"name":"gaugeInnerLabelFormatter","description":"Callback function used to format the gauge inner label. If the returned string contains HTML tags they will be interpreted as such.","type":"GaugeInnerLabelFormatCallback | undefined"},{"name":"guideTooltipFormatter","description":"Callback function used to format the axes guides tooltip. If the returned string contains HTML tags they will be interpreted as such.","type":"GuideTooltipFormatCallback | undefined"},{"name":"hideLoaderAnimation","description":"When `true`, the loader animation is hidden when the chart is being created or updated. By default, it is shown at chart creation and each update (if it takes more than 300ms).\n| When `hideLoaderAnimation` is `true` | When `hideLoaderAnimation` is `false` |\n| -------- | -------- |\n| <video src=\"https://developers.arcgis.com/javascript/latest/assets/references/components/chart/hideLoaderAnimationTrue.webm\" aria-label=\"animationEnabled\" width=\"720\" autoPlay loop muted playsInline/> | <video src=\"https://developers.arcgis.com/javascript/latest/assets/references/components/chart/hideLoaderAnimationFalse.webm\" aria-label=\"animationEnabled\" width=\"720\" autoPlay loop muted playsInline/>","type":"boolean"},{"name":"hideUIMessages","description":"When set to `true`, UI messages are hidden. These messages can be no data warnings, any placeholder messages set or invalid chart configuration.\nBy default, its value is `false`, which displays the messages on the chart.","type":"boolean"},{"name":"hideZeroCountCategories","description":"When `true`, missing categories from a `Count` aggregation are kept as gaps in the chart's data.\n\nWhen data is retrieved from the server, features with a count of 0 are excluded from the response, resulting in missing chart entries.\n\nBy default, the chart's [WebChartGenericDataItem](https://developers.arcgis.com/javascript/latest/references/charts-components/spec/data-source/#WebChartGenericDataItem-dataItems) associated with empty categories (from only a `Count` aggregation) are populated with 0s.","type":"boolean"},{"name":"ignoreViewExtent","description":"When `true`, it signals the queries to ignore the view's extent, whether an additional geometry filter is provided or not.\n\nThis property will be effective when the component's [view](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#view) property is provided or when the [layer](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#layer) property is set to [`FeatureLayerView`](/references/core/views/layers/FeatureLayerView/).\n\nBy default the queries made by the chart will consider the view's extent as the unique geometry filter applicable. This implies ignoring any\ngeometry filters passed through the [model](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#model) or the [runtimeDataFilters](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#runtimeDataFilters) properties.","type":"boolean"},{"name":"interactionsDisabled","description":"When `true`, all interactions such as zooming and selection are disabled on the chart. The chart will be rendered in a read-only state.","type":"boolean"},{"name":"layer","description":"Used to perform queries.\nIf the layer is a `FeatureLayerView` or if the layer and the `view` property are both provided, the queries will be executed client-side.","type":"ChartLayerInput | FeatureLayerView | undefined"},{"name":"layerItemId","description":"Layer item ID associated with the chart to be rendered. Can be used in conjunction with the `chartIndex` property. If `layerItemId` is set without `chartIndex`, the first chart in the layer will be rendered.\n\nThe layer item ID can be found in the URL of the layer's item page on ArcGIS Online or Enterprise.\nFor example, in the URL `https://www.arcgis.com/home/item.html?id=8871626e970a4f3e9d6113ec63a92f2f`, the layer item ID is `8871626e970a4f3e9d6113ec63a92f2f`.\n\nSupported layer types include: [`FeatureLayer`](/references/core/layers/FeatureLayer), [`SubtypeSublayer`](/references/core/layers/support/SubtypeSublayer), [`ImageryLayer`](/references/core/layers/ImageryLayer), [`ImageryTileLayer`](/references/core/layers/ImageryTileLayer) and [`WCSLayer`](/references/core/layers/WCSLayer).","type":"string | undefined"},{"name":"legendInteractionsDisabled","description":"When `true`, disables the toggling of series or slices from the legend items. Clicking on the legend items will not hide or show the corresponding elements on the chart.\n\n**Note**: Only applicable to charts with multiple series and while the legend is displayed.","type":"boolean | undefined"},{"name":"legendValueLabelFormatter","description":"When the pie chart label contains either a numeric value or a percentage (which can be set through the\n[displayNumericValueOnLegendItems](https://developers.arcgis.com/javascript/latest/references/charts-components/model/pie-chart-model/pie-chart-model/#displayNumericValueOnLegendItems) and\n[displayPercentageOnLegendItems](https://developers.arcgis.com/javascript/latest/references/charts-components/model/pie-chart-model/pie-chart-model/#displayPercentageOnLegendItems) properties from the pie chart model), this property\ncan be used to format the numeric value and/or percentage. If the returned string contains HTML tags they will be interpreted as such.","type":"PieChartLegendValueLabelFormatCallback | undefined"},{"name":"messageOverrides","description":"Custom messages for translated strings on the chart. If the returned string contains HTML tags they will be interpreted as such.\n\nThe customizable messages can be found thru the [`CommonStringsIdentity`](/references/charts-components/utils/localization/interfaces/#CommonStringsIdentity) variable.","type":"Record<string, unknown> | undefined"},{"name":"model","description":"Provides an API to interact with the chart's configuration.\n\n`model` accepts either a [ChartModel](https://developers.arcgis.com/javascript/latest/references/charts-components/model/chart-model/chart-model/) instance or a [WebChart](https://developers.arcgis.com/javascript/latest/references/charts-components/spec/web-chart/#WebChart) object.\n- `ChartModel`: A chart model class instance, which can be created using the [createModel](https://developers.arcgis.com/javascript/latest/references/charts-components/model/shared/setup-utils/#createModel) function.\n - This is the recommended approach as it ensures the chart configuration is valid and compatible with the component.\n- `WebChart`: A plain chart configuration object that follows the [WebChart](https://developers.arcgis.com/javascript/latest/references/charts-components/spec/web-chart/#WebChart) specification.","type":"ChartModel | WebChart | undefined"},{"name":"nullAsValid","description":"When `true`, null values are considered as valid.\n\nBy default, when the data contains only null values, the chart dataset is considered empty:\n- The [@arcgisBadDataWarningRaise](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#event-arcgisBadDataWarningRaise) event will be sent.\n- The \"No data available to display\" warning message will be displayed in the chart container.","type":"boolean"},{"name":"placeholder","description":"Placeholder text displayed in the chart container when no chart is configured.\nIf the string contains HTML tags they will be interpreted as such.","type":"string | undefined"},{"name":"popupTemplateFieldInfosEnabled","description":"When `true`, field aliases from layer's [popupTemplate](/references/core/layers/FeatureLayer/#popupTemplate) are used to render field names in tooltips, axes and legend on the chart.","type":"boolean | undefined"},{"name":"returnFeaturesExtent","description":"When `true`, the feature extent is returned in the payload of [@arcgisDataProcessComplete](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#event-arcgisDataProcessComplete)\nand [@arcgisSelectionComplete](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#event-arcgisSelectionComplete) events.\nApplies only to:\n- Charts using an aggregation.\n- Data sources using a feature layer compatible with envelope aggregation.\n\nThe extent is returned through the [featuresExtentField](https://developers.arcgis.com/javascript/latest/references/charts-components/utils/defaults/index/#featuresExtentField) variable.\n\n**Note**: Not applicable to gauges.","type":"boolean"},{"name":"returnSelectionIndexes","description":"When `true`, selection indexes are computed and returned whenever a selection is made on or passed to the chart.\n\n**Note**: Not applicable to gauges.","type":"boolean"},{"name":"returnSelectionOIDs","description":"When `true`, object ids are computed and returned whenever a selection is made on or passed to the chart.\nOnly considered for data sources using a [feature layer](/references/core/layers/FeatureLayer).\n\n**Note**: Not applicable to gauges or charts configured with imagery layers.","type":"boolean | undefined"},{"name":"rotated","description":"When `true`, the chart is rotated 90 degrees so that the x-axis becomes vertical and the y-axis becomes horizontal.\n\n**Note**: Applicable to bar charts, box plots, combo bar line charts and line charts.","type":"boolean"},{"name":"runtimeDataFilters","description":"Applies runtime data filters to the chart, features will be filtered based on the provided key value pairs.\n\nSupported keys are `where`, `objectIds`, `geometry`, `spatialRelationship`, `distance`, `units`, `timeExtent`, and `gdbVersion`.","type":"WebChartDataFilters | undefined"},{"name":"secondaryYAxisLabelFormatter","description":"Callback function used to format the secondary y-axis labels. If the returned string contains HTML tags they will be interpreted as such.","type":"AxisLabelFormatCallback | undefined"},{"name":"selectionData","description":"Applies a programmatic selection to the chart. The payload can target chart elements by object IDs (`selectionOIDs`), by indexes (`selectionIndexes`), or by items (`selectionItems`).\n\n##### Selection by object IDs\nWhen passing in a `selectionOIDs` array, the chart will match the provided object IDs with the chart's data items and apply the selection.","type":"SelectionData | undefined"},{"name":"selectionManager","description":"Selection manager object used to synchronize the selections with the chart when [syncViewSelection](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#syncViewSelection) is `true`.\nIt has precedence over the layer view's [SelectionManager](/references/core/views/SelectionManager/) when both are available.","type":"SelectionManager | undefined"},{"name":"selectionTheme","description":"Customizes the visual style applied to selected and non-selected chart data items (bars, slices, markers, boxes etc.).\n\n- The [`selectedElementsTheme`](/references/charts-components/utils/misc/interfaces/#SelectionTheme-selectedElementsTheme) property controls the appearance of selected elements.\n- The [`nonSelectedElementsTheme`](/references/charts-components/utils/misc/interfaces/#SelectionTheme-nonSelectedElementsTheme) property controls the appearance of elements that are not selected.","type":"SelectionTheme | undefined"},{"name":"setTimeBinningInfoWhenNotProvided","description":"When `true`, the time binning unit and size is automatically set when not provided via the [`temporalBinningSize`](/references/charts-components/model/bar-chart-model/bar-chart-model/#temporalBinningSize) or [`temporalBinningUnit`](/references/charts-components/model/line-chart-model/line-chart-model/#temporalBinningUnit) properties of the chart model.\n\nThe time binning unit and size information for the chart will be derived from the dataset's date minimum and maximum values to compute an interval that best fits the date range.\n\n**Note**: Only applicable to charts with temporal binning enabled (bar chart, combo bar line chart, line chart, radar chart).","type":"boolean"},{"name":"showEmptySeries","description":"When `true`, show the series on the chart and legend even if it doesn't contain any data.\n\nBy default, the empty series are hidden from the chart and the legend.","type":"boolean"},{"name":"skipChartCreationQueue","description":"When `true`, charts will render immediately without waiting for other charts to finish rendering.\nBy default, charts are queued so that only one chart renders at a time.","type":"boolean"},{"name":"syncChartsSelection","description":"When `true`, the selection will be synchronized between charts configured with the same layer.","type":"boolean"},{"name":"syncViewSelection","description":"Determines whether the chart's selection should be synchronized with either the chart's [selectionManager](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#selectionManager) or the layer view's.","type":"boolean"},{"name":"syncViewTimeExtent","description":"Whether the chart should be refreshed when the view's time extent changes.\n\n**Note**: Not supported for histogram.","type":"boolean"},{"name":"syncViewTimeZone","description":"Whether the chart's data should be in sync with the view's [timeZone](/references/core/views/MapView/#timeZone).\n\n**Note**: This applies only to charts supporting temporal data. Additionally if the data is binned, it applies only if the layer has the\ncapacity to handle the `/queryBins` operation. For any other case the chart will ignore the view's time zone regardless of the value of this property.","type":"boolean"},{"name":"timeZone","description":"Used to set a custom time zone for the chart.","type":"MapView[\"timeZone\"] | undefined"},{"name":"tooltipFormatter","description":"Callback function used to format the tooltips when hovering over a chart element. If the returned string contains HTML tags they will be interpreted as such.","type":"TooltipFormatters | undefined"},{"name":"updateSplitBySeries","description":"Whether to automatically add the missing series to cover the split-by values not referenced in the configuration.\n- This property only applies to plain chart configuration object that's constructed following the [WebChart](https://developers.arcgis.com/javascript/latest/references/charts-components/spec/web-chart/#WebChart) specification.\n - When [`addMissingSeries`](/references/charts-components/utils/components/interfaces/#MissingSplitBySeriesProps-addMissingSeries) is set to `true`, the missing series will be added.\n - When [`seriesTemplate`](/references/charts-components/utils/components/interfaces/#MissingSplitBySeriesProps-seriesTemplate) is omitted, the first existing series from the configuration will be copied to be used as a model for the missing ones. The chart won't render if the series template is not set and there's no series in the configuration.\n- If a chart is configured using a chart model, this property is not necessary as the split-by series will be updated automatically when the model's properties are changed.\n\n**Note**: Applicable only to bar chart, box plot, line chart and radar chart when a split-by field is used.","type":"MissingSplitBySeriesProps | undefined"},{"name":"view","description":"Used to access the feature layer view instance in order to perform client side queries.","type":"MapView | SceneView | undefined"},{"name":"xAxisLabelFormatter","description":"Callback function used to format the x-axis labels. If the returned string contains HTML tags they will be interpreted as such.","type":"AxisLabelFormatCallback | undefined"},{"name":"yAxisLabelFormatter","description":"Callback function used to format the y-axis labels. If the returned string contains HTML tags they will be interpreted as such.","type":"AxisLabelFormatCallback | undefined"},{"name":"zeroCountAsValid","description":"When `true`, count=0 is considered a valid statistic.\n\nBy default, when the aggregation type is \"count\" and the data contains only values equal to 0, the chart dataset\nis considered empty:\n- The [@arcgisBadDataWarningRaise](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#event-arcgisBadDataWarningRaise) event will be sent.\n- The \"No data available to display\" warning message will be displayed in the chart container.","type":"boolean"}],"events":[{"name":"arcgisAxesMinMaxChange","type":"AxesMinMaxChangePayload","description":"Emitted when the chart's axes minimum or maximum values are computed."},{"name":"arcgisBadDataWarningRaise","type":"DataWarningObject","description":"Emitted when the chart's data is incompatible with its model. Bad data such as empty dataset, axis logarithmic scale being incompatible with the data will trigger this event.\nThe event details contain information about the error."},{"name":"arcgisChartNotFoundWarning","type":"string","description":"Emitted when the chart is not found for the given [chartIndex](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#chartIndex) property with a valid [layerItemId](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#layerItemId)."},{"name":"arcgisConfigChange","type":"{\n newConfig: WebChart | undefined;\n oldConfig: WebChart | undefined;\n functionCalled: string | undefined;\n}","description":"Emitted when the chart configuration is changed."},{"name":"arcgisDataFetchComplete","type":"WebChartDataTypes","description":"Emitted once the chart data has been fetched but not yet fully processed. This event can be used to see all the slices before they get grouped into the 'other' slice during the post-processing step for pie charts.\nThe event details contain the pie chart's data with its ungrouped slices.\n\n**Note**: Applicable to pie charts only."},{"name":"arcgisDataProcessComplete","type":"DataProcessCompletePayload","description":"Emitted once the chart data is updated and any subsequent updates to the chart's data.\nThe event details contain the chart's data."},{"name":"arcgisDataProcessError","type":"void","description":"Emitted when an error occurred while fetching or processing the data for the chart."},{"name":"arcgisLegendItemVisibilityChange","type":"LegendItemVisibilityChangePayload","description":"Emitted once a legend item visibility has been changed.\nThe event details contain the toggled item's visibility and related information (series or slice id)."},{"name":"arcgisNoRenderPropChange","type":"NoRenderPropChangePayload","description":"Emitted when a no-render property ([rotated](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#rotated), [legendPosition](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#legendPosition), [legendVisibility](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#legendVisibility), [view](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#view) and [featureIndex](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#featureIndex)) is changed."},{"name":"arcgisRenderingComplete","type":"void","description":"Emitted once the chart is created and the rendering is complete. This event also emits with any subsequent chart updates, including when the chart is refreshed or when the configuration is changed."},{"name":"arcgisRuntimeError","type":"void","description":"Emitted when an error occurred that prevents the chart from being created or updated."},{"name":"arcgisSelectionComplete","type":"SelectionCompletePayload","description":"Emitted when a selection is applied to the chart.\nThe [`selectionData`](/references/charts-components/utils/misc/interfaces/#SelectionData) event detail contains various information about the selection, including the selected OIDs."},{"name":"arcgisSeriesColorChange","type":"SeriesColorChangePayload","description":"Emitted once one of the chart's series color has been assigned or changed."},{"name":"arcgisSeriesOrder","type":"string[]","description":"Emitted when the chart is created and at every update to confirm the order of the series on the chart.\nThe event details contain the modified series' indexes and names."}]}},{"name":"arcgis-charts-action-bar","description":"The Charts Action Bar component provides context-specific actions such as rotation, zooming, and filtering, as well as general actions like exporting the chart as an image or CSV file.\nThis component is designed to be used with a chart component and is not intended for standalone use.\n--\n\n### Events\n- **arcgisActionBarToggle** - Event triggered once action bar expand is toggled.\n- **arcgisDefaultActionSelect** - Event triggered once a default action is selected.\n\n### Methods\n- `componentOnReady(): Promise<this>` - Creates a promise that resolves once the component is fully loaded.\n\n### Slots\n- **custom-action-top** - A slot for adding custom `calcite-action` to the top of the default actions.\n- **custom-action-below** - A slot for adding custom `calcite-action` to the bottom of the default actions.","doc-url":"https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-charts-action-bar/","attributes":[{"name":"action-bar-selection-mode","description":"Defines which selection mode the slotted action bar should use.\n- `monoSelection`: Select a single data point/series, new selection replaces the previous one.\n- `multiSelection`: Select multiple data points/series, new selection adds to the previous one.\n- `multiSelectionWithCtrlKey`: Select multiple data points/series while holding the Ctrl key (Cmd key on Mac), new selection adds to the previous one.","default":"\"multiSelectionWithCtrlKey\"","value":{"type":["\"monoSelection\"","\"multiSelection\"","\"multiSelectionWithCtrlKey\""]}},{"name":"chart-type","description":"Chart type used to determine which default actions to display.","value":{"type":["\"scatterSeries\"","\"pieSeries\"","\"gaugeSeries\"","\"lineSeries\"","\"barSeries\"","\"histogramSeries\"","\"boxPlotSeries\"","\"radarSeries\"","\"comboLineAndBarSeries\"","\"heatSeries\""]}},{"name":"clear-selection-state","description":"When `disabled`, interaction with the clear selection action is prevented and the component is displayed with lower opacity.","default":"\"enabled\"","value":{"type":["\"disabled\"","\"enabled\""]}},{"name":"clear-selection-title","description":"Custom title for the clear selection action.","value":{"type":"string"}},{"name":"clear-selection-toggle","description":"When `active`, the clear selection action is highlighted.","default":"\"inactive\"","value":{"type":["\"active\"","\"inactive\""]}},{"name":"edit-chart-state","description":"When `disabled`, interaction with the edit chart action is prevented and the component is displayed with lower opacity.","default":"\"disabled\"","value":{"type":["\"disabled\"","\"enabled\""]}},{"name":"edit-chart-title","description":"Custom title for the edit chart action.","value":{"type":"string"}},{"name":"edit-chart-toggle","description":"When `active`, the edit chart action is highlighted.","default":"\"inactive\"","value":{"type":["\"active\"","\"inactive\""]}},{"name":"expanded","description":"When `true`, the action bar is expanded.","default":"false","value":{"type":"boolean"}},{"name":"export-action-state","description":"When `disabled`, interaction with the export action is prevented and the component is displayed with lower opacity.","default":"\"enabled\"","value":{"type":["\"disabled\"","\"enabled\""]}},{"name":"export-as-csv-state","description":"When `disabled`, interaction with the download CSV is prevented and the component is displayed with lower opacity.","default":"\"enabled\"","value":{"type":["\"disabled\"","\"enabled\""]}},{"name":"export-as-csv-title","description":"Custom title for the download CSV action.","value":{"type":"string"}},{"name":"export-as-image-state","description":"When `disabled`, interaction with the download image is prevented and the component is displayed with lower opacity.","default":"\"enabled\"","value":{"type":["\"disabled\"","\"enabled\""]}},{"name":"export-as-image-title","description":"Custom title for the download chart action.","value":{"type":"string"}},{"name":"filter-by-extent-state","description":"When `disabled`, interaction with the filter by extent action is prevented and the component is displayed with lower opacity.","default":"\"enabled\"","value":{"type":["\"disabled\"","\"enabled\""]}},{"name":"filter-by-extent-title","description":"Custom title for the filter by extent action.","value":{"type":"string"}},{"name":"filter-by-extent-toggle","description":"When `active`, the filter by extent action is highlighted.","default":"\"inactive\"","value":{"type":["\"active\"","\"inactive\""]}},{"name":"filter-by-selection-state","description":"When `disabled`, interaction with the filter by selection action is prevented and the component is displayed with lower opacity.","default":"\"enabled\"","value":{"type":["\"disabled\"","\"enabled\""]}},{"name":"filter-by-selection-title","description":"Custom title for the filter by selection action.","value":{"type":"string"}},{"name":"filter-by-selection-toggle","description":"When `active`, the filter by selection action is highlighted.","default":"\"inactive\"","value":{"type":["\"active\"","\"inactive\""]}},{"name":"force-disable-actions","description":"When `true`, overrides the individual settings for each action to instead force disable them all.","default":"false","value":{"type":"boolean"}},{"name":"full-extent-state","description":"When `disabled`, interaction with the full extent action is prevented and the component is displayed with lower opacity.","default":"\"enabled\"","value":{"type":["\"disabled\"","\"enabled\""]}},{"name":"full-extent-title","description":"Custom title for the full extent action.","value":{"type":"string"}},{"name":"full-extent-toggle","description":"When `active`, the full extent action is highlighted.","default":"\"inactive\"","value":{"type":["\"active\"","\"inactive\""]}},{"name":"legend-state","description":"When `disabled`, interaction with the legend action is prevented and the component is displayed with lower opacity.","default":"\"enabled\"","value":{"type":["\"disabled\"","\"enabled\""]}},{"name":"legend-title","description":"Custom title for the legend action.","value":{"type":"string"}},{"name":"legend-toggle","description":"When `active`, the legend action is highlighted.","default":"\"inactive\"","value":{"type":["\"active\"","\"inactive\""]}},{"name":"rotate-chart-state","description":"When `disabled`, interaction with the rotate chart action is prevented and the component is displayed with lower opacity.","default":"\"enabled\"","value":{"type":["\"disabled\"","\"enabled\""]}},{"name":"rotate-chart-title","description":"Custom title for the rotate chart action.","value":{"type":"string"}},{"name":"rotate-chart-toggle","description":"When `active`, the rotate chart action is highlighted.","default":"\"inactive\"","value":{"type":["\"active\"","\"inactive\""]}},{"name":"selection-state","description":"When `disabled`, interaction with the selection action is prevented and the component is displayed with lower opacity.","default":"\"enabled\"","value":{"type":["\"disabled\"","\"enabled\""]}},{"name":"selection-title","description":"Custom title for the selection action.","value":{"type":"string"}},{"name":"selection-toggle","description":"When `active`, the selection action is highlighted.","default":"\"inactive\"","value":{"type":["\"active\"","\"inactive\""]}},{"name":"switch-selection-state","description":"When `disabled`, interaction with the switch selection action is prevented and the component is displayed with lower opacity.","default":"\"enabled\"","value":{"type":["\"disabled\"","\"enabled\""]}},{"name":"switch-selection-title","description":"Custom title for the switch selection action.","value":{"type":"string"}},{"name":"switch-selection-toggle","description":"When `active`, the switch selection action is highlighted.","default":"\"inactive\"","value":{"type":["\"active\"","\"inactive\""]}},{"name":"zoom-state","description":"When `disabled`, interaction with the zoom action is prevented and the component is displayed with lower opacity.","default":"\"enabled\"","value":{"type":["\"disabled\"","\"enabled\""]}},{"name":"zoom-title","description":"Custom title for the zoom action.","value":{"type":"string"}},{"name":"zoom-toggle","description":"When `active`, the zoom action is highlighted.","default":"\"inactive\"","value":{"type":["\"active\"","\"inactive\""]}}],"slots":[{"name":"custom-action-top","description":"A slot for adding custom `calcite-action` to the top of the default actions."},{"name":"custom-action-below","description":"A slot for adding custom `calcite-action` to the bottom of the default actions."}],"events":[{"name":"arcgisActionBarToggle","type":"boolean","description":"Event triggered once action bar expand is toggled."},{"name":"arcgisDefaultActionSelect","type":"DefaultActionSelectPayload","description":"Event triggered once a default action is selected."}],"js":{"properties":[{"name":"actionBarSelectionMode","description":"Defines which selection mode the slotted action bar should use.\n- `monoSelection`: Select a single data point/series, new selection replaces the previous one.\n- `multiSelection`: Select multiple data points/series, new selection adds to the previous one.\n- `multiSelectionWithCtrlKey`: Select multiple data points/series while holding the Ctrl key (Cmd key on Mac), new selection adds to the previous one.","type":"Extract<ActionModes, \"monoSelection\" | \"multiSelection\" | \"multiSelectionWithCtrlKey\"> | undefined"},{"name":"chartElement","description":"Chart element reference with which the action bar is associated.","type":"ArcgisChart | undefined"},{"name":"chartType","description":"Chart type used to determine which default actions to display.","type":"ChartTypes | undefined"},{"name":"clearSelectionState","description":"When `disabled`, interaction with the clear selection action is prevented and the component is displayed with lower opacity.","type":"ActionState"},{"name":"clearSelectionTitle","description":"Custom title for the clear selection action.","type":"string | undefined"},{"name":"clearSelectionToggle","description":"When `active`, the clear selection action is highlighted.","type":"ActionToggle"},{"name":"csvExportExclusionList","description":"The CSV export action is disabled for certain chart types.\n\nModify this property to add or remove chart types from the list of disabled types.","type":"WebChartTypes[]"},{"name":"editChartState","description":"When `disabled`, interaction with the edit chart action is prevented and the component is displayed with lower opacity.","type":"ActionState"},{"name":"editChartTitle","description":"Custom title for the edit chart action.","type":"string | undefined"},{"name":"editChartToggle","description":"When `active`, the edit chart action is highlighted.","type":"ActionToggle"},{"name":"expanded","description":"When `true`, the action bar is expanded.","type":"boolean"},{"name":"exportActionState","description":"When `disabled`, interaction with the export action is prevented and the component is displayed with lower opacity.","type":"ActionState"},{"name":"exportAsCSVState","description":"When `disabled`, interaction with the download CSV is prevented and the component is displayed with lower opacity.","type":"ActionState"},{"name":"exportAsCSVTitle","description":"Custom title for the download CSV action.","type":"string | undefined"},{"name":"exportAsImageState","description":"When `disabled`, interaction with the download image is prevented and the component is displayed with lower opacity.","type":"ActionState"},{"name":"exportAsImageTitle","description":"Custom title for the download chart action.","type":"string | undefined"},{"name":"filterByExtentState","description":"When `disabled`, interaction with the filter by extent action is prevented and the component is displayed with lower opacity.","type":"ActionState"},{"name":"filterByExtentTitle","description":"Custom title for the filter by extent action.","type":"string | undefined"},{"name":"filterByExtentToggle","description":"When `active`, the filter by extent action is highlighted.","type":"ActionToggle"},{"name":"filterBySelectionState","description":"When `disabled`, interaction with the filter by selection action is prevented and the component is displayed with lower opacity.","type":"ActionState"},{"name":"filterBySelectionTitle","description":"Custom title for the filter by selection action.","type":"string | undefined"},{"name":"filterBySelectionToggle","description":"When `active`, the filter by selection action is highlighted.","type":"ActionToggle"},{"name":"forceDisableActions","description":"When `true`, overrides the individual settings for each action to instead force disable them all.","type":"boolean"},{"name":"fullExtentState","description":"When `disabled`, interaction with the full extent action is prevented and the component is displayed with lower opacity.","type":"ActionState"},{"name":"fullExtentTitle","description":"Custom title for the full extent action.","type":"string | undefined"},{"name":"fullExtentToggle","description":"When `active`, the full extent action is highlighted.","type":"ActionToggle"},{"name":"hiddenActions","description":"Holds a list of actions to hide from the action bar.\n\n**Note:** The edit chart action is hidden by default. To show it, remove its value from this array.","type":"DefaultChartActions[]"},{"name":"legendState","description":"When `disabled`, interaction with the legend action is prevented and the component is displayed with lower opacity.","type":"ActionState"},{"name":"legendTitle","description":"Custom title for the legend action.","type":"string | undefined"},{"name":"legendToggle","description":"When `active`, the legend action is highlighted.","type":"ActionToggle"},{"name":"messageOverrides","description":"Overwrite localized strings for this component.","type":"Record<string, unknown> | undefined"},{"name":"rotateChartState","description":"When `disabled`, interaction with the rotate chart action is prevented and the component is displayed with lower opacity.","type":"ActionState"},{"name":"rotateChartTitle","description":"Custom title for the rotate chart action.","type":"string | undefined"},{"name":"rotateChartToggle","description":"When `active`, the rotate chart action is highlighted.","type":"ActionToggle"},{"name":"selectionState","description":"When `disabled`, interaction with the selection action is prevented and the component is displayed with lower opacity.","type":"ActionState"},{"name":"selectionTitle","description":"Custom title for the selection action.","type":"string | undefined"},{"name":"selectionToggle","description":"When `active`, the selection action is highlighted.","type":"ActionToggle"},{"name":"switchSelectionState","description":"When `disabled`, interaction with the switch selection action is prevented and the component is displayed with lower opacity.","type":"ActionState"},{"name":"switchSelectionTitle","description":"Custom title for the switch selection action.","type":"string | undefined"},{"name":"switchSelectionToggle","description":"When `active`, the switch selection action is highlighted.","type":"ActionToggle"},{"name":"zoomState","description":"When `disabled`, interaction with the zoom action is prevented and the component is displayed with lower opacity.","type":"ActionState"},{"name":"zoomTitle","description":"Custom title for the zoom action.","type":"string | undefined"},{"name":"zoomToggle","description":"When `active`, the zoom action is highlighted.","type":"ActionToggle"}],"events":[{"name":"arcgisActionBarToggle","type":"boolean","description":"Event triggered once action bar expand is toggled."},{"name":"arcgisDefaultActionSelect","type":"DefaultActionSelectPayload","description":"Event triggered once a default action is selected."}]}}]},"css":{"properties":[],"pseudo-elements":[]}}}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arcgis/charts-components",
3
- "version": "5.2.0-next.97",
3
+ "version": "5.2.0-next.98",
4
4
  "description": "Reusable ArcGIS charting Web Components.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -30,8 +30,8 @@
30
30
  "dependencies": {
31
31
  "@amcharts/amcharts4": "^4.10.31",
32
32
  "@amcharts/amcharts5": "~5.20.4",
33
- "@arcgis/lumina": "5.2.0-next.97",
34
- "@arcgis/toolkit": "5.2.0-next.97",
33
+ "@arcgis/lumina": "5.2.0-next.98",
34
+ "@arcgis/toolkit": "5.2.0-next.98",
35
35
  "@esri/arcgis-html-sanitizer": "~4.1.0",
36
36
  "@lit/task": "^1.0.3",
37
37
  "@zumer/snapdom": "^2.24.1",
@@ -45,7 +45,7 @@
45
45
  "tslib": "^2.8.1"
46
46
  },
47
47
  "peerDependencies": {
48
- "@arcgis/core": "5.2.0-next.97",
48
+ "@arcgis/core": "5.2.0-next.98",
49
49
  "@esri/calcite-components": "^5.2.0-next.65"
50
50
  },
51
51
  "css.customData": [