You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Like mentioned in the documentation, threshold plugin should also work for bar charts. But currently plugins are only usable for line charts because of missing support for plugins in bar chart.
LineRenderer.java:
if (chart.getPlugins() != null) {
writer.write(",plugins:" + chart.getPlugins());
}
BarRenderer.java:
No part for handling plugins.
Fix should be easy, just add the lines from LineRenderer.java to BarRenderer.java.
The text was updated successfully, but these errors were encountered:
Like mentioned in the documentation, threshold plugin should also work for bar charts. But currently plugins are only usable for line charts because of missing support for plugins in bar chart.
LineRenderer.java:
BarRenderer.java:
No part for handling plugins.
Fix should be easy, just add the lines from LineRenderer.java to BarRenderer.java.
The text was updated successfully, but these errors were encountered: