-
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
2cd6924
commit ff1e3b6
Showing
2,290 changed files
with
327,911 additions
and
52,102 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
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
37 changes: 37 additions & 0 deletions
37
Example/HighFit/HighFit Swift/Highcharts.framework/Headers/HIAnimationOptionsObject.h
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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/** | ||
* (c) 2009-2018 Highsoft AS | ||
* | ||
* License: www.highcharts.com/license | ||
* For commercial usage, a valid license is required. To purchase a license for Highcharts iOS, please see our website: https://shop.highsoft.com/ | ||
* In case of questions, please contact [email protected] | ||
*/ | ||
|
||
#import "HIChartsJSONSerializable.h" | ||
#import "HIFunction.h" | ||
|
||
|
||
/** | ||
An animation configuration. Animation configurations can also be defined as booleans, where `false` turns off animation and `true` defaults to a duration of 500ms. | ||
*/ | ||
@interface HIAnimationOptionsObject: HIChartsJSONSerializable | ||
|
||
/** | ||
The animation duration in milliseconds. | ||
*/ | ||
@property(nonatomic, readwrite) NSNumber *duration; | ||
/** | ||
The name of an easing function as defined on the `Math` object. | ||
*/ | ||
@property(nonatomic, readwrite) NSString *easing; | ||
/** | ||
A callback function to exectute when the animation finishes. | ||
*/ | ||
@property(nonatomic, readwrite) HIFunction *complete; | ||
/** | ||
A callback function to execute on each step of each attribute or CSS property that's being animated. The first argument contains information about the animation and progress. | ||
*/ | ||
@property(nonatomic, readwrite) HIFunction *step; | ||
|
||
-(NSDictionary *)getParams; | ||
|
||
@end |
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
Oops, something went wrong.