Content updating on event from SplitPanel, when splitter move.. how?

I welcome!

Look at it -
11796.png

At me is HorizontalSplitPanel with the diagramme and options to it. Sense that I form inquiry to external system and depending on returned sample the diagramme takes this or that form.

As classes of diagrammes and schedules I use Invient Charts.

However at divider moving there is no updating of that part of the panel where the diagramme settles down.
The only thing that manual updating of all page helps - or to move a window for outline limits is provokes event to copying.

The
theme
already rose, however the answer I have not waited yet.

How to achieve diagramme updating at divider moving?

Here that we have for a moment -
11797.png

I define the listener thus -


...
HorizontalSplitPanel mainSplit = new HorizontalSplitPanel();
mainSplit.addListener(new ChartRefreshListener(chart));
...

class ChartRefreshListener implements SplitterClickListener {
	private InvientCharts chart;
	
	chartRefreshListener(InvientCharts chart) {
		this.chart = chart; 
	}
	
	public void splitterClick(SplitterClickEvent event) {
		chart.requestRepaint();
		chart.refresh();
	}
}

...

where chart is -


...
        PieConfig pieCfg = new PieConfig();        
        pieCfg.setAllowPointSelect(true);
        pieCfg.setCursor("pointer");        
        pieCfg.setDataLabel(new PieDataLabel());
        pieCfg.getDataLabel().setEnabled(true);
        pieCfg.getDataLabel()
                .setFormatterJsFunc(
                        "function() {"
                                + " return '<b>'+ this.point.name +'</b>: '+ this.y +' %';"
                                + "}");
        
        pieCfg.getDataLabel().setConnectorColor(new RGB(0, 0, 0));        

        chartConfig.addSeriesConfig(pieCfg);

        chart = new InvientCharts(chartConfig);
...
       XYSeries series = new XYSeries("Browser Share");
...
      chart.addSeries(series);
...

However it does not help.

And the listener implements SplitterClickListener.
Whether is SplitterMoveListener?

This seems to be a bug with Invient Charts, see
this message
.

I welcome you, Thomas Mattsson!

Thanks for the reference!