Hi,
How can I remove the elements from my chart?
See the attachment
Thanks
Hello Fabrizio,
Thank you for reaching out to us.
The chart UI elements from your screenshot can be removed using the following properties of the Options object:
options: {
viewType: "charts",
configuratorButton: false,
chart: {
type: "bar_h",
showFilter: false,
showMeasures: false,
}
}
Regarding the axis labels, Flexmonster does not provide an option that would allow hiding such labels. However, it is possible to hide them using CSS:
.fm-axis.fm-title {
display: none;
}
You are welcome to check the following JSFiddle for reference: https://jsfiddle.net/flexmonster/snc035ax/
Please let us know if it works for you. Looking forward to hearing from you.
Kind regards,
Nadia
it works very well
Thanks Nadia
Some tricks to remove the right click menù on bar and to color bar and sub bar?
Thanks