-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
On the other hand, if you only want to have text, you could also implement your own plugin (probably based on one of the ValueIndicator variants). This should be pretty simple and would give you a lot more influence on how and where everything is rendered. Looking at your screenshot, you seem to want to add labels to data points, for that usecase there is also the |
Beta Was this translation helpful? Give feedback.
setEditable(false)
seems to only affect dragging on the line and not on the label, this is a bug, which we should fix.For not drawing the line, you could use css, check the AbstractSingleValueIndicatorSample for an example of using css to style the indicator.
On the other hand, if you only want to have text, you could also implement your own plugin (probably based on one of the ValueIndicator variants). This should be pretty simple and would give you a lot more influence on how and where everything is rendered.
Looking at your screenshot, you seem to want to add labels to data points, for that usecase there is also the
LabeledMarkerRenderer
, which allows you to add your strings into your…