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
Vaadin 8.8.6, Charts 4.2.0. The following code prints "Drillup" in the console when you drill up the charts (which means that the listener is called), but the X Axis title is not changed:
chart.addChartDrillupListener(newChartDrillupListener() {
@OverridepublicvoidonDrillup(ChartDrillupEventevent) {
System.out.println("Drillup");
x.setTitle("Changing title on drillup");
}
});
Steps to reproduce:
Click a bar in charts to drill down
Press the "Back to Browser brands" button.
The X Axis title should have been changed to "Changing title on drillup"
Workaround is to force chart redraw in the listener, by calling chart.drawChart(), however that interrupts the drillup animation.
The text was updated successfully, but these errors were encountered:
Vaadin 8.8.6, Charts 4.2.0. The following code prints "Drillup" in the console when you drill up the charts (which means that the listener is called), but the X Axis title is not changed:
Steps to reproduce:
Workaround is to force chart redraw in the listener, by calling
chart.drawChart()
, however that interrupts the drillup animation.The text was updated successfully, but these errors were encountered: