UNPKG

@progress/kendo-charts

Version:

Kendo UI platform-independent Charts library

24 lines (19 loc) 442 B
import DonutSegment from '../donut-chart/donut-segment'; import { setDefaultOptions } from '../../common'; class RadarSegment extends DonutSegment { constructor(value, options) { super(value, null, options); } getIndex() { return this.categoryIx; } } setDefaultOptions(RadarSegment, { overlay: { gradient: "none" }, labels: { distance: 10 } }); export default RadarSegment;