Package org.pepstock.charba.client.enums
Enum BorderSkipped
- java.lang.Object
- 
- java.lang.Enum<BorderSkipped>
- 
- org.pepstock.charba.client.enums.BorderSkipped
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<BorderSkipped>,- Key
 
 public enum BorderSkipped extends Enum<BorderSkipped> implements Key Property to set the border position on chart datasets.
 This setting is used to avoid drawing the bar stroke at the base of the fill. In general, this does not need to be changed except when creating chart types that derive from a bar chart.
 For negative bars in vertical chart, top and bottom are flipped. Same goes for left and right in horizontal chart.- Author:
- Andrea "Stock" Stocchero
 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description BOTTOMThe bottom property sets the bottom edge of an element to a unit above/below its normal position.ENDThe end property sets the end edge of an element to a unit above/below its normal position.FALSEThe property setsfalseto avoid drawing the bar stroke at the base of the fill.LEFTThe left property sets the left edge of an element to a unit to the left/right to its normal position.MIDDLEThe middle property sets the borders between bars are skipped.RIGHTThe right property sets the right edge of an element to a unit to the left/right to its normal position.STARTThe start property sets the start edge of an element to a unit above/below its normal position.TOPThe top property sets the top edge of an element to a unit above/below its normal position.
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringvalue()Returns the name value of propertystatic BorderSkippedvalueOf(String name)Returns the enum constant of this type with the specified name.static BorderSkipped[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
STARTpublic static final BorderSkipped START The start property sets the start edge of an element to a unit above/below its normal position.
 - 
ENDpublic static final BorderSkipped END The end property sets the end edge of an element to a unit above/below its normal position.
 - 
TOPpublic static final BorderSkipped TOP The top property sets the top edge of an element to a unit above/below its normal position.
 - 
LEFTpublic static final BorderSkipped LEFT The left property sets the left edge of an element to a unit to the left/right to its normal position.
 - 
BOTTOMpublic static final BorderSkipped BOTTOM The bottom property sets the bottom edge of an element to a unit above/below its normal position.
 - 
RIGHTpublic static final BorderSkipped RIGHT The right property sets the right edge of an element to a unit to the left/right to its normal position.
 - 
MIDDLEpublic static final BorderSkipped MIDDLE The middle property sets the borders between bars are skipped. It's ONLY valid on stacked barsStackedBarDataset.
 - 
FALSEpublic static final BorderSkipped FALSE The property setsfalseto avoid drawing the bar stroke at the base of the fill.
 
- 
 - 
Method Detail- 
valuespublic static BorderSkipped[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (BorderSkipped c : BorderSkipped.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static BorderSkipped valueOf(String name) Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 
- 
 
-