@progress/kendo-charts
Version:
Kendo UI platform-independent Charts library
24 lines (16 loc) • 781 B
JavaScript
import ScatterLineChart from '../scatter-charts/scatter-line-chart';
import PolarScatterChart from '../polar-scatter-chart/polar-scatter-chart';
import { setDefaultOptions } from '../../common';
var PolarLineChart = (function (ScatterLineChart) {
function PolarLineChart () {
ScatterLineChart.apply(this, arguments);
}if ( ScatterLineChart ) PolarLineChart.__proto__ = ScatterLineChart;
PolarLineChart.prototype = Object.create( ScatterLineChart && ScatterLineChart.prototype );
PolarLineChart.prototype.constructor = PolarLineChart;
return PolarLineChart;
}(ScatterLineChart));
PolarLineChart.prototype.pointSlot = PolarScatterChart.prototype.pointSlot;
setDefaultOptions(PolarLineChart, {
clip: false
});
export default PolarLineChart;