We have updated Flexmonster Software License Agreement, effective as of September 30, 2024. Learn more about what’s changed.

reomve element from chart

Answered
Fabrizio asked on September 7, 2023

Hi,
How can I remove the elements from my chart?
See the attachment
Thanks

3 answers

Public
Nadia Khodakivska Nadia Khodakivska Flexmonster September 8, 2023

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

Public
Fabrizio September 11, 2023

it works very well
Thanks Nadia

Public
Fabrizio September 11, 2023

Some tricks to remove the right click menù on bar and to color bar and sub bar?
Thanks

Nadia Khodakivska created a new ticket #57602 from this answer

Please login or Register to Submit Answer