Awesome
Learning Apache ECharts
Just one of the things I'm learning. https://github.com/hchiam/learning
https://echarts.apache.org/en/index.html
https://echarts.apache.org/examples/en/editor.html?c=candlestick-simple
https://echarts.apache.org/examples/en/editor.html?c=geo-beef-cuts
https://echarts.apache.org/examples/en/editor.html?c=pie-pattern
https://echarts.apache.org/examples/en/index.html
https://github.com/apache/echarts
Can be rendered in canvas or in SVG, and decal pattern option automatically takes care of bar graph accessibility. https://echarts.apache.org/handbook/en/best-practices/aria/# and https://echarts.apache.org/examples/en/editor.html?c=doc-example%2Faria-decal-simple
option = {
// ...
aria: {
enabled: true,
decal: {
show: true,
},
},
};