Please visit the official Apache ECharts Website at

https://echarts.apache.org
Visit Official Website
x

Download Themes

Change the look of your charts.

You can also make your own theme along with using the themes we provide.

Apache EChartsTM

Image

vintage

Image

dark

Image

macarons

Image

infographic

Image

shine

Image

roma

Theme Builder

Make a custom theme and use it for your charts.

An example of using a theme

<script src="echarts.js"></script>
<!-- import vintage theme -->
<script src="theme/vintage.js"></script>
<script>
// The second parameter is the name of the theme imported
var chart = echarts.init(document.getElementById('main'), 'vintage');
chart.setOption({
    ...
});
</script>