public class Perimeter extends Function
Title: Perimeter class
Description: Perimeter function.
Example:
function = new com.steema.teechart.functions.Perimeter();
function.setChart(myChart.getChart());
function.setPeriod(0); //all points
Line functionSeries = new Line(myChart.getChart());
functionSeries.setTitle("Perimeter");
functionSeries.setDataSource(series);
functionSeries.getXValues().setOrder(ValueListOrder.NONE);
//functionSeries.setVerticalAxis(VerticalAxis.RIGHT);
functionSeries.setFunction(function);
Copyright (c) 2005-2013 by Steema Software SL. All Rights Reserved.
Company: Steema Software SL
canUsePeriod, dPeriod, HideSourceList, noSourceRequired, series, SingleSource, updatingchart, InternalUse| Constructor and Description |
|---|
Perimeter() |
Perimeter(IBaseChart c) |
| Modifier and Type | Method and Description |
|---|---|
void |
addPoints(java.util.ArrayList source)
Gets all points from Source series, performs a function operation and
stores results in ParentSeries.
|
java.lang.String |
getDescription()
Gets descriptive text.
|
addFunctionXY, calculate, calculateAllPoints, calculateByPeriod, calculateMany, calculatePeriod, clear, dispose, doCalculation, getPeriod, getPeriodAlign, getPeriodStyle, getSeries, newInstance, readResolve, recalculate, setPeriod, setPeriodAlign, setPeriodStyle, setSeries, valueListgetChart, invalidate, setBooleanProperty, setChart, setColorProperty, setDoubleProperty, setIntegerProperty, setStringPropertypublic Perimeter()
public Perimeter(IBaseChart c)
public void addPoints(java.util.ArrayList source)
Functionpublic java.lang.String getDescription()
getDescription in class Function