Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Intelligence (Analytics)
hide series symbol in legend
mh10
Hi,
how to hide series symbol in chart Legend. but the related report element will be displayed on chart, just in legend i don't want display it's symbol & title.
right now by making blank in series name, it doesn't show its Title, but it shows its Symbol. How to hide its symbol?
Any suggestions?
Thanks
Thanks
Find more posts tagged with
Comments
bhanley
It sounds like you do not want to show the legend at all given that you have used a blank series name and now you are trying to hide the symbol.
On the chart format tab, click on "Legend" on the left side. Then un-check the "visible" check box. This will remove the legend entirely.
mh10
No, i don't want to completly hide the legend, i just wanted to hide some particular symbols from the legend.
here is the script i found for that:
if( lerh.getLabel().getCaption().getValue().compareToIgnoreCase("Series 1") == 0 ){
bounds.setHeight(0);
bounds.setWidth(0);
lerh.getLabel().setVisible(false);
}
so this will hide 'Series 1' related symbol from the legend
Thanks