Activity for Joanna

  • Joanna Joanna posted a comment on discussion General Discussion

    I also noticed that after invoking series.setPoints(Point[]) in this way (when it is called second or later time), series.getPoints() returns an empty array.

  • Joanna Joanna posted a comment on discussion General Discussion

    Hi, I'm, coming back to this issue, as it seems that in another plot I do need the update() method. I set points as before (series.setPoints(Point [])) and would like to additionally change the series name - which should be updated in the legend. Without the update() method, the legend displays old series name, and with update(), the plot itself doesn't update...

  • Joanna Joanna modified a comment on discussion General Discussion

    It seems that without the update() method it works. Thanks,

  • Joanna Joanna posted a comment on discussion General Discussion

    It seems that without the update() method it works. Thanks, Joanna

  • Joanna Joanna modified a comment on discussion General Discussion

    Sorry for the late reply, but I haven't noticed your answer until today. Taking the relevant part from my code, it looks like the example below: This works: Series histogramSeries = this.getSeries(histogramSeriesID); for (Point p : histogramSeries.getPoints()) { histogramSeries.removePoint(p, false, false); } for (Point p : points) { histogramSeries.addPoint(p, false, false, false); } histogramSeries.update(histogramSeries); This doesn't work (works only once): Series histogramSeries = this.getSeries(histogramSeriesID);...

  • Joanna Joanna posted a comment on discussion General Discussion

    Sorry for the late reply, but I haven't noticed your answer until today. Taking the relevant part from my code, it looks like the example below: This works: Series histogramSeries = this.getSeries(histogramSeriesID); for (Point p : histogramSeries.getPoints()) { histogramSeries.removePoint(p, false, false); } for (Point p : points) { histogramSeries.addPoint(p, false, false, false); } histogramSeries.update(histogramSeries); This doesn't work (works only once): Series histogramSeries = this.getSeries(histogramSeriesID);...

  • Joanna Joanna posted a comment on discussion General Discussion

    I use a chart with one series which I need to update with different points on user's...

  • Joanna Joanna posted a comment on discussion General Discussion

    I noticed that the API doesn't support passing a null value as categories parameter...

  • Joanna Joanna posted a comment on discussion General Discussion

    I have a widget where I can dynamically change the type of the series within the...

  • Joanna Joanna posted a comment on discussion CTA Community

    Are there any updates on the work on the new VM? Cheers, Joanna

  • Joanna Joanna posted a comment on discussion CTA Community

    Hi Eva, Thanks for the guide. Michal was checking it, but it doesn't work well with...

1