public class SectionCondition extends RangeConditionBase
Provides access to the SectionCondition object.
After an AxisSection is created, you can use this class to manipulate the condition to the points relative to such AxisSection.
Constructor and Description |
---|
SectionCondition()
Constructs a newly allocated SectionCondition object
|
SectionCondition(AxisSection section)
Constructs a newly allocated SectionCondition object
|
Modifier and Type | Method and Description |
---|---|
boolean |
evaluate(double value)
Description goes here
|
AxisSection |
getSection()
Get the condition to a AxisSection object
|
void |
setSection(AxisSection value)
Get or Sets the condition to a AxisSection object
|
getDataElement, getDataField, isActive, isInverse, resetActive, resetDataElement, resetInverse, setActive, setDataElement, setDataField, setInverse
public SectionCondition()
public SectionCondition(AxisSection section)
section
- public AxisSection getSection()
Get the condition to a AxisSection object
You may use this object to set the conditions to apply in the chart relative of a AxisSection
To set an AxisSection condition:
AxisSection Axissection; Axissection = new AxisSection(((AxisSectionValue)0.0), ((AxisSectionValue)10.0), new java.awt.Color(0,0,0,255)); SectionCondition section; section = new SectionCondition(); section.setActive(true); section.setSection(Axissection);
public void setSection(AxisSection value)
Get or Sets the condition to a AxisSection object
You may use this object to set the conditions to apply in the chart relative of a AxisSection
To set an AxisSection condition:
AxisSection Axissection; Axissection = new AxisSection(((AxisSectionValue)0.0), ((AxisSectionValue)10.0), new java.awt.Color(0,0,0,255)); SectionCondition section; section = new SectionCondition(); section.setActive(true); section.setSection(Axissection);
value
- 2014 Software FX, Inc. All Rights Reserved. Chart FX is a registered trademark of Software FX, Inc
All other names are trademarks or registered trademarks of their respective owners.