/
Hiding a Series' Element Labels

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 content

LabelPositioningMode
LabelPositioningMode
More like this
Displaying only the First and Last Element Label
Displaying only the First and Last Element Label
More like this
Element-Labels einer Serie ausblenden
Element-Labels einer Serie ausblenden
More like this
Category Labels Depending on Data Selection
Category Labels Depending on Data Selection
More like this
Hiding Table Elements
Hiding Table Elements
More like this