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

Function createListSimply

libs/echarts/echarts.simple.js:42903–42914  ·  view source on GitHub ↗
(seriesModel, opt, nameList)

Source from the content-addressed store, hash-verified

42901 * @return {module:echarts/data/List}
42902 */
42903var createListSimply = function (seriesModel, opt, nameList) {
42904 opt = isArray(opt) && {coordDimensions: opt} || extend({}, opt);
42905
42906 var source = seriesModel.getSource();
42907
42908 var dimensionsInfo = createDimensions(source, opt);
42909
42910 var list = new List(dimensionsInfo, seriesModel);
42911 list.initData(source, nameList);
42912
42913 return list;
42914};
42915
42916/*
42917* Licensed to the Apache Software Foundation (ASF) under one

Callers 1

echarts.simple.jsFile · 0.70

Calls 4

isArrayFunction · 0.70
extendFunction · 0.70
createDimensionsFunction · 0.70
getSourceMethod · 0.45

Tested by

no test coverage detected