MCPcopy Index your code
hub / github.com/apache/echarts / getValues

Method getValues

src/data/SeriesData.ts:811–816  ·  view source on GitHub ↗
(dimensions: readonly DimensionName[] | number, idx?: number)

Source from the content-addressed store, hash-verified

809 getValues(idx: number): ParsedValue[];
810 getValues(dimensions: readonly DimensionName[], idx: number): ParsedValue[];
811 getValues(dimensions: readonly DimensionName[] | number, idx?: number): ParsedValue[] {
812 const store = this._store;
813 return zrUtil.isArray(dimensions)
814 ? store.getValues(map(dimensions, dim => this._getStoreDimIndex(dim)), idx)
815 : store.getValues(dimensions as number);
816 }
817
818 /**
819 * If value is NaN. Including '-'

Callers

nothing calls this directly

Calls 1

_getStoreDimIndexMethod · 0.95

Tested by

no test coverage detected