请访问 Apache ECharts 官方网站

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

下载主题

改变图表的外观。

您还可以使用我们提供的主题来制作自己的主题。

Apache EChartsTM

vintage

dark

macarons

infographic

shine

roma

主题生成器

制作一个自定义主题并将其用于图表。

使用主题的一个示例

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