cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - You can subscribe to a forum, label or individual post and receive email notifications when someone posts a new topic or reply. Learn more! X

Line Chart - Zoom Reset

LP_10027711
14-Alexandrite

Line Chart - Zoom Reset

Hello. When i enable zoom in the Line chart, the "Reset" button shows up by default. is there a way to not have the reset button and use an external button for resetting the zoom?

LP_10027711_0-1653409213285.png

 

ACCEPTED SOLUTION

Accepted Solutions

Hi @LP_10027711,

 

I'm curious why you want to use a custom reset button instead of the default one.

You can use LabelReset property of the Line Chart to change the default text if you want by the way.

 

From the graph looks like you enabled DragSelectionZoom (no slider, no range selection). I tried it in 9.3.0 and could use below custom CSS to not display the reset button (whether the custom css works may differ from TWX version and browser)

 

ptcs-chart-line::part(zoom-xaxis){
    display: none;
}
 

Then you can create a button widget on your own, bind the Clicked event to ResetToDefaultValue service of the Line Chart should to do the reset trick.

Tony

View solution in original post

2 REPLIES 2

Hi @LP_10027711,

 

I'm curious why you want to use a custom reset button instead of the default one.

You can use LabelReset property of the Line Chart to change the default text if you want by the way.

 

From the graph looks like you enabled DragSelectionZoom (no slider, no range selection). I tried it in 9.3.0 and could use below custom CSS to not display the reset button (whether the custom css works may differ from TWX version and browser)

 

ptcs-chart-line::part(zoom-xaxis){
    display: none;
}
 

Then you can create a button widget on your own, bind the Clicked event to ResetToDefaultValue service of the Line Chart should to do the reset trick.

Tony
LP_10027711
14-Alexandrite
(To:TonyZhang)

This worked perfectly!! thank you!

Announcements


Top Tags