Hi Alib,
Happy to hear that this plugin is helpful!
The original Sisense customer that this plugin was developed for had previously hidden the entire widget icon menu via custom plugin CSS for all users, so it was not part of the original plugin functionality.
It is possible to hide the icon for all users (not group specific) by using standard CSS rules applied by a plugin, including this plugin.
Modifying the plugin.json file of this plugin replacing the empty style attribute array with the name and file path of a CSS file or files present in the plugin folder:
"style": [
"style.css"
],
Then creating a CSS file in the folder matching the file name and path (in this case style.css in the main plugin folder), any standard CSS rules can be applied.
In the latest version of Sisense the area chart icon icon can be removed from the new chart icon bar with the following CSS rule:
/* Hide Area Chart icon in new widget menu*/
.widget-type-wrapper[title="Area Chart"] {
display : none !important;
}
If you would like to share your email via a private Community message a Google Drive link with those specific CSS changes applied to the plugin can be shared.