UNPKG

@progress/kendo-charts

Version:

Kendo UI platform-independent Charts library

15 lines (10 loc) 412 B
import ScatterLineChart from '../scatter-charts/scatter-line-chart'; import PolarScatterChart from '../polar-scatter-chart/polar-scatter-chart'; import { setDefaultOptions } from '../../common'; class PolarLineChart extends ScatterLineChart { } PolarLineChart.prototype.pointSlot = PolarScatterChart.prototype.pointSlot; setDefaultOptions(PolarLineChart, { clip: false }); export default PolarLineChart;