TrendChartComponent
A component to show time series based trend or line visualizations
Installation
Examples
Properties
data
ITrendSeries[]
The series to plot. More than one can be visualized.
onShowTooltip
(data: any) => JSX.Element
Use this to render a custom tooltip that will appear when the user hovers over a data point. The data being hovered over is passed as a parameter.
onClick
(data: any) => JSX.Element
Called whenever a data point is clicked on. The data point being clicked on is passed as a parameter to the function
data
The series to plot. More than one can be visualized.
ITrendSeries[]
onShowTooltip
Use this to render a custom tooltip that will appear when the user hovers over a data point. The data being hovered over is passed as a parameter.
(data: any) => JSX.Element
onClick
Called whenever a data point is clicked on. The data point being clicked on is passed as a parameter to the function
(data: any) => JSX.Element
Last updated