Skip to content

Commit

Permalink
Updated plot bindings documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
eskroch committed Jul 20, 2011
1 parent 6ef7644 commit 35f4d0c
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion framework/Source/CPTBarPlot.h
Expand Up @@ -14,7 +14,7 @@
@class CPTTextLayer;
@class CPTTextStyle;

/// @name Binding Identifiers
/// @ingroup plotBindings
/// @{
extern NSString * const CPTBarPlotBindingBarLocations;
extern NSString * const CPTBarPlotBindingBarTips;
Expand Down
2 changes: 1 addition & 1 deletion framework/Source/CPTPieChart.h
Expand Up @@ -12,7 +12,7 @@
@class CPTTextLayer;
@class CPTLineStyle;

/// @name Binding Identifiers
/// @ingroup plotBindings
/// @{
extern NSString * const CPTPieChartBindingPieSliceWidthValues;
/// @}
Expand Down
2 changes: 2 additions & 0 deletions framework/Source/CPTPlot.m
Expand Up @@ -20,6 +20,8 @@
#import "NSNumberExtensions.h"
#import <tgmath.h>

/// @defgroup plotBindings Plot Binding Identifiers

/** @cond */
@interface CPTPlot()

Expand Down
3 changes: 3 additions & 0 deletions framework/Source/CPTRangePlot.h
Expand Up @@ -5,12 +5,15 @@
@class CPTLineStyle;
@class CPTFill;

/// @ingroup plotBindings
/// @{
extern NSString * const CPTRangePlotBindingXValues;
extern NSString * const CPTRangePlotBindingYValues;
extern NSString * const CPTRangePlotBindingHighValues;
extern NSString * const CPTRangePlotBindingLowValues;
extern NSString * const CPTRangePlotBindingLeftValues;
extern NSString * const CPTRangePlotBindingRightValues;
/// @}

/** @brief Enumeration of range plot data source field types
**/
Expand Down
2 changes: 1 addition & 1 deletion framework/Source/CPTScatterPlot.h
Expand Up @@ -12,7 +12,7 @@
@class CPTScatterPlot;
@class CPTFill;

/// @name Binding Identifiers
/// @ingroup plotBindings
/// @{
extern NSString * const CPTScatterPlotBindingXValues;
extern NSString * const CPTScatterPlotBindingYValues;
Expand Down
3 changes: 0 additions & 3 deletions framework/Source/CPTScatterPlot.m
Expand Up @@ -15,12 +15,9 @@
#import "CPTFill.h"
#import "NSCoderExtensions.h"

/// @name Binding Identifiers
/// @{
NSString * const CPTScatterPlotBindingXValues = @"xValues"; ///< X values.
NSString * const CPTScatterPlotBindingYValues = @"yValues"; ///< Y values.
NSString * const CPTScatterPlotBindingPlotSymbols = @"plotSymbols"; ///< Plot symbols.
/// @}

/** @cond */
@interface CPTScatterPlot ()
Expand Down
3 changes: 1 addition & 2 deletions framework/Source/CPTTradingRangePlot.h
@@ -1,4 +1,3 @@

#import <Foundation/Foundation.h>
#import "CPTPlot.h"
#import "CPTDefinitions.h"
Expand All @@ -11,7 +10,7 @@
@class CPTTradingRangePlot;
@class CPTFill;

/// @name Binding Identifiers
/// @ingroup plotBindings
/// @{
extern NSString * const CPTTradingRangePlotBindingXValues;
extern NSString * const CPTTradingRangePlotBindingOpenValues;
Expand Down
4 changes: 2 additions & 2 deletions framework/Source/CPTTradingRangePlot.m
Expand Up @@ -16,8 +16,8 @@
#import "NSCoderExtensions.h"

NSString * const CPTTradingRangePlotBindingXValues = @"xValues"; ///< X values.
NSString * const CPTTradingRangePlotBindingOpenValues = @"openValues"; ///< Open price values.
NSString * const CPTTradingRangePlotBindingHighValues = @"highValues"; ///< High price values.
NSString * const CPTTradingRangePlotBindingOpenValues = @"openValues"; ///< Open price values.
NSString * const CPTTradingRangePlotBindingHighValues = @"highValues"; ///< High price values.
NSString * const CPTTradingRangePlotBindingLowValues = @"lowValues"; ///< Low price values.
NSString * const CPTTradingRangePlotBindingCloseValues = @"closeValues"; ///< Close price values.

Expand Down

0 comments on commit 35f4d0c

Please sign in to comment.