|
@@ -412,6 +412,7 @@ function generatePieChart(dataArray) {
|
|
|
pieSeries.hiddenState.properties.startAngle = -90;
|
|
|
|
|
|
// console.log('調位置')
|
|
|
+ downloadButton.style.display = "inline-block";
|
|
|
}
|
|
|
|
|
|
// 柱狀圖
|
|
@@ -533,6 +534,8 @@ function generateBarChart(key, dataArray) {
|
|
|
}
|
|
|
lineSeries.data = bottomData;
|
|
|
|
|
|
+ downloadButton.style.display = "inline-block";
|
|
|
+
|
|
|
// 底部線條
|
|
|
// let rectElements = document.querySelectorAll("rect");
|
|
|
// // let widthValue = 0;
|
|
@@ -564,6 +567,7 @@ function generateBarChart(key, dataArray) {
|
|
|
|
|
|
|
|
|
var downloadButton = document.getElementById("downloadButton");
|
|
|
+// downloadButton.style.display = 'none';
|
|
|
|
|
|
// 添加點擊事件監聽器
|
|
|
downloadButton.addEventListener('click', function () {
|
|
@@ -1098,7 +1102,9 @@ function createChart(chartType, data, labels) {
|
|
|
|
|
|
bgImgelement.style.backgroundImage = chart_bgimg_url;
|
|
|
|
|
|
- chartWhitelement.style.background = "rgba(255,255,255,0.5)"
|
|
|
+ chartWhitelement.style.background = "rgba(255,255,255,0.5)";
|
|
|
+
|
|
|
+ downloadButton.style.display = "inline-block";
|
|
|
}
|
|
|
|
|
|
// createChart(chartType);
|