Community Tip - If community subscription notifications are filling up your inbox you can set up a daily digest and get all your notifications in a single email. X
Hi,
I am trying to hide the Line Chart Zoom Range:
I have followed the following CSS from the Article:
CSS:
@supports (ptcs-style-unit: "PTCS-CHART-ZOOM-RANGE")
{
[part = range-picker]
{
display: none !important;
height : 0px;
padding : 0px !important;
}
}
But, this CSS not working, can someone please help.
Thanks,
Solved! Go to Solution.
Hi @Tone ,
Thanks for the Response; for a use case, I want those properties to be enabled but not show on the Dashboard.
Thanks for the CSS it worked successfully:
/*Zoom Range Picker*/
@supports (ptcs-style-unit: "PTCS-CHART-ZOOM") {
[part=range-picker] {
display: none !important;
}
}
Hi,
try the following CSS:
/*Zoom Range Picker*/
@supports (ptcs-style-unit: "PTCS-CHART-ZOOM") {
[part=range-picker] {
display: none !important;
}
}
The zoom range of the chart is also adjustable in the properties:
Hi @Tone ,
Thanks for the Response; for a use case, I want those properties to be enabled but not show on the Dashboard.
Thanks for the CSS it worked successfully:
/*Zoom Range Picker*/
@supports (ptcs-style-unit: "PTCS-CHART-ZOOM") {
[part=range-picker] {
display: none !important;
}
}