UNPKG

@progress/kendo-charts

Version:

Kendo UI platform-independent Charts library

13 lines (10 loc) 345 B
import LineSegment from './line-segment'; import StepLineMixin from './step-line-mixin'; import { deepExtend } from '../../common'; class StepLineSegment extends LineSegment { points() { return this.calculateStepPoints(this.linePoints); } } deepExtend(StepLineSegment.prototype, StepLineMixin); export default StepLineSegment;