MCPcopy Index your code
hub / github.com/SuperMap/iClient-JavaScript / getConfig

Function getConfig

libs/echarts/echarts.simple.js:25368–25381  ·  view source on GitHub ↗
(path)

Source from the content-addressed store, hash-verified

25366 }
25367
25368 function getConfig(path) {
25369 var userConfig = ariaModel.get(path);
25370 if (userConfig == null) {
25371 var pathArr = path.split('.');
25372 var result = lang.aria;
25373 for (var i = 0; i < pathArr.length; ++i) {
25374 result = result[pathArr[i]];
25375 }
25376 return result;
25377 }
25378 else {
25379 return userConfig;
25380 }
25381 }
25382
25383 function getTitle() {
25384 var title = ecModel.getModel('title').option;

Callers 1

ariaFunction · 0.70

Calls 1

getMethod · 0.45

Tested by

no test coverage detected