cancel
Showing results for 
Search instead for 
Did you mean: 

Move A Chart Forward/Backward on Dual Axis Charts

abhinavt
8 - Cloud Apps
8 - Cloud Apps

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...

 

abhinavt_0-1730833681925.png

 

Also, glad if there's a way to customize the fonts (size/color) for the Value labels and/or Axis labels.

Thanks,

Abhinav

 

1 ACCEPTED SOLUTION

harikm007
13 - Data Warehouse
13 - Data Warehouse

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!

harikm007_0-1730869581581.gif

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

View solution in original post

1 REPLY 1

harikm007
13 - Data Warehouse
13 - Data Warehouse

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!

harikm007_0-1730869581581.gif

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