fother
25 Jun 2009, 8:13 AM
in BarDataProvider in gxt-2.0-rc1 was added the code below to evict the null pointer (line 51)
if (n == null) {
n = 0;
}
work fine..
but about LineDataProvider?
I believe that the behaviour of the chart should be like Google Visualization API, if you pass one value that its null.. the default value equals 0
:)
if (n == null) {
n = 0;
}
work fine..
but about LineDataProvider?
I believe that the behaviour of the chart should be like Google Visualization API, if you pass one value that its null.. the default value equals 0
:)