IXuniSeries Protocol Reference

Declared in Series.h

Overview

Data series interface.

  chartType required method

Gets or sets the chart type of this data series.

@property (nonatomic) XuniChartType chartType

Discussion

Gets or sets the chart type of this data series.

Declared In

Series.h

  color required method

Gets or sets the fill color for plot elements.

@property (nonatomic) UIColor *color

Discussion

Gets or sets the fill color for plot elements.

Declared In

Series.h

  borderColor required method

Gets or sets the border color for plot elements.

@property (nonatomic) UIColor *borderColor

Discussion

Gets or sets the border color for plot elements.

Declared In

Series.h

  borderWidth required method

Gets or sets the border width for plot elements.

@property (nonatomic) double borderWidth

Discussion

Gets or sets the border width for plot elements.

Declared In

Series.h

  opacity required method

Gets or sets the opacity value applied to plot elements.

@property (nonatomic) double opacity

Discussion

Gets or sets the opacity value applied to plot elements.

Declared In

Series.h

  symbolColor required method

Gets or sets the fill color for symbols.

@property (nonatomic) UIColor *symbolColor

Discussion

Gets or sets the fill color for symbols.

Declared In

Series.h

  symbolBorderColor required method

Gets or sets the border color for symbols.

@property (nonatomic) UIColor *symbolBorderColor

Discussion

Gets or sets the border color for symbols.

Declared In

Series.h

  symbolBorderWidth required method

Gets or sets the border width for symbols.

@property (nonatomic) double symbolBorderWidth

Discussion

Gets or sets the border width for symbols.

Declared In

Series.h

  symbolOpacity required method

Gets or sets the opacity value applied to symbols.

@property (nonatomic) double symbolOpacity

Discussion

Gets or sets the opacity value applied to symbols.

Declared In

Series.h

  symbolMarker required method

Gets or sets the symbol marker.

@property (nonatomic) XuniMarkerType symbolMarker

Discussion

Gets or sets the symbol marker.

Declared In

Series.h

  symbolSize required method

Gets or sets the symbol size.

@property (nonatomic) double symbolSize

Discussion

Gets or sets the symbol size.

Declared In

Series.h

  animationTime required method

Gets or sets the animation time of series.

@property (nonatomic) double animationTime

Discussion

Gets or sets the animation time of series.

Declared In

Series.h

  animationDuration required method

Gets or sets the animation duration of series.

@property (nonatomic) double animationDuration

Discussion

Gets or sets the animation duration of series.

Declared In

Series.h

  itemRowNum required method

Gets or sets the item’s row number in the chart legend.

@property (nonatomic) int itemRowNum

Discussion

Gets or sets the item’s row number in the chart legend.

Declared In

Series.h

  itemColumnNum required method

Gets or sets the item’s column number in the chart legend.

@property (nonatomic) int itemColumnNum

Discussion

Gets or sets the item’s column number in the chart legend.

Declared In

Series.h

– getValues: required method

Get values.

- (NSArray *)getValues:(int)dim

Parameters

dim

use for distinguishing data type.

Return Value

return values.

Discussion

Get values.

Declared In

Series.h

– getDataType: required method

Get the type of the data.

- (XuniDataType)getDataType:(int)dim

Parameters

dim

use for distinguishing data type.

Return Value

return the type of the data.

Discussion

Get the type of the data.

Declared In

Series.h

– drawLegendItem:inRect: required method

Draw legend items.

- (void)drawLegendItem:(XuniRenderEngine *)engine inRect:(XuniRect *)rect

Parameters

engine

the engine.

rect

the rect of the legend.

Discussion

Draw legend items.

Declared In

Series.h

– measureLegendItem: required method

Measure legend item.

- (XuniSize *)measureLegendItem:(XuniRenderEngine *)engine

Parameters

engine

the engine.

Return Value

return the size of the legend item.

Discussion

Measure legend item.

Declared In

Series.h