請訪問 Apache ECharts 官方網站:

https://echarts.apache.tw
訪問官網
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>