Hello i have a bar chart in Chartfactor Studio and i want to change the label showed in the X axis for the group, but not in the tooltip, how can do this?, this is how my chart looks like:
There is a way to do that using the axis config, look at the documentation for the axis label config , just switch to code and follow this example:
...
let myChart = myData.graph("Bars")
.set("grid", grid)
.set("xAxis", { label: "My Custom Label", labelGap: 25 }) // here you can set your label and some spacing for it
.set("color", color)
.execute();