-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ff1e3b6
commit 4d3d7a7
Showing
2,961 changed files
with
287,702 additions
and
579,638 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 0 additions & 30 deletions
30
Example/HighFit/HighFit Swift/Highcharts.framework/Headers/HIActiveAxisLabelStyle.h
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,9 +6,10 @@ | |
* In case of questions, please contact [email protected] | ||
*/ | ||
|
||
#import "HIShapes.h" | ||
#import "HILabels.h" | ||
#import "HILabelOptions.h" | ||
#import "HILabels.h" | ||
#import "HIShapes.h" | ||
#import "HIBase.h" | ||
#import "HIShapeOptions.h" | ||
|
||
|
||
|
@@ -24,35 +25,48 @@ Options for configuring annotations, for example labels, arrows or shapes. Annot | |
@interface HIAnnotations: HIChartsJSONSerializable | ||
|
||
/** | ||
An array of shapes for the annotation. For options that apply to multiple shapes, then can be added to the `shapeOptions`. | ||
The Z index of the annotation. | ||
*/ | ||
@property(nonatomic, readwrite) NSArray <HIShapes *> *shapes; | ||
@property(nonatomic, readwrite) NSNumber *zIndex; | ||
/** | ||
An array of labels for the annotation. For options that apply to multiple labels, they can be added to the `labelOptions`. | ||
Whether the annotation is visible. | ||
**Try it** | ||
* [Set annotation visibility](https://jsfiddle.net/gh/get/library/pure/highcharts/highcharts/tree/master/samples/highcharts/annotations/visible/) | ||
*/ | ||
@property(nonatomic, readwrite) NSArray <HILabels *> *labels; | ||
@property(nonatomic, readwrite) NSNumber /* Bool */ *visible; | ||
/** | ||
Options for annotation's labels. Each label inherits options from the labelOptions object. An option from the labelOptions can be overwritten by config for a specific label. | ||
*/ | ||
@property(nonatomic, readwrite) HILabelOptions *labelOptions; | ||
/** | ||
The Z index of the annotation. | ||
**Defaults to** `6`. | ||
An array of labels for the annotation. For options that apply to multiple labels, they can be added to the `labelOptions`. | ||
*/ | ||
@property(nonatomic, readwrite) NSNumber *zIndex; | ||
@property(nonatomic, readwrite) NSArray <HILabels *> *labels; | ||
/** | ||
Whether the annotation is visible. | ||
An array of shapes for the annotation. For options that apply to multiple shapes, then can be added to the `shapeOptions`. | ||
*/ | ||
@property(nonatomic, readwrite) NSArray <HIShapes *> *shapes; | ||
/** | ||
A basic type of an annotation. It allows to add custom labels or shapes. The items can be tied to points, axis coordinates or chart pixel coordinates. | ||
**Try it** | ||
* [Set annotation visibility](https://jsfiddle.net/gh/get/library/pure/highcharts/highcharts/tree/master/samples/highcharts/annotations/visible/) | ||
* [Basic annotations](https://jsfiddle.net/gh/get/library/pure/highcharts/highcharts/tree/master/samples/highcharts/annotations/basic/) | ||
* [Advanced annotations](https://jsfiddle.net/gh/get/library/pure/highcharts/highcharts/tree/master/samples/highcharts/demo/annotations/) | ||
* [Styled mode](https://jsfiddle.net/gh/get/library/pure/highcharts/highcharts/tree/master/samples/highcharts/css/annotations) | ||
* [Controllable items](https://jsfiddle.net/gh/get/library/pure/highcharts/highcharts/tree/master/samples/highcharts/annotations-advanced/controllable) | ||
*/ | ||
@property(nonatomic, readwrite) NSNumber /* Bool */ *visible; | ||
@property(nonatomic, readwrite) HIBase *base; | ||
/** | ||
Options for annotation's shapes. Each shape inherits options from the shapeOptions object. An option from the shapeOptions can be overwritten by config for a specific shape. | ||
*/ | ||
@property(nonatomic, readwrite) HIShapeOptions *shapeOptions; | ||
/** | ||
Sets an ID for an annotation. Can be user later when removing an annotation in `Chart#removeAnnotation(id)` method. | ||
*/ | ||
@property(nonatomic, readwrite) NSString *id; | ||
|
||
-(NSDictionary *)getParams; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 0 additions & 30 deletions
30
Example/HighFit/HighFit Swift/Highcharts.framework/Headers/HIBackgroundColor.h
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.