We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.flow.component.charts.model.
Class Credits
- java.lang.Object
-
- com.vaadin.flow.component.charts.model.AbstractConfigurationObject
-
- com.vaadin.flow.component.charts.model.Credits
-
All Implemented Interfaces:
public class Credits extends AbstractConfigurationObject
Highchart by default puts a credits label in the lower right corner of the chart. This can be changed using these options.
See Also:
-
-
Constructor Summary
Constructors Constructor and Description Credits()
Credits(Boolean enabled)
Credits(String text)
-
Method Summary
All Methods Modifier and Type Method and Description Boolean
getEnabled()
String
getHref()
Position
getPosition()
String
getText()
void
setEnabled(Boolean enabled)
Whether to show the credits text.
void
setHref(String href)
The URL for the credits label.
void
setPosition(Position position)
Position configuration for the credits label.
void
setText(String text)
The text for the credits label.
-
-
-
Constructor Detail
-
Credits
public Credits()
-
Credits
public Credits(Boolean enabled)
-
Credits
public Credits(String text)
-
-
Method Detail
-
getEnabled
public Boolean getEnabled()
See Also:
-
setEnabled
public void setEnabled(Boolean enabled)
Whether to show the credits text.
Defaults to: true
-
getHref
public String getHref()
See Also:
-
setHref
public void setHref(String href)
The URL for the credits label.
Defaults to: http://www.highcharts.com
-
getPosition
public Position getPosition()
See Also:
-
setPosition
public void setPosition(Position position)
Position configuration for the credits label.
-
getText
public String getText()
See Also:
-
setText
public void setText(String text)
The text for the credits label.
Defaults to: Highcharts.com
-
-