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 35f4d0c commit 0095041
Show file tree
Hide file tree
Showing 10 changed files with 25 additions and 5 deletions.
2 changes: 1 addition & 1 deletion framework/Source/CPTBarPlot.h
Expand Up @@ -14,7 +14,7 @@
@class CPTTextLayer;
@class CPTTextStyle;

/// @ingroup plotBindings
/// @ingroup plotBindingsBarPlot
/// @{
extern NSString * const CPTBarPlotBindingBarLocations;
extern NSString * const CPTBarPlotBindingBarTips;
Expand Down
4 changes: 4 additions & 0 deletions framework/Source/CPTBarPlot.m
Expand Up @@ -17,6 +17,10 @@
#import "CPTLegend.h"
#import "NSCoderExtensions.h"

/** @defgroup plotBindingsBarPlot Bar Plot Bindings
* @ingroup plotBindings
**/

NSString * const CPTBarPlotBindingBarLocations = @"barLocations"; ///< Bar locations.
NSString * const CPTBarPlotBindingBarTips = @"barTips"; ///< Bar tips.
NSString * const CPTBarPlotBindingBarBases = @"barBases"; ///< Bar bases.
Expand Down
2 changes: 1 addition & 1 deletion framework/Source/CPTPieChart.h
Expand Up @@ -12,7 +12,7 @@
@class CPTTextLayer;
@class CPTLineStyle;

/// @ingroup plotBindings
/// @ingroup plotBindingsPieChart
/// @{
extern NSString * const CPTPieChartBindingPieSliceWidthValues;
/// @}
Expand Down
4 changes: 4 additions & 0 deletions framework/Source/CPTPieChart.m
Expand Up @@ -14,6 +14,10 @@
#import "NSCoderExtensions.h"
#import <tgmath.h>

/** @defgroup plotBindingsPieChart Pie Chart Bindings
* @ingroup plotBindings
**/

NSString * const CPTPieChartBindingPieSliceWidthValues = @"sliceWidths"; ///< Pie slice widths.

/** @cond */
Expand Down
2 changes: 1 addition & 1 deletion framework/Source/CPTRangePlot.h
Expand Up @@ -5,7 +5,7 @@
@class CPTLineStyle;
@class CPTFill;

/// @ingroup plotBindings
/// @ingroup plotBindingsRangePlot
/// @{
extern NSString * const CPTRangePlotBindingXValues;
extern NSString * const CPTRangePlotBindingYValues;
Expand Down
4 changes: 4 additions & 0 deletions framework/Source/CPTRangePlot.m
Expand Up @@ -15,6 +15,10 @@
#import "CPTFill.h"
#import "NSCoderExtensions.h"

/** @defgroup plotBindingsRangePlot Range Plot Bindings
* @ingroup plotBindings
**/

NSString * const CPTRangePlotBindingXValues = @"xValues"; ///< X values.
NSString * const CPTRangePlotBindingYValues = @"yValues"; ///< Y values.
NSString * const CPTRangePlotBindingHighValues = @"highValues"; ///< high values.
Expand Down
2 changes: 1 addition & 1 deletion framework/Source/CPTScatterPlot.h
Expand Up @@ -12,7 +12,7 @@
@class CPTScatterPlot;
@class CPTFill;

/// @ingroup plotBindings
/// @ingroup plotBindingsScatterPlot
/// @{
extern NSString * const CPTScatterPlotBindingXValues;
extern NSString * const CPTScatterPlotBindingYValues;
Expand Down
4 changes: 4 additions & 0 deletions framework/Source/CPTScatterPlot.m
Expand Up @@ -15,6 +15,10 @@
#import "CPTFill.h"
#import "NSCoderExtensions.h"

/** @defgroup plotBindingsScatterPlot Scatter Plot Bindings
* @ingroup plotBindings
**/

NSString * const CPTScatterPlotBindingXValues = @"xValues"; ///< X values.
NSString * const CPTScatterPlotBindingYValues = @"yValues"; ///< Y values.
NSString * const CPTScatterPlotBindingPlotSymbols = @"plotSymbols"; ///< Plot symbols.
Expand Down
2 changes: 1 addition & 1 deletion framework/Source/CPTTradingRangePlot.h
Expand Up @@ -10,7 +10,7 @@
@class CPTTradingRangePlot;
@class CPTFill;

/// @ingroup plotBindings
/// @ingroup plotBindingsTradingRangePlot
/// @{
extern NSString * const CPTTradingRangePlotBindingXValues;
extern NSString * const CPTTradingRangePlotBindingOpenValues;
Expand Down
4 changes: 4 additions & 0 deletions framework/Source/CPTTradingRangePlot.m
Expand Up @@ -15,6 +15,10 @@
#import "CPTColor.h"
#import "NSCoderExtensions.h"

/** @defgroup plotBindingsTradingRangePlot Trading Range Plot Bindings
* @ingroup plotBindings
**/

NSString * const CPTTradingRangePlotBindingXValues = @"xValues"; ///< X values.
NSString * const CPTTradingRangePlotBindingOpenValues = @"openValues"; ///< Open price values.
NSString * const CPTTradingRangePlotBindingHighValues = @"highValues"; ///< High price values.
Expand Down

0 comments on commit 0095041

Please sign in to comment.