Class VerticalLineOptions
- java.lang.Object
- 
- org.pepstock.charba.client.configuration.ConfigurationOptions
- 
- org.pepstock.charba.client.configuration.ScalesOptions
- 
- org.pepstock.charba.client.configuration.LineOptions
- 
- org.pepstock.charba.client.configuration.VerticalLineOptions
 
 
 
 
- 
- All Implemented Interfaces:
- HasAnimation,- ConfigurationElement,- AddHandlerEventHandler,- EventHandler,- RemoveHandlerEventHandler
 
 public class VerticalLineOptions extends LineOptions Specific options for vertical LINE chart. It contains all properties for this kind of chart.- Author:
- Andrea "Stock" Stocchero
 
- 
- 
Constructor SummaryConstructors Constructor Description VerticalLineOptions(IsChart chart, IsDefaultScaledOptions defaultValues)Builds the object storing the chart instance and default values.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Default Methods Modifier and Type Method Description IsChartgetChart()Returns the chart instanceprotected TgetConfiguration()Returns the configuration element.default booleanisShowLine()Iffalse, the lines between points are not drawn.default booleanisSpanGaps()If false,Double.NaNdata causes a break in the line.ChartEnvelop<NativeObject>loadNativeObject(ChartEnvelop<NativeObject> envelop)Returns the native object instance inside an envelop.
 It can be called only fromorg.pepstock.charba.clientpackage.voidmerge(NativeObjectContainer source, String property)Merge a native object in the this one with a specific property name.
 This is used by plugins implementation (native java script ones) when they are not using the standard way to add plugin configuration in the options of chart.protected voidsetConfiguration(T configuration)voidsetIndexAxis(IndexAxis indexAxis)Sets the base axis for the dataset.
 UseIndexAxis.Yfor vertical line.default voidsetShowLine(boolean showLine)Iffalse, the lines between points are not drawn.default voidsetSpanGaps(boolean spanGaps)If false,Double.NaNdata causes a break in the line.StringtoJSON()Returns the JSON representation of the object.- 
Methods inherited from class org.pepstock.charba.client.configuration.LineOptionsgetDecimation, getIndexAxis, getOptions, getSegment
 - 
Methods inherited from class org.pepstock.charba.client.configuration.ScalesOptionsgetAxisById, getScales
 - 
Methods inherited from class org.pepstock.charba.client.configuration.ConfigurationOptionsafterAxisConfigurationUpdate, afterConfigurationUpdate, beforeAxisConfigurationUpdate, beforeConfigurationUpdate, getAnimationContainer, getAspectRatio, getBackgroundColor, getBackgroundColorAsString, getBorderColor, getBorderColorAsString, getColor, getColorAsString, getDatasets, getDevicePixelRatio, getElements, getEvents, getFiller, getFont, getHover, getInteraction, getLayout, getLegend, getLocale, getPlugins, getResizeDelay, getSubtitle, getTitle, getTooltips, hasAxisClickHandlers, hasAxisEnterHandlers, hasAxisHoverHandlers, hasAxisLeaveHandlers, hasDatasetSelectionHandlers, hasSubtitleClickHandlers, hasSubtitleEnterHandlers, hasSubtitleLeaveHandlers, hasTitleClickHandlers, hasTitleEnterHandlers, hasTitleLeaveHandlers, isAutoColors, isAutoColorsForceOverride, isDestroyOnDetach, isDrawOnAttach, isMaintainAspectRatio, isResponsive, load, loadOptions, onAdd, onRemove, setAspectRatio, setAutoColors, setAutoColorsForceOverride, setBackgroundColor, setBackgroundColor, setBorderColor, setBorderColor, setChartOptions, setColor, setColor, setDestroyOnDetach, setDevicePixelRatio, setDrawOnAttach, setEvents, setEvents, setLocale, setMaintainAspectRatio, setResizeDelay, setResponsive
 - 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface org.pepstock.charba.client.configuration.HasAnimationgetAnimation, getAnimations, getTransitions, isAnimationEnabled, setAnimationEnabled
 
- 
 
- 
- 
- 
Constructor Detail- 
VerticalLineOptionspublic VerticalLineOptions(IsChart chart, IsDefaultScaledOptions defaultValues) Builds the object storing the chart instance and default values.- Parameters:
- chart- chart instance
- defaultValues- defaults options of line chart
 
 
- 
 - 
Method Detail- 
setIndexAxispublic void setIndexAxis(IndexAxis indexAxis) Description copied from class:LineOptionsSets the base axis for the dataset.
 UseIndexAxis.Yfor vertical line.- Overrides:
- setIndexAxisin class- LineOptions
- Parameters:
- indexAxis- the base axis for the dataset
 
 - 
setShowLinepublic default void setShowLine(boolean showLine) Iffalse, the lines between points are not drawn.- Parameters:
- showLine- if- false, the lines between points are not drawn.
 
 - 
isShowLinepublic default boolean isShowLine() Iffalse, the lines between points are not drawn.- Returns:
- if false, the lines between points are not drawn.
 
 - 
setSpanGapspublic default void setSpanGaps(boolean spanGaps) If false,Double.NaNdata causes a break in the line.- Parameters:
- spanGaps- If false,- Double.NaNdata causes a break in the line.
 
 - 
isSpanGapspublic default boolean isSpanGaps() If false,Double.NaNdata causes a break in the line.- Returns:
- If false, Double.NaNdata causes a break in the line.
 
 - 
setConfigurationprotected final void setConfiguration(T configuration) - Parameters:
- configuration- the configuration to set
 
 - 
getConfigurationprotected final T getConfiguration() Returns the configuration element.- Returns:
- the configuration element.
 
 - 
mergepublic final void merge(NativeObjectContainer source, String property) Merge a native object in the this one with a specific property name.
 This is used by plugins implementation (native java script ones) when they are not using the standard way to add plugin configuration in the options of chart.- Parameters:
- source- native object container to add
- property- property name
 
 - 
toJSONpublic final String toJSON() Returns the JSON representation of the object.- Returns:
- the JSON representation of the object.
 
 - 
loadNativeObjectpublic final ChartEnvelop<NativeObject> loadNativeObject(ChartEnvelop<NativeObject> envelop) Returns the native object instance inside an envelop.
 It can be called only fromorg.pepstock.charba.clientpackage.- Parameters:
- envelop- envelop instance which will contain the native object
- Returns:
- the envelop, passed as argument, loaded with the native object
 
 - 
getChartpublic final IsChart getChart() Returns the chart instance- Returns:
- the chart
 
 
- 
 
-