shivamsriva31093 edited a comment on issue #10153: Y Axis values are displayed but the graph does not appear URL: https://github.com/apache/incubator-echarts/issues/10153#issuecomment-481217009 Hi. I filtered the echart.js file in minimizer so that it does not get minified/compressed in production build and it works fine. The following method was returning undefined: ``` function makeCategoryLabelsActually(axis, labelModel) { var labelsCache = getListCache(axis, 'labels'); var optionLabelInterval = getOptionCategoryInterval(labelModel); -----> var result = listCacheGet(labelsCache, **optionLabelInterval); if (result) { return result; } . . . function listCacheGet(cache, key) { for (var i = 0; i < cache.length; i++) { if (cache[i].key === key) { -----> return cache[i].value; } } } ```
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
