UNPKG

realmap

Version:

Wooritech map chart component library

29 lines (25 loc) 1.08 kB
import * as RealMap from 'realmap'; import { MarkerSeries, TableSeriesOptions, MarkerSeriesPoint, PointViewPosition, ISeries } from 'realmap'; /** */ declare class TableSeriesPoint extends MarkerSeriesPoint { position: PointViewPosition; protected _readObject(series: ISeries<TableSeriesPoint>, v: any): void; } /** * Table 시리즈 모델.<br/> * {@link https://realmap.co.kr/docs/api/options/SeriesOptions#type type}은 {@link https://realmap.co.kr/config/config/series/table table}이고, * {@link options 설정} 모델은 {@link https://realmap.co.kr/docs/api/options/TableSeriesOptions TableSeriesOptions}이다. * * @modules table */ declare class TableSeries extends MarkerSeries<TableSeriesOptions> { static type: string; static defaults: TableSeriesOptions; private _root; protected _doApply(options: TableSeriesOptions): void; protected _createPoint(source: any): TableSeriesPoint; protected _defLabelOff(): number; } declare function registerSeries(chart: typeof RealMap): void; export { TableSeries, registerSeries as default };