realmap
Version:
Wooritech map chart component library
29 lines (25 loc) • 962 B
TypeScript
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/>
* {@page op.SeriesOptions#type}은 {@page config.series.table 'table'}이고,
* {@page options 설정} 모델은 {@page op.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 };