My Chart listeners don't get called on PIE ChartType

I’m creating either a BAR chart or a PIE chart based on user input. I assigned a PointClickListener to the chart and the listener does get called for BAR, but not for PIE?! I tried adding a couple other listeners - ChartClickListener and ChartSelectionListener, but none seem to get called for my PIE chart :frowning:
What am I missing here? I’m a newbie and the Vaadin 7 book on Charts (Chapter 19) doesn’t give any good directions on the subject. Any info is much appreciated.

Hi,

Looks like you have found a regression. I created a ticket about this and fixed it right away. If you wish to test with a patched version before bugfix release, let me know and I can build one for you.

http://dev.vaadin.com/ticket/12093#comment:1

cheers,
matti

Hi Matti,
Thanks for fixing the bug. Is the bug fix release scheduled anytime soon? If not, I’d be very interested in testing a patched version.

Ping - how do I get hold of the patched version? It’s been a week and I need this to work in order to get something done in my app. Thanks.

Hi,

A fresh snapshot build is available at:
https://dl.dropboxusercontent.com/u/4041822/vaadinstuff/vaadin-charts-1.1.2-SNAPSHOT.jar

If you wish to build it yourself (might be more fluent if you have maven based build system) instructions available in this ticket:
http://dev.vaadin.com/ticket/12129#comment:2

1.1.2 has no date set, but within week or two. Rather cheap to do it for us as it is just a bug fix release.

cheers,
matti

Any update on when 1.1.2 will be released? I waited a month or two ;-), but the web site still just lists 1.1.1. The snapshot build was fine during my development phase, but for our product testing and release, I need an “official” release.

Hi,

The 1.1.2 release has been available from the Directory quite some time now:
https://vaadin.com/directory#addon/vaadin-charts

The marketing website version apparently has static version and the team updating that has been on summer vacation. Sorry for inconvenience.

__
cheers,
matti

Hi Matt,
I actually discovered that 1.1.2 was available just yesterday. I installed the jar file into my project right away - but my ChartSelectionListener still doesn’t get called :frowning: Did I need to do more than simply replace the old chart jar with the new one? I’m running Vaadin 7.05 and the chart i’m “listening” to is displayed in a Window - in case that makes any difference.

Thanks again for any suggestions/info,
tom

Hi,

You should also recompile your widgetset. mvn clean package should do the job.

cheers,
matti

Thanks Matti, that did the trick.
Tom