DashType
The dash line type.
import {
Chart,
ChartSeries,
ChartSeriesItem
} from '@progress/kendo-react-charts';
const data = [1, 2, 3];
const ChartContainer = () => (
<Chart>
<ChartSeries>
<ChartSeriesItem type="line" data={data} dashType="dot" />
</ChartSeries>
</Chart>
);
ReactDOM.render(
<ChartContainer />,
document.querySelector('my-app')
);
type
DashType = "dash" | "dashDot" | "dot" | "longDash" | "longDashDot" | "longDashDotDot" | "solid";