Please visit the official Apache ECharts Website at

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

Download Themes

Change the looking of your charts.

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

Apache EChartsTM

vintage

dark

macarons

infographic

shine

roma

Theme Builder

Make a custom theme and use it for your charts. Currently, this tool has Chinese version only.

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>