charts icon indicating copy to clipboard operation
charts copied to clipboard

The Style class is missing some properties

Open vaadin-bot opened this issue 8 years ago • 1 comments

Originally by dmitrij.colautti


In the com.vaadin.addon.charts.model.style.Style there aren't two properties that are present in Highcharts: textOverflow and whiteSpace.

The properties are also missing in version 3.1.0 and 3.2 beta.

This is the missing code:

private String textOverflow;
private String whiteSpace;


public String getTextOverflow() {
    return textOverflow;
}

public void setTextOverflow(String textOverflow) {
    this.textOverflow = textOverflow;
}

public String getWhiteSpace() {
    return whiteSpace;
}

public void setWhiteSpace(String whiteSpace) {
    this.whiteSpace = whiteSpace;
}

Imported from https://dev.vaadin.com/ issue #20105

vaadin-bot avatar Aug 02 '16 09:08 vaadin-bot

Originally by dmitrij.colautti


Here you can find a workaround suggested by Guillermo Alvarez

vaadin-bot avatar Aug 02 '16 09:08 vaadin-bot