MCPcopy
hub / github.com/apache/echarts / get

Method get

src/model/Model.ts:109–118  ·  view source on GitHub ↗
(path: string | readonly string[], ignoreParent?: boolean)

Source from the content-addressed store, hash-verified

107 // TODO: TYPE strict key check?
108 // get(path: string | string[], ignoreParent?: boolean): ModelOption;
109 get(path: string | readonly string[], ignoreParent?: boolean): ModelOption {
110 if (path == null) {
111 return this.option;
112 }
113
114 return this._doGet(
115 this.parsePath(path),
116 !ignoreParent && this.parentModel
117 );
118 }
119
120 getShallow<R extends keyof Opt>(
121 key: R, ignoreParent?: boolean

Callers 15

setDefaultFunction · 0.95
layOutUnitsOnDimensionFunction · 0.95
jquery.min.jsFile · 0.45
util.jsFile · 0.45
getData0Function · 0.45
getData0Function · 0.45
countModelFunction · 0.45
SeriesData.test.tsFile · 0.45
renderMethod · 0.45
_updateLineDrawMethod · 0.45
_showEffectMethod · 0.45

Calls 2

_doGetMethod · 0.95
parsePathMethod · 0.95

Tested by 3

getData0Function · 0.36
getData0Function · 0.36
countModelFunction · 0.36