Hi, our goals are to
1) hide legend rectangle line (e.g. using color="#ffffff")
2) show scatter lines without shadow.
3) frequently actualize the chart data in extra function (this demo contains it in the same function)
So I’ve extended the enterprise showcase ScatterPlotChart with an update function, called as updateChart(chart); before creating layout.
It works as shown in attached png. But there are some error rows in log about exceptions, what is wrong please?
[ERROR] [client] - 12:49:46.714:KUP4:WARN:Log:ClassFactory.addGlobalID: ID:'isc_DrawRect_1' for object '[DrawRect ID:isc_DrawRect_1]' collides with ID of existing object '[DrawRect ID:isc_DrawRect_1]'. The global reference to this object will be replaced
[ERROR] [client] - 12:49:46.939:KUP4:WARN:Log:ClassFactory.addGlobalID: ID:'isc_DrawLine_1' for object '[DrawCurve ID:isc_DrawLine_1]' collides with ID of existing object '[DrawLine ID:isc_DrawLine_1]'. The global reference to this object will be replaced
Downloaded trial version for EE Charting:
SmartGWT Version: 4.0p BuildDate: Mon Dec 02 19:51:00 CET 2013
Regards
Béla
PS: Isomorphic! Thank you very much for the useful answers, tips and bug fixes for my previous questions.
After development based on following threads we are testing now these: 28652, 28473, 28246. So I can post about our results respectively later.
1) hide legend rectangle line (e.g. using color="#ffffff")
2) show scatter lines without shadow.
3) frequently actualize the chart data in extra function (this demo contains it in the same function)
So I’ve extended the enterprise showcase ScatterPlotChart with an update function, called as updateChart(chart); before creating layout.
Code:
private void updateChart(FacetChart chart) { DrawRect rect = new DrawRect(); rect.setLineColor("#ffffff"); chart.setLegendSwatchProperties(rect); DrawLine line = chart.getDataLineProperties(); line.setShadow(new Shadow()); chart.setDataLineProperties(line); chart.setData(ScatterPlotChartData.getData()); //We would like to change our data later. }
[ERROR] [client] - 12:49:46.714:KUP4:WARN:Log:ClassFactory.addGlobalID: ID:'isc_DrawRect_1' for object '[DrawRect ID:isc_DrawRect_1]' collides with ID of existing object '[DrawRect ID:isc_DrawRect_1]'. The global reference to this object will be replaced
[ERROR] [client] - 12:49:46.939:KUP4:WARN:Log:ClassFactory.addGlobalID: ID:'isc_DrawLine_1' for object '[DrawCurve ID:isc_DrawLine_1]' collides with ID of existing object '[DrawLine ID:isc_DrawLine_1]'. The global reference to this object will be replaced
Downloaded trial version for EE Charting:
SmartGWT Version: 4.0p BuildDate: Mon Dec 02 19:51:00 CET 2013
Regards
Béla
PS: Isomorphic! Thank you very much for the useful answers, tips and bug fixes for my previous questions.
After development based on following threads we are testing now these: 28652, 28473, 28246. So I can post about our results respectively later.
Comment