Hiding a Series' Element Labels
This article shows how to hide all element labels of a single data series of the graphomate charts using CSS.
Step-by-Step-Guide
To hide a series's element labels you can use the following CSS snippet. You only have to change the component selector (GRAPHOMATECHART_1) and the 1-based index of the preferred series (nth-child(i)).
#GRAPHOMATECHART_1_control g.GraphomateLayer[name="BarLabelsLayer"] :nth-child(1) /*series index*/ .barLabels{ display: none !important; }
Related Articles