Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

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;
}


  • No labels