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)).
Code Block |
---|
|
#GRAPHOMATECHART_1_control
g.GraphomateLayer[name="BarLabelsLayer"]
:nth-child(1) /*series index*/
.barLabels{
display: none !important;
} |
Related Articles
Filter by label (Content by label) |
---|
showLabels | false |
---|
max | 5 |
---|
spaces | KUNDEN |
---|
showSpace | false |
---|
sort | modified |
---|
reverse | true |
---|
type | page |
---|
cql | label in ("css","element_labels","charts") and type = "page" and space = "KUNDEN" |
---|
labels | element_labels css charts |
---|
|
...