NChartHighlightType Constants Reference

Declared in NChartTypes.h

NChartHighlightType

The NChartHighlightType enum provides constants to highlight points. You may use them to build a bitmask of highlight. This means you may specify NChartHighlightTypeColor | NChartHighlightTypeShift to get highlight by color and highlight by shift at the same time.

Definition

typedef NS_ENUM(NSUInteger, NChartHighlightType ) {
   NChartHighlightTypeNone = 0,
   NChartHighlightTypeColor = 1,
   NChartHighlightTypeShift = 2,
   NChartHighlightDrop = 4,
};

Constants

NChartHighlightTypeNone

No highlight.

Declared In NChartTypes.h.

NChartHighlightTypeColor

Highlight by color.

Declared In NChartTypes.h.

NChartHighlightTypeShift

Highlight by shift.

Declared In NChartTypes.h.

NChartHighlightDrop

Drop previous highlights. Add this to your highlight type combination if you do not want the highlights to accumulate. This means, if there are some highlights queued by delay or not fully animated, they will be cancelled.

Declared In NChartTypes.h.

Declared In

NChartTypes.h