Class Global
java.lang.Object
com.vaadin.componentfactory.maps.model.AbstractConfigurationObject
com.vaadin.componentfactory.maps.model.Global
- All Implemented Interfaces:
Serializable
@Generated(value="This class was generated",
comments="Incorrect and missing API should be reported")
public class Global
extends AbstractConfigurationObject
Global options that don't apply to each chart. These options, like the
lang options, must be set using the
Highcharts.setOptions method.
Highcharts.setOptions({
global: {
useUTC: false
}
});
- Version:
- $Id: $Id
- Author:
- Vaadin
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGetter for the fieldcanvasToolsURL.Getter for the fielduseUTC.getVMLRadialGradientURL.voidsetCanvasToolsURL(String canvasToolsURL) The URL to the additional file to lazy load for Android 2.x devices.voidWhether to use UTC time for axis scaling, tickmark placement and time display inHighcharts.dateFormat.voidsetVMLRadialGradientURL(String VMLRadialGradientURL) Path to the pattern image required by VML browsers in order to draw radial gradients.
-
Constructor Details
-
Global
public Global()Constructor for Global.
-
-
Method Details
-
getVMLRadialGradientURL
getVMLRadialGradientURL.
- Returns:
- a
Stringobject. - See Also:
-
setVMLRadialGradientURL
Path to the pattern image required by VML browsers in order to draw radial gradients.Defaults to: http://code.highcharts.com/{version}/gfx/vml-radial-gradient.png
- Parameters:
VMLRadialGradientURL- aStringobject.
-
getCanvasToolsURL
Getter for the field
canvasToolsURL.- Returns:
- a
Stringobject. - See Also:
-
setCanvasToolsURL
The URL to the additional file to lazy load for Android 2.x devices. These devices don't support SVG, so we download a helper file that contains canvg, its dependency rbcolor, and our own CanVG Renderer class. To avoid hotlinking to our site, you can install canvas-tools.js on your own server and change this option accordingly.Defaults to: http://code.highcharts.com/{version}/modules/canvas-tools.js
- Parameters:
canvasToolsURL- aStringobject.
-
getUseUTC
Getter for the field
useUTC.- Returns:
- a
Booleanobject. - See Also:
-
setUseUTC
Whether to use UTC time for axis scaling, tickmark placement and time display inHighcharts.dateFormat. Advantages of using UTC is that the time displays equally regardless of the user agent's time zone settings. Local time can be used when the data is loaded in real time or when correct Daylight Saving Time transitions are required.Defaults to: true
- Parameters:
useUTC- aBooleanobject.
-