How to remove the text "Vaadin Charts" from the generated charts?

There are texts “Vaadin charts” at the bottom of all the generated charts. Is there a way to remove those text? BTW, We have purchased commercial license and it is been installed on the server.

Many thanks.

Found the solution myself. Use configuration.disableCredits();

cheers.

Grrr. I have a paid license and took me until I found this to figure out why the watermark was not going away. thx.

Thanks, this worked for me as well!

Hi,

Interesting, I was also under the impression that installing the license would automatically disable the credits, which is a reasonable expectation, but apparently it doesn’t.

Good that you found the solution.

Created
ticket #13474
about this.

Configuration config = pieChart.getConfiguration();
config.disableCredits();

Thanks
Lin Ma
, this worked for me as well!