Vaadin Charts ChartOptions client implementation missing

Hi

I am doing some experiments with Vaadin Charts addon using Vaadin 6.8.12 and after compilng the widgetset and adding ChartOptions to the window i get the following error:


Widgetset does not contain implementation for com.vaadin.addon.charts.ChartOptions. Check its @ClientWidget mapping, widgetsets GWT module description file and re-compile your widgetset. In case you have downloaded a vaadin add-on package, you might want to refer to add-on instructions. Unrendered UIDL:
-Unrendered UIDL
-com.vaadin.addon.charts.ChartOptions(NO CLIENT IMPLEMENTATION FOUND) id=PID77 json={"colors":["#2f7ed8","#0d233a","#8bbc2...

Looking at widgetset compilation output I can see no ChartOptions implementation, but I can see com.vaadin.addon.charts.Chart. All charting tests done work great, but I cannot apply any style without ChartOptions. What I am doing wrong?

Thanks in advance.

Old topic…

I had this error too. Forget ChartOptions (for vaadin 6)

My scope is to change thousand separator to ‘.’ and decimal point to ‘,’.
I solved with this line below. You just need to put after attach your window.

getWindow().executeJavaScript(
                "Highcharts.setOptions({"
                + "lang: {decimalPoint:',',"
                + "       thousandsSep:'.'"
                + "      }"
                + "})");

Hii
I am working on Vaadin chart but I am getting only black div with chart headding. I refer following site code.
any budy help me.

https://vaadin.com/charts-for-polymer#

Have you tried codePen examples? Are they working? What browser are you using?
https://vaadin.com/charts-for-polymer# refers to alpha9, though the latest version is rc1, but the codePen examples have the latest version of Vaadin Charts used.