New to KendoReact? Start a free 30-day trial
SeriesType
SeriesTypePremium
jsx
import {
Chart,
ChartSeries,
ChartSeriesItem
} from '@progress/kendo-react-charts';
const data = [1, 2, 3];
const seriesType = "verticalLine";
const ChartContainer = () => (
<Chart>
<ChartSeries>
<ChartSeriesItem type="line" data={data} type={seriesType} />
</ChartSeries>
</Chart>
);
type
SeriesType = "area" | "bar" | "boxPlot" | "bubble" | "bullet" | "candlestick" | "column" | "donut" | "exponentialTrendline" | "funnel" | "pyramid" | "heatmap" | "horizontalWaterfall" | "line" | "linearTrendline" | "logarithmicTrendline" | "movingAverageTrendline" | "ohlc" | "pie" | "polarArea" | "polarLine" | "polarScatter" | "polynomialTrendline" | "powerTrendline" | "radarArea" | "radarColumn" | "radarLine" | "rangeArea" | "rangeBar" | "rangeColumn" | "scatter" | "scatterLine" | "verticalArea" | "verticalBoxPlot" | "verticalBullet" | "verticalLine" | "verticalRangeArea" | "waterfall";