linwenling
2023-09-26 3e177af9004b9d5d5b5fc9b6c5fb393d6f61b377
1
2
3
4
5
6
7
8
9
10
11
import * as graphic from '../../util/graphic.js';
import type { LineDrawSeriesScope } from './LineDraw.js';
import type SeriesData from '../../data/SeriesData.js';
declare class Polyline extends graphic.Group {
    constructor(lineData: SeriesData, idx: number, seriesScope: LineDrawSeriesScope);
    private _createPolyline;
    updateData(lineData: SeriesData, idx: number, seriesScope: LineDrawSeriesScope): void;
    _updateCommonStl(lineData: SeriesData, idx: number, seriesScope: LineDrawSeriesScope): void;
    updateLayout(lineData: SeriesData, idx: number): void;
}
export default Polyline;