Menu
  • HOME
  • TAGS

How to get available Vaadin Charts for developing

eclipse,charts,widget,vaadin,vaadin-charts

I have found a good Vaadin Tutorial that speaks about widgetset and some addons: If the add-on contains a custom client-side widget, as is the case for most UI component add-ons, it is required to create and compile the widgetset before running the application. When using the 'vaadin-archetype-clean' archetype, you...

Reduce white space within a chart in Vaadin Charts 2

java,vaadin,vaadin7,vaadin-charts

First Orange Box The first orange box is not actually white space within the chart. Or, if it is, I do not know how to change it. Second Orange Box The second orange box is "margin" on the Title element. You can call the setMargin method on the Title object....

vaadin runWhileAttached method

java,runnable,vaadin7,vaadin-charts

Here's the implementation for that: https://github.com/vaadin/charts/blob/7a55e8dab5b9941a05603c2624a576866e86045d/examples/src/main/java/com/vaadin/addon/charts/examples/AbstractVaadinChartExample.java#L29 It summary it puts polling with 1 second intervals, starts a new thread and while the UI still exists (=component is attached to UI), it runs the task and waits for one second....

Styling the titles in Vaadin Charts

java,vaadin,vaadin7,vaadin-charts

Theme The various Theme controlling the look of the charts vary widely in their sizing. The new Valo themes (ValoLightTheme and ValoDarkTheme, matching Vaadin’s new Valo theme) tend to be much larger than the previous default, VaadinTheme (matching Vaadin’s Reindeer theme). So one easy way to change sizes of chart...