Download Themes
Change the looking of your charts.
You can also make your own theme along with using the themes we provide.
Apache EChartsTM
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>