What problem does this feature solve?
when I use use api to regist components, I want to know that is a specific components is registed? In other words, I want to get a colleaction about registed components
What does the proposed API look like?
// return an array that contains component type such as ['bar']
ECharts.getRegistedChart()
// ['svg']
ECharts.getRegistedRenderer()
// ['title','dataset']
ECharts.getRegistedComponents()
// or more specific api to know is it registed
// true: registed;false unregisted
ECharts.isBarChartRegisted()
What problem does this feature solve?
when I use
useapi to regist components, I want to know that is a specific components is registed? In other words, I want to get a colleaction about registed componentsWhat does the proposed API look like?