# Interface ChartProps
Props shared across Chart components.
# Extends
BaseChartProps
# Properties
# Data
# dataSet
dataSet?:
string
|Data
Data set for this chart, which supports two options:
(1) Data source name (as a string
) - e.g. Sample ECommerce
. Under the hood,
the chart will have an internal ExecuteQuery connect to the data source
and load the data as specified in dataOptions, filters, and highlights.
OR
(2) Explicit Data, which is made up of an array of columns and a two-dimensional array of data cells. This allows the chart component to be used with user-provided data.
If neither option is specified,
the chart will use the defaultDataSource
specified in the parent SisenseContextProvider component.
# Inherited from
BaseChartProps.dataSet
# filters
filters?:
Filter
[]
Filters that will slice query results
# Inherited from
BaseChartProps.filters
# highlights
highlights?:
Filter
[]
Highlight filters that will highlight results that pass filter criteria
# Inherited from
BaseChartProps.highlights
# Chart
# chartType
chartType:
ChartType
Default chart type of each series.
# dataOptions
dataOptions:
ChartDataOptions
Configurations for how to interpret and present data passed to the chart.
# styleOptions
styleOptions?:
StyleOptions
Style options union across chart types.
# Callbacks
# onBeforeRender
onBeforeRender?:
BeforeRenderHandler
Before render handler callback that allows adjusting detail chart options prior to render
This callback is not yet supported for IndicatorChart
# Inherited from
BaseChartProps.onBeforeRender
# onDataPointClick
onDataPointClick?:
DataPointEventHandler
Click handler callback for a data point
# Inherited from
BaseChartProps.onDataPointClick
# onDataPointContextMenu
onDataPointContextMenu?:
DataPointEventHandler
Context menu handler callback for a data point
# Inherited from
BaseChartProps.onDataPointContextMenu
# onDataPointsSelected
onDataPointsSelected?:
DataPointsEventHandler
Handler callback for selection of multiple data points
# Inherited from
BaseChartProps.onDataPointsSelected