We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24f31f4 commit ab1a5feCopy full SHA for ab1a5fe
src/CanvasJS As CSV.js
@@ -9,8 +9,7 @@
9
function CanvasJSDataAsCSV(chart, fileName) {
10
if (chart.exportEnabled) {
11
var exportCSV = document.createElement('div');
12
- var text = document.createTextNode("Save as CSV");
13
- console.log(chart)
+ var text = document.createTextNode("Save as CSV");
14
exportCSV.setAttribute("style", "padding: 12px 8px; background-color: " + chart.toolbar.backgroundColor + "; color: " + chart.toolbar.fontColor);
15
exportCSV.appendChild(text);
16
exportCSV.addEventListener("mouseover", function () {
0 commit comments