chart-fx
chart-fx copied to clipboard
AbstractValueIndicator: prevent label editing when setEditable(false)
- Affects XValueIndicator, YValueIndicator, YWatchValueIndicator
Workaround available:
final XValueIndicator xIndicator = new XValueIndicator(xAxis, xValue, label) {
{
label.setOnMouseClicked(null);
}
};
xIndicator.setEditable(false);
chart.getPlugins().add(xIndicator);
Quality Gate passed
Issues
0 New issues
0 Accepted issues
Measures
0 Security Hotspots
0.0% Coverage on New Code
0.0% Duplication on New Code