Using FusionCharts with Vue 2 has been smooth sailing so far. However, I am aiming to make my charts have a completely transparent background to allow the underlying component's background color to shine through. Despite experimenting with different values for bgColor
and bgAlpha
in my chart settings, I haven't been able to achieve the desired effect. Any suggestions on how to make this happen? Below is a snippet of my chart object:
data2Src() {
return {
chart: {
caption: "Total User Count",
subcaption: "",
xaxisname: "User Groups",
yaxisname: "Number of users",
bgColor: "#DDDDDD",
bgAlpha: "0",
theme: "gammel"
},
data: this.chart2Data
};
Screenshot: https://i.sstatic.net/51x69.png