@progress/kendo-charts
Version:
Kendo UI platform-independent Charts library
30 lines (23 loc) • 766 B
JavaScript
import DonutSegment from '../donut-chart/donut-segment';
import { setDefaultOptions } from '../../common';
var RadarSegment = (function (DonutSegment) {
function RadarSegment(value, options) {
DonutSegment.call(this, value, null, options);
}
if ( DonutSegment ) RadarSegment.__proto__ = DonutSegment;
RadarSegment.prototype = Object.create( DonutSegment && DonutSegment.prototype );
RadarSegment.prototype.constructor = RadarSegment;
RadarSegment.prototype.getIndex = function getIndex () {
return this.categoryIx;
};
return RadarSegment;
}(DonutSegment));
setDefaultOptions(RadarSegment, {
overlay: {
gradient: "none"
},
labels: {
distance: 10
}
});
export default RadarSegment;