Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a custom theme (json,css,qext) working great except for the comboChart. The background color works but nothing else??? I am trying to set the dataPoint (show), the lineThickness, dataPointSize, etc (the properties of the comboChart)
Can anyone help with the correct syntax, please?
"comboChart": {
"backgroundColor": "@dssMauveMid",
"dataPoint": {
"show": true
},
"components": [
{
"key": "line",
"style": {
"dataPointSize": 8,
"lineCurve": "linear",
"lineThickness": 5,
"lineType": "dashed"
}
}
]
}
Your theme setup looks solid, but based on the current custom theme documentation here, it seems there isn’t an option to set detailed ComboChart properties like dataPointSize
or lineThickness
directly in the JSON.
However, you might be able to style these elements using additional CSS overrides as a workaround.