请访问 Apache ECharts 官方网站:

https://echarts.org.cn
访问官方网站
x

下载主题

更改图表的外观。

您也可以在利用我们提供的主题的同时制作自己的主题。

Apache EChartsTM

复古

深色

马卡龙

信息图

闪耀

罗马

主题构建器

制作自定义主题并将其用于您的图表。

使用主题的示例

<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>