(seriesModel, opt, nameList)
| 42901 | * @return {module:echarts/data/List} |
| 42902 | */ |
| 42903 | var 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 |
no test coverage detected