Need a special offer?Find out if your project fits.
+

Disabled header

Resolved
Djilan asked on August 14, 2020

Hello, is it possible to disable this area (in red) without css ?

Attachments:
disabled-zone.PNG

1 answer

Public
Illia Yatsyshyn Illia Yatsyshyn Flexmonster August 21, 2020

Hello,
 
Thank you for reaching out to us.
 
The mentioned area will be hidden in case both filter dropdown and measures dropdown are hidden.
It can be achieved using showMeasures and showFilter properties of the chart object. In its turn, the chart object is a property of the Options Object.
Please set values of the mentioned properties to false, as demonstrated below:

options: {
...
chart: {
showMeasures: false,
showFilter: false
}
}

 
You are welcome to check out the example we have prepared in order to demonstrate the described approach.
 
We hope it works for your case.
 
Best regards,
Illia

Please login or Register to Submit Answer