請造訪 Apache ECharts 官方網站:

https://echarts.dev.org.tw
造訪官方網站
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>