abhinavt
11-05-2024Cloud Apps
Move A Chart Forward/Backward on Dual Axis Charts
Hello, Is there a way to bring a chart forward/backward in a dual axis chart? I would like to bring the lines on the below chart forward... Also, glad if there's a way to customize the fo...
- 11-06-2024
Hi abhinavt
You can adjust the order of the chart elements by changing the order of the measures in the dual axis chart. It seems like the bar chart measure is currently listed first, with the line chart measure coming after. To bring the lines forward, you can try dragging the line chart measure to the first position in the values pane. This should place the line chart on top of the bar chart. Let me know if that works!
To change the font size, use below widget script:
widget.on('processresult',function(se,args){ args.result.xAxis.labels.style.fontSize = '25px' args.result.yAxis[0].labels.style.fontSize = '25px' })
To change font Color and background color, refer: https://www.binextlevel.com/post/change-background-and-font-color-of-widgets-in-sisense
Thanks,
Hari