Currently, I am attempting to achieve a transparent background for a time-series chart created with FusionCharts. Despite trying the standard attributes that usually work on other chart types and even hardcoding a background color, none of these seem to affect the time-series chart. My searches through the documentation have also been fruitless in finding a solution specific to this chart type. Is there a way to make the background transparent, perhaps using a CSS workaround? Upon inspecting the chart svg, I noticed that the opacity of all elements within it is listed as "undefined."
For example:
<rect transform="matrix(1,0,0,1,0,0)" height="150" width="403" fill="#ffffff" opacity="undefined"></rect>
chart: {
bgColor: "#1d1b41",
bgAlpha: "0",
canvasBgAlpha: "0"
}
View the code sandbox here: time-series chart