ESM
import { ChartSubType, SelectionSource } from "@arcgis/charts-components/utils/misc/interfaces.js";Variables
ChartSubType
Variable
- Type
- { readonly NonSpecific: "nonSpecific"; readonly BarAndLineNoAggregation: "barAndLineNoAggregation"; readonly BarAndLineMonoField: "barAndLineMonoField"; readonly BarAndLineMultiFields: "barAndLineMultiFields"; readonly BarAndLineFromFields: "barAndLineFromFields"; readonly BarAndLineSplitBy: "barAndLineSplitBy"; readonly BarAndLineSplitByNoAggregation: "barAndLineSplitByNoAggregation"; readonly PieNoAggregation: "pieNoAggregation"; readonly PieFromCategory: "pieFromCategory"; readonly PieFromFields: "pieFromFields"; readonly BoxPlotMonoField: "boxPlotMonoField"; readonly BoxPlotMultiFields: "boxPlotMultiFields"; readonly BoxPlotMonoFieldAndCategory: "boxPlotMonoFieldAndCategory"; readonly BoxPlotMultiFieldsAndCategory: "boxPlotMultiFieldsAndCategory"; readonly BoxPlotMonoFieldAndSplitBy: "boxPlotMonoFieldAndSplitBy"; readonly BoxPlotMultiFieldsAndSplitBy: "boxPlotMultiFieldsAndSplitBy"; readonly BoxPlotMonoFieldAndCategoryAndSplitBy: "boxPlotMonoFieldAndCategoryAndSplitBy"; }
SelectionSource
Variable
- Type
- { readonly SelectionByClick: "SelectionByClick"; readonly SelectionByRange: "SelectionByRange"; readonly ProgrammaticSelection: "ProgrammaticSelection"; readonly ClearSelection: "ClearSelection"; }
Type definitions
ChartSubType
Type definition
- Type
- (typeof ChartSubType)[keyof typeof ChartSubType]
SelectionSource
Type definition
- Type
- (typeof SelectionSource)[keyof typeof SelectionSource]
SelectionData
Type definition
selectionItems
Property
- Type
- WebChartDataItem[] | undefined
selectionIndexes
Property
- Type
- SelectionIndexes | undefined
selectionSource
Property
- Type
- SelectionSource | undefined
HeatSeriesColorChangePayloadClassSymbols
Type definition
label
Property
- Type
- string
symbol
Property
- Type
- ISimpleFillSymbol
BoxPlotSymbols
Type definition
- Type
- { fillSymbol?: ISimpleFillSymbol; } | { lineSymbol: ISimpleLineSymbol; markerSymbol?: ISimpleMarkerSymbol; }
LineChartSymbols
Type definition
lineSymbol
Property
- Type
- ISimpleLineSymbol
markerSymbol
Property
- Type
- ISimpleMarkerSymbol | undefined
PieSlicesSymbols
Type definition
Type used to provide information regarding a pie chart's slices:
slicescontains an array ofWebChartPieChartSlicerelated to the non-grouped slices.groupedSlicescontains an array ofWebChartPieChartSlicerelated to the non-visible grouped slices.groupOfSlicescontains aWebChartPieChartSlicerelated to the group of slices.
The WebChartPieChartSlice contains information regarding a slice's id, symbol and label.
slices
Property
- Type
- WebChartPieChartSlice[]
groupedSlices
Property
- Type
- WebChartPieChartSlice[] | undefined
SeriesSymbolsMap
Type definition
Map containing a chart's series symbols. The numeric key is the series' position in the series array. The value is either:
- A fill symbol (bar chart and histogram).
- A marker symbol (scatterplot).
- An object containing a line symbol and a marker symbol (line chart).
- Supertypes
- Map<number‚ SeriesSymbols | undefined>