UNPKG

realmap

Version:

Wooritech map chart component library

29 lines (25 loc) 948 B
import * as RealMap from 'realmap'; import { MarkerSeries, BandSeriesOptions, MarkerSeriesPoint, PointViewPosition, ISeries } from 'realmap'; /** */ declare class BandSeriesPoint extends MarkerSeriesPoint { position: PointViewPosition; protected _readObject(series: ISeries<BandSeriesPoint>, v: any): void; } /** * Band 시리즈 모델.<br/> * {@page op.SeriesOptions#type}은 {@page config.series.band 'band'}이고, * {@page options 설정} 모델은 {@page op.BandSeriesOptions}이다. * * @modules band */ declare class BandSeries extends MarkerSeries<BandSeriesOptions> { static type: string; static defaults: BandSeriesOptions; private _root; protected _doApply(options: BandSeriesOptions): void; protected _createPoint(source: any): BandSeriesPoint; protected _defLabelOff(): number; } declare function registerSeries(chart: typeof RealMap): void; export { BandSeries, registerSeries as default };