-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathApiDefinition.cs
6609 lines (5199 loc) · 292 KB
/
ApiDefinition.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
using System;
using CoreAnimation;
using CoreGraphics;
using Foundation;
using ObjCRuntime;
using UIKit;
namespace iOSCharts
{
// @interface ChartViewPortJob : NSObject
[BaseType(typeof(NSObject))]
[DisableDefaultCtor]
interface ChartViewPortJob
{
// -(instancetype _Nonnull)initWithViewPortHandler:(ChartViewPortHandler * _Nonnull)viewPortHandler xValue:(double)xValue yValue:(double)yValue transformer:(ChartTransformer * _Nonnull)transformer view:(ChartViewBase * _Nonnull)view __attribute__((objc_designated_initializer));
[Export("initWithViewPortHandler:xValue:yValue:transformer:view:")]
[DesignatedInitializer]
IntPtr Constructor(ChartViewPortHandler viewPortHandler, double xValue, double yValue, ChartTransformer transformer, ChartViewBase view);
// -(void)doJob;
[Export("doJob")]
void DoJob();
}
// @interface AnimatedViewPortJob : ChartViewPortJob
[BaseType(typeof(ChartViewPortJob), Name = "_TtC6Charts19AnimatedViewPortJob")]
interface AnimatedViewPortJob
{
// -(instancetype _Nonnull)initWithViewPortHandler:(ChartViewPortHandler * _Nonnull)viewPortHandler xValue:(double)xValue yValue:(double)yValue transformer:(ChartTransformer * _Nonnull)transformer view:(ChartViewBase * _Nonnull)view xOrigin:(CGFloat)xOrigin yOrigin:(CGFloat)yOrigin duration:(NSTimeInterval)duration easing:(double(^ _Nullable)(NSTimeInterval, NSTimeInterval))easing __attribute__((objc_designated_initializer));
[Export("initWithViewPortHandler:xValue:yValue:transformer:view:xOrigin:yOrigin:duration:easing:")]
[DesignatedInitializer]
IntPtr Constructor(ChartViewPortHandler viewPortHandler, double xValue, double yValue, ChartTransformer transformer, ChartViewBase view, nfloat xOrigin, nfloat yOrigin, double duration, [NullAllowed] Func<double, double, double> easing);
// -(void)doJob;
[Export("doJob")]
void DoJob();
// -(void)start;
[Export("start")]
void Start();
// -(void)stopWithFinish:(BOOL)finish;
[Export("stopWithFinish:")]
void StopWithFinish(bool finish);
}
// @interface AnimatedMoveViewJob : AnimatedViewPortJob
[BaseType(typeof(AnimatedViewPortJob), Name = "_TtC6Charts19AnimatedMoveViewJob")]
interface AnimatedMoveViewJob
{
// -(instancetype _Nonnull)initWithViewPortHandler:(ChartViewPortHandler * _Nonnull)viewPortHandler xValue:(double)xValue yValue:(double)yValue transformer:(ChartTransformer * _Nonnull)transformer view:(ChartViewBase * _Nonnull)view xOrigin:(CGFloat)xOrigin yOrigin:(CGFloat)yOrigin duration:(NSTimeInterval)duration easing:(double(^ _Nullable)(NSTimeInterval, NSTimeInterval))easing __attribute__((objc_designated_initializer));
[Export("initWithViewPortHandler:xValue:yValue:transformer:view:xOrigin:yOrigin:duration:easing:")]
[DesignatedInitializer]
IntPtr Constructor(ChartViewPortHandler viewPortHandler, double xValue, double yValue, ChartTransformer transformer, ChartViewBase view, nfloat xOrigin, nfloat yOrigin, double duration, [NullAllowed] Func<double, double, double> easing);
}
// @interface AnimatedZoomViewJob : AnimatedViewPortJob
[BaseType(typeof(AnimatedViewPortJob), Name = "_TtC6Charts19AnimatedZoomViewJob")]
interface AnimatedZoomViewJob
{
// -(instancetype _Nonnull)initWithViewPortHandler:(ChartViewPortHandler * _Nonnull)viewPortHandler transformer:(ChartTransformer * _Nonnull)transformer view:(ChartViewBase * _Nonnull)view yAxis:(ChartYAxis * _Nonnull)yAxis xAxisRange:(double)xAxisRange scaleX:(CGFloat)scaleX scaleY:(CGFloat)scaleY xOrigin:(CGFloat)xOrigin yOrigin:(CGFloat)yOrigin zoomCenterX:(CGFloat)zoomCenterX zoomCenterY:(CGFloat)zoomCenterY zoomOriginX:(CGFloat)zoomOriginX zoomOriginY:(CGFloat)zoomOriginY duration:(NSTimeInterval)duration easing:(double(^ _Nullable)(NSTimeInterval, NSTimeInterval))easing __attribute__((objc_designated_initializer));
[Export("initWithViewPortHandler:transformer:view:yAxis:xAxisRange:scaleX:scaleY:xOrigin:yOrigin:zoomCenterX:zoomCenterY:zoomOriginX:zoomOriginY:duration:easing:")]
[DesignatedInitializer]
IntPtr Constructor(ChartViewPortHandler viewPortHandler, ChartTransformer transformer, ChartViewBase view, ChartYAxis yAxis, double xAxisRange, nfloat scaleX, nfloat scaleY, nfloat xOrigin, nfloat yOrigin, nfloat zoomCenterX, nfloat zoomCenterY, nfloat zoomOriginX, nfloat zoomOriginY, double duration, [NullAllowed] Func<double, double, double> easing);
}
// @interface ChartAnimator : NSObject
[BaseType(typeof(NSObject))]
interface ChartAnimator
{
[Wrap("WeakDelegate")]
[NullAllowed]
ChartAnimatorDelegate Delegate { get; set; }
// @property(nonatomic, weak) id<ChartAnimatorDelegate> _Nullable delegate;
[NullAllowed, Export("delegate", ArgumentSemantic.Weak)]
NSObject WeakDelegate { get; set; }
// @property(copy, nonatomic) void(^ _Nullable)(void) updateBlock;
[NullAllowed, Export("updateBlock", ArgumentSemantic.Copy)]
Action UpdateBlock { get; set; }
// @property(copy, nonatomic) void(^ _Nullable)(void) stopBlock;
[NullAllowed, Export("stopBlock", ArgumentSemantic.Copy)]
Action StopBlock { get; set; }
// @property(nonatomic) double phaseX;
[Export("phaseX")]
double PhaseX { get; set; }
// @property(nonatomic) double phaseY;
[Export("phaseY")]
double PhaseY { get; set; }
// -(void)stop;
[Export("stop")]
void Stop();
// -(void)animateWithXAxisDuration:(NSTimeInterval)xAxisDuration yAxisDuration:(NSTimeInterval)yAxisDuration easingX:(double(^ _Nullable)(NSTimeInterval, NSTimeInterval))easingX easingY:(double(^ _Nullable)(NSTimeInterval, NSTimeInterval))easingY;
[Export("animateWithXAxisDuration:yAxisDuration:easingX:easingY:")]
void AnimateWithXAxisDuration(double xAxisDuration, double yAxisDuration, [NullAllowed] Func<double, double, double> easingX, [NullAllowed] Func<double, double, double> easingY);
// -(void)animateWithXAxisDuration:(NSTimeInterval)xAxisDuration yAxisDuration:(NSTimeInterval)yAxisDuration easingOptionX:(enum ChartEasingOption)easingOptionX easingOptionY:(enum ChartEasingOption)easingOptionY;
[Export("animateWithXAxisDuration:yAxisDuration:easingOptionX:easingOptionY:")]
void AnimateWithXAxisDuration(double xAxisDuration, double yAxisDuration, ChartEasingOption easingOptionX, ChartEasingOption easingOptionY);
// -(void)animateWithXAxisDuration:(NSTimeInterval)xAxisDuration yAxisDuration:(NSTimeInterval)yAxisDuration easing:(double(^ _Nullable)(NSTimeInterval, NSTimeInterval))easing;
[Export("animateWithXAxisDuration:yAxisDuration:easing:")]
void AnimateWithXAxisDuration(double xAxisDuration, double yAxisDuration, [NullAllowed] Func<double, double, double> easing);
// -(void)animateWithXAxisDuration:(NSTimeInterval)xAxisDuration yAxisDuration:(NSTimeInterval)yAxisDuration easingOption:(enum ChartEasingOption)easingOption;
[Export("animateWithXAxisDuration:yAxisDuration:easingOption:")]
void AnimateWithXAxisDuration(double xAxisDuration, double yAxisDuration, ChartEasingOption easingOption);
// -(void)animateWithXAxisDuration:(NSTimeInterval)xAxisDuration easing:(double(^ _Nullable)(NSTimeInterval, NSTimeInterval))easing;
[Export("animateWithXAxisDuration:easing:")]
void AnimateWithXAxisDuration(double xAxisDuration, [NullAllowed] Func<double, double, double> easing);
// -(void)animateWithXAxisDuration:(NSTimeInterval)xAxisDuration easingOption:(enum ChartEasingOption)easingOption;
[Export("animateWithXAxisDuration:easingOption:")]
void AnimateWithXAxisDuration(double xAxisDuration, ChartEasingOption easingOption);
// -(void)animateWithYAxisDuration:(NSTimeInterval)yAxisDuration easing:(double(^ _Nullable)(NSTimeInterval, NSTimeInterval))easing;
[Export("animateWithYAxisDuration:easing:")]
void AnimateWithYAxisDuration(double yAxisDuration, [NullAllowed] Func<double, double, double> easing);
// -(void)animateWithYAxisDuration:(NSTimeInterval)yAxisDuration easingOption:(enum ChartEasingOption)easingOption;
[Export("animateWithYAxisDuration:easingOption:")]
void AnimateWithYAxisDuration(double yAxisDuration, ChartEasingOption easingOption);
}
interface IChartAnimatorDelegate { }
// @protocol ChartAnimatorDelegate
[BaseType(typeof(NSObject))]
[Protocol, Model]
interface ChartAnimatorDelegate
{
// @required -(void)animatorUpdated:(ChartAnimator * _Nonnull)animator;
[Abstract]
[Export("animatorUpdated:")]
void AnimatorUpdated(ChartAnimator animator);
// @required -(void)animatorStopped:(ChartAnimator * _Nonnull)animator;
[Abstract]
[Export("animatorStopped:")]
void AnimatorStopped(ChartAnimator animator);
}
// @interface ChartComponentBase : NSObject
[BaseType(typeof(NSObject))]
interface ChartComponentBase
{
// @property(nonatomic) BOOL enabled;
[Export("enabled")]
bool Enabled { get; set; }
// @property(nonatomic) CGFloat xOffset;
[Export("xOffset")]
nfloat XOffset { get; set; }
// @property(nonatomic) CGFloat yOffset;
[Export("yOffset")]
nfloat YOffset { get; set; }
// @property(readonly, nonatomic) BOOL isEnabled;
[Export("isEnabled")]
bool IsEnabled { get; }
}
// @interface ChartAxisBase : ChartComponentBase
[BaseType(typeof(ChartComponentBase))]
interface ChartAxisBase
{
// @property(nonatomic, strong) UIFont * _Nonnull labelFont;
[Export("labelFont", ArgumentSemantic.Strong)]
UIFont LabelFont { get; set; }
// @property(nonatomic, strong) UIColor * _Nonnull labelTextColor;
[Export("labelTextColor", ArgumentSemantic.Strong)]
UIColor LabelTextColor { get; set; }
// @property(nonatomic, strong) UIColor * _Nonnull axisLineColor;
[Export("axisLineColor", ArgumentSemantic.Strong)]
UIColor AxisLineColor { get; set; }
// @property(nonatomic) CGFloat axisLineWidth;
[Export("axisLineWidth")]
nfloat AxisLineWidth { get; set; }
// @property(nonatomic) CGFloat axisLineDashPhase;
[Export("axisLineDashPhase")]
nfloat AxisLineDashPhase { get; set; }
// @property(copy, nonatomic) NSArray<NSNumber *> * _Null_unspecified axisLineDashLengths;
[Export("axisLineDashLengths", ArgumentSemantic.Copy)]
NSNumber[] AxisLineDashLengths { get; set; }
// @property(nonatomic, strong) UIColor * _Nonnull gridColor;
[Export("gridColor", ArgumentSemantic.Strong)]
UIColor GridColor { get; set; }
// @property(nonatomic) CGFloat gridLineWidth;
[Export("gridLineWidth")]
nfloat GridLineWidth { get; set; }
// @property(nonatomic) CGFloat gridLineDashPhase;
[Export("gridLineDashPhase")]
nfloat GridLineDashPhase { get; set; }
// @property(copy, nonatomic) NSArray<NSNumber *> * _Null_unspecified gridLineDashLengths;
[Export("gridLineDashLengths", ArgumentSemantic.Copy)]
NSNumber[] GridLineDashLengths { get; set; }
// @property(nonatomic) CGLineCap gridLineCap;
[Export("gridLineCap", ArgumentSemantic.Assign)]
CGLineCap GridLineCap { get; set; }
// @property(nonatomic) BOOL drawGridLinesEnabled;
[Export("drawGridLinesEnabled")]
bool DrawGridLinesEnabled { get; set; }
// @property(nonatomic) BOOL drawAxisLineEnabled;
[Export("drawAxisLineEnabled")]
bool DrawAxisLineEnabled { get; set; }
// @property(nonatomic) BOOL drawLabelsEnabled;
[Export("drawLabelsEnabled")]
bool DrawLabelsEnabled { get; set; }
// @property(nonatomic) BOOL centerAxisLabelsEnabled;
[Export("centerAxisLabelsEnabled")]
bool CenterAxisLabelsEnabled { get; set; }
// @property(readonly, nonatomic) BOOL isCenterAxisLabelsEnabled;
[Export("isCenterAxisLabelsEnabled")]
bool IsCenterAxisLabelsEnabled { get; }
// @property(nonatomic) BOOL drawLimitLinesBehindDataEnabled;
[Export("drawLimitLinesBehindDataEnabled")]
bool DrawLimitLinesBehindDataEnabled { get; set; }
// @property(nonatomic) BOOL gridAntialiasEnabled;
[Export("gridAntialiasEnabled")]
bool GridAntialiasEnabled { get; set; }
// @property(copy, nonatomic) NSArray<NSNumber *> * _Nonnull entries;
[Export("entries", ArgumentSemantic.Copy)]
NSNumber[] Entries { get; set; }
// @property(copy, nonatomic) NSArray<NSNumber *> * _Nonnull centeredEntries;
[Export("centeredEntries", ArgumentSemantic.Copy)]
NSNumber[] CenteredEntries { get; set; }
// @property(readonly, nonatomic) NSInteger entryCount;
[Export("entryCount")]
nint EntryCount { get; }
// @property(nonatomic) NSInteger decimals;
[Export("decimals")]
nint Decimals { get; set; }
// @property(nonatomic) BOOL granularityEnabled;
[Export("granularityEnabled")]
bool GranularityEnabled { get; set; }
// @property(nonatomic) double granularity;
[Export("granularity")]
double Granularity { get; set; }
// @property(readonly, nonatomic) BOOL isGranularityEnabled;
[Export("isGranularityEnabled")]
bool IsGranularityEnabled { get; }
// @property(nonatomic) BOOL forceLabelsEnabled;
[Export("forceLabelsEnabled")]
bool ForceLabelsEnabled { get; set; }
// -(NSString * _Nonnull)getLongestLabel;
[Export("getLongestLabel")]
string LongestLabel { get; }
// -(NSString * _Nonnull)getFormattedLabel:(NSInteger)index;
[Export("getFormattedLabel:")]
string GetFormattedLabel(nint index);
// @property(nonatomic, strong) id<InterfaceChartAxisValueFormatter> _Nullable valueFormatter;
[NullAllowed, Export("valueFormatter", ArgumentSemantic.Strong)]
IInterfaceChartAxisValueFormatter ValueFormatter { get; set; }
// @property(readonly, nonatomic) BOOL isDrawGridLinesEnabled;
[Export("isDrawGridLinesEnabled")]
bool IsDrawGridLinesEnabled { get; }
// @property(readonly, nonatomic) BOOL isDrawAxisLineEnabled;
[Export("isDrawAxisLineEnabled")]
bool IsDrawAxisLineEnabled { get; }
// @property(readonly, nonatomic) BOOL isDrawLabelsEnabled;
[Export("isDrawLabelsEnabled")]
bool IsDrawLabelsEnabled { get; }
// @property(readonly, nonatomic) BOOL isDrawLimitLinesBehindDataEnabled;
[Export("isDrawLimitLinesBehindDataEnabled")]
bool IsDrawLimitLinesBehindDataEnabled { get; }
// @property(nonatomic) double spaceMin;
[Export("spaceMin")]
double SpaceMin { get; set; }
// @property(nonatomic) double spaceMax;
[Export("spaceMax")]
double SpaceMax { get; set; }
// @property(nonatomic) double axisRange;
[Export("axisRange")]
double AxisRange { get; set; }
// @property(nonatomic) int axisMinLabels;
[Export("axisMinLabels")]
int AxisMinLabels { get; set; }
// @property(nonatomic) int axisMaxLabels;
[Export("axisMaxLabels")]
int AxisMaxLabels { get; set; }
// @property(nonatomic) NSInteger labelCount;
[Export("labelCount")]
nint LabelCount { get; set; }
// -(void)setLabelCount:(NSInteger)count force:(BOOL)force;
[Export("setLabelCount:force:")]
void SetLabelCount(nint count, bool force);
// @property(readonly, nonatomic) BOOL isForceLabelsEnabled;
[Export("isForceLabelsEnabled")]
bool IsForceLabelsEnabled { get; }
// -(void)addLimitLine:(ChartLimitLine * _Nonnull)line;
[Export("addLimitLine:")]
void AddLimitLine(ChartLimitLine line);
// -(void)removeLimitLine:(ChartLimitLine * _Nonnull)line;
[Export("removeLimitLine:")]
void RemoveLimitLine(ChartLimitLine line);
// -(void)removeAllLimitLines;
[Export("removeAllLimitLines")]
void RemoveAllLimitLines();
// @property(readonly, copy, nonatomic) NSArray<ChartLimitLine *> * _Nonnull limitLines;
[Export("limitLines", ArgumentSemantic.Copy)]
ChartLimitLine[] LimitLines { get; }
// -(void)resetCustomAxisMin;
[Export("resetCustomAxisMin")]
void ResetCustomAxisMin();
// @property(readonly, nonatomic) BOOL isAxisMinCustom;
[Export("isAxisMinCustom")]
bool IsAxisMinCustom { get; }
// -(void)resetCustomAxisMax;
[Export("resetCustomAxisMax")]
void ResetCustomAxisMax();
// @property(readonly, nonatomic) BOOL isAxisMaxCustom;
[Export("isAxisMaxCustom")]
bool IsAxisMaxCustom { get; }
// @property(nonatomic) double axisMinimum;
[Export("axisMinimum")]
double AxisMinimum { get; set; }
// @property(nonatomic) double axisMaximum;
[Export("axisMaximum")]
double AxisMaximum { get; set; }
// -(void)calculateWithMin:(double)dataMin max:(double)dataMax;
[Export("calculateWithMin:max:")]
void CalculateWithMin(double dataMin, double dataMax);
}
// @interface ChartRenderer : NSObject
[BaseType(typeof(NSObject))]
[DisableDefaultCtor]
interface ChartRenderer
{
// @property(nonatomic, strong) ChartViewPortHandler * _Nullable viewPortHandler;
[NullAllowed, Export("viewPortHandler", ArgumentSemantic.Strong)]
ChartViewPortHandler ViewPortHandler { get; set; }
// -(instancetype _Nonnull)initWithViewPortHandler:(ChartViewPortHandler * _Nullable)viewPortHandler __attribute__((objc_designated_initializer));
[Export("initWithViewPortHandler:")]
[DesignatedInitializer]
IntPtr Constructor([NullAllowed] ChartViewPortHandler viewPortHandler);
}
// @interface ChartAxisRendererBase : ChartRenderer
[BaseType(typeof(ChartRenderer))]
interface ChartAxisRendererBase
{
// @property(nonatomic, strong) ChartAxisBase * _Nullable axis;
[NullAllowed, Export("axis", ArgumentSemantic.Strong)]
ChartAxisBase Axis { get; set; }
// @property(nonatomic, strong) ChartTransformer * _Nullable transformer;
[NullAllowed, Export("transformer", ArgumentSemantic.Strong)]
ChartTransformer Transformer { get; set; }
// -(instancetype _Nonnull)initWithViewPortHandler:(ChartViewPortHandler * _Nullable)viewPortHandler transformer:(ChartTransformer * _Nullable)transformer axis:(ChartAxisBase * _Nullable)axis __attribute__((objc_designated_initializer));
[Export("initWithViewPortHandler:transformer:axis:")]
[DesignatedInitializer]
IntPtr Constructor([NullAllowed] ChartViewPortHandler viewPortHandler, [NullAllowed] ChartTransformer transformer, [NullAllowed] ChartAxisBase axis);
// -(void)renderAxisLabelsWithContext:(CGContext)context;
[Export("renderAxisLabelsWithContext:")]
void RenderAxisLabelsWithContext(CGContext context);
// -(void)renderGridLinesWithContext:(CGContext)context;
[Export("renderGridLinesWithContext:")]
void RenderGridLinesWithContext(CGContext context);
// -(void)renderAxisLineWithContext:(CGContext)context;
[Export("renderAxisLineWithContext:")]
void RenderAxisLineWithContext(CGContext context);
// -(void)renderLimitLinesWithContext:(CGContext)context;
[Export("renderLimitLinesWithContext:")]
void RenderLimitLinesWithContext(CGContext context);
// -(void)computeAxisWithMin:(double)min max:(double)max inverted:(BOOL)inverted;
[Export("computeAxisWithMin:max:inverted:")]
void ComputeAxisWithMin(double min, double max, bool inverted);
// -(void)computeAxisValuesWithMin:(double)min max:(double)max;
[Export("computeAxisValuesWithMin:max:")]
void ComputeAxisValuesWithMin(double min, double max);
}
// @interface ChartData : NSObject
[BaseType(typeof(NSObject), Name = "_TtC6Charts9ChartData")]
interface ChartData
{
// -(instancetype _Nonnull)initWithDataSets:(NSArray<id<IInterfaceChartDataSet>> * _Nullable)dataSets __attribute__((objc_designated_initializer));
[Export("initWithDataSets:")]
[DesignatedInitializer]
IntPtr Constructor([NullAllowed] IInterfaceChartDataSet[] dataSets);
// -(instancetype _Nonnull)initWithDataSet:(id<IInterfaceChartDataSet> _Nullable)dataSet;
[Export("initWithDataSet:")]
IntPtr Constructor([NullAllowed] IInterfaceChartDataSet dataSet);
// -(void)notifyDataChanged;
[Export("notifyDataChanged")]
void NotifyDataChanged();
// -(void)calcMinMaxYFromX:(double)fromX toX:(double)toX;
[Export("calcMinMaxYFromX:toX:")]
void CalcMinMaxYFromX(double fromX, double toX);
// -(void)calcMinMax;
[Export("calcMinMax")]
void CalcMinMax();
// -(void)calcMinMaxWithEntry:(ChartDataEntry * _Nonnull)e axis:(enum AxisDependency)axis;
[Export("calcMinMaxWithEntry:axis:")]
void CalcMinMaxWithEntry(ChartDataEntry e, AxisDependency axis);
// -(void)calcMinMaxWithDataSet:(id<IInterfaceChartDataSet> _Nonnull)d;
[Export("calcMinMaxWithDataSet:")]
void CalcMinMaxWithDataSet(IInterfaceChartDataSet d);
// @property(readonly, nonatomic) NSInteger dataSetCount;
[Export("dataSetCount")]
nint DataSetCount { get; }
// @property(readonly, nonatomic) double yMin;
[Export("yMin")]
double YMin { get; }
// -(double)getYMinWithAxis:(enum AxisDependency)axis;
[Export("getYMinWithAxis:")]
double GetYMinWithAxis(AxisDependency axis);
// @property(readonly, nonatomic) double yMax;
[Export("yMax")]
double YMax { get; }
// -(double)getYMaxWithAxis:(enum AxisDependency)axis;
[Export("getYMaxWithAxis:")]
double GetYMaxWithAxis(AxisDependency axis);
// @property(readonly, nonatomic) double xMin;
[Export("xMin")]
double XMin { get; }
// @property(readonly, nonatomic) double xMax;
[Export("xMax")]
double XMax { get; }
// @property(copy, nonatomic) NSArray<id<IInterfaceChartDataSet>> * _Nonnull dataSets;
[Export("dataSets", ArgumentSemantic.Copy)]
IInterfaceChartDataSet[] DataSets { get; set; }
// -(ChartDataEntry * _Nullable)entryForHighlight:(ChartHighlight * _Nonnull)highlight;
[Export("entryForHighlight:")]
[return: NullAllowed]
ChartDataEntry EntryForHighlight(ChartHighlight highlight);
// -(id<IInterfaceChartDataSet> _Nullable)getDataSetByLabel:(NSString * _Nonnull)label ignorecase:(BOOL)ignorecase;
[Export("getDataSetByLabel:ignorecase:")]
[return: NullAllowed]
IInterfaceChartDataSet GetDataSetByLabel(string label, bool ignorecase);
// -(id<IInterfaceChartDataSet> _Null_unspecified)getDataSetByIndex:(NSInteger)index;
[Export("getDataSetByIndex:")]
IInterfaceChartDataSet GetDataSetByIndex(nint index);
// -(void)addDataSet:(id<IInterfaceChartDataSet> _Null_unspecified)dataSet;
[Export("addDataSet:")]
void AddDataSet(IInterfaceChartDataSet dataSet);
// -(BOOL)removeDataSet:(id<IInterfaceChartDataSet> _Null_unspecified)dataSet;
[Export("removeDataSet:")]
bool RemoveDataSet(IInterfaceChartDataSet dataSet);
// -(BOOL)removeDataSetByIndex:(NSInteger)index;
[Export("removeDataSetByIndex:")]
bool RemoveDataSetByIndex(nint index);
// -(void)addEntry:(ChartDataEntry * _Nonnull)e dataSetIndex:(NSInteger)dataSetIndex;
[Export("addEntry:dataSetIndex:")]
void AddEntry(ChartDataEntry e, nint dataSetIndex);
// -(BOOL)removeEntry:(ChartDataEntry * _Nonnull)entry dataSetIndex:(NSInteger)dataSetIndex;
[Export("removeEntry:dataSetIndex:")]
bool RemoveEntry(ChartDataEntry entry, nint dataSetIndex);
// -(BOOL)removeEntryWithXValue:(double)xValue dataSetIndex:(NSInteger)dataSetIndex;
[Export("removeEntryWithXValue:dataSetIndex:")]
bool RemoveEntryWithXValue(double xValue, nint dataSetIndex);
// -(id<IInterfaceChartDataSet> _Nullable)getDataSetForEntry:(ChartDataEntry * _Null_unspecified)e;
[Export("getDataSetForEntry:")]
[return: NullAllowed]
IInterfaceChartDataSet GetDataSetForEntry(ChartDataEntry e);
// -(NSInteger)indexOfDataSet:(id<IInterfaceChartDataSet> _Nonnull)dataSet;
[Export("indexOfDataSet:")]
nint IndexOfDataSet(IInterfaceChartDataSet dataSet);
// -(id<IInterfaceChartDataSet> _Nullable)getFirstLeftWithDataSets:(NSArray<id<IInterfaceChartDataSet>> * _Nonnull)dataSets;
[Export("getFirstLeftWithDataSets:")]
[return: NullAllowed]
IInterfaceChartDataSet GetFirstLeftWithDataSets(IInterfaceChartDataSet[] dataSets);
// -(id<IInterfaceChartDataSet> _Nullable)getFirstRightWithDataSets:(NSArray<id<IInterfaceChartDataSet>> * _Nonnull)dataSets;
[Export("getFirstRightWithDataSets:")]
[return: NullAllowed]
IInterfaceChartDataSet GetFirstRightWithDataSets(IInterfaceChartDataSet[] dataSets);
// -(NSArray<UIColor *> * _Nullable)getColors;
[NullAllowed, Export("getColors")]
UIColor[] Colors { get; }
// -(void)setValueFormatter:(id<InterfaceChartValueFormatter> _Nullable)formatter;
[Export("setValueFormatter:")]
void SetValueFormatter([NullAllowed] InterfaceChartValueFormatter formatter);
// -(void)setValueTextColor:(UIColor * _Null_unspecified)color;
[Export("setValueTextColor:")]
void SetValueTextColor(UIColor color);
// -(void)setValueFont:(UIFont * _Null_unspecified)font;
[Export("setValueFont:")]
void SetValueFont(UIFont font);
// -(void)setDrawValues:(BOOL)enabled;
[Export("setDrawValues:")]
void SetDrawValues(bool enabled);
// @property(nonatomic) BOOL highlightEnabled;
[Export("highlightEnabled")]
bool HighlightEnabled { get; set; }
// @property(readonly, nonatomic) BOOL isHighlightEnabled;
[Export("isHighlightEnabled")]
bool IsHighlightEnabled { get; }
// -(void)clearValues;
[Export("clearValues")]
void ClearValues();
// -(BOOL)containsWithDataSet:(id<IInterfaceChartDataSet> _Nonnull)dataSet;
[Export("containsWithDataSet:")]
bool ContainsWithDataSet(IInterfaceChartDataSet dataSet);
// @property(readonly, nonatomic) NSInteger entryCount;
[Export("entryCount")]
nint EntryCount { get; }
// @property(readonly, nonatomic, strong) id<IInterfaceChartDataSet> _Nullable maxEntryCountSet;
[NullAllowed, Export("maxEntryCountSet", ArgumentSemantic.Strong)]
IInterfaceChartDataSet MaxEntryCountSet { get; }
// @property (copy, nonatomic) NSString * _Nullable accessibilityEntryLabelPrefix;
[NullAllowed, Export ("accessibilityEntryLabelPrefix")]
string AccessibilityEntryLabelPrefix { get; set; }
// @property (copy, nonatomic) NSString * _Nullable accessibilityEntryLabelSuffix;
[NullAllowed, Export ("accessibilityEntryLabelSuffix")]
string AccessibilityEntryLabelSuffix { get; set; }
// @property (nonatomic) BOOL accessibilityEntryLabelSuffixIsCount;
[Export ("accessibilityEntryLabelSuffixIsCount")]
bool AccessibilityEntryLabelSuffixIsCount { get; set; }
}
// @interface BarLineScatterCandleBubbleChartData : ChartData
[BaseType(typeof(ChartData), Name = "_TtC6Charts35BarLineScatterCandleBubbleChartData")]
interface BarLineScatterCandleBubbleChartData
{
// -(instancetype _Nonnull)initWithDataSets:(NSArray<id<IInterfaceChartDataSet>> * _Nullable)dataSets __attribute__((objc_designated_initializer));
[Export("initWithDataSets:")]
[DesignatedInitializer]
IntPtr Constructor([NullAllowed] IInterfaceChartDataSet[] dataSets);
}
// @interface BarChartData : BarLineScatterCandleBubbleChartData
[BaseType(typeof(BarLineScatterCandleBubbleChartData), Name = "_TtC6Charts12BarChartData")]
interface BarChartData
{
// -(instancetype _Nonnull)initWithDataSets:(NSArray<id<IInterfaceChartDataSet>> * _Nullable)dataSets __attribute__((objc_designated_initializer));
[Export("initWithDataSets:")]
[DesignatedInitializer]
IntPtr Constructor([NullAllowed] IInterfaceChartDataSet[] dataSets);
// @property(nonatomic) double barWidth;
[Export("barWidth")]
double BarWidth { get; set; }
// -(void)groupBarsFromX:(double)fromX groupSpace:(double)groupSpace barSpace:(double)barSpace;
[Export("groupBarsFromX:groupSpace:barSpace:")]
void GroupBarsFromX(double fromX, double groupSpace, double barSpace);
// -(double)groupWidthWithGroupSpace:(double)groupSpace barSpace:(double)barSpace;
[Export("groupWidthWithGroupSpace:barSpace:")]
double GroupWidthWithGroupSpace(double groupSpace, double barSpace);
}
// @interface ChartDataEntryBase : NSObject
[BaseType(typeof(NSObject), Name = "_TtC6Charts18ChartDataEntryBase")]
interface ChartDataEntryBase
{
// @property(nonatomic) double y;
[Export("y")]
double Y { get; set; }
// @property(nonatomic, strong) id _Nullable data;
[NullAllowed, Export("data", ArgumentSemantic.Strong)]
NSObject Data { get; set; }
// @property(nonatomic, strong) UIImage * _Nullable icon;
[NullAllowed, Export("icon", ArgumentSemantic.Strong)]
UIImage Icon { get; set; }
// -(instancetype _Nonnull)initWithY:(double)y __attribute__((objc_designated_initializer));
[Export("initWithY:")]
[DesignatedInitializer]
IntPtr Constructor(double y);
// -(instancetype _Nonnull)initWithY:(double)y data:(id _Nullable)data __attribute__((objc_designated_initializer));
[Export("initWithY:data:")]
[DesignatedInitializer]
IntPtr Constructor(double y, [NullAllowed] NSObject data);
// -(instancetype _Nonnull)initWithY:(double)y icon:(UIImage * _Nullable)icon __attribute__((objc_designated_initializer));
[Export("initWithY:icon:")]
[DesignatedInitializer]
IntPtr Constructor(double y, [NullAllowed] UIImage icon);
// -(instancetype _Nonnull)initWithY:(double)y icon:(UIImage * _Nullable)icon data:(id _Nullable)data __attribute__((objc_designated_initializer));
[Export("initWithY:icon:data:")]
[DesignatedInitializer]
IntPtr Constructor(double y, [NullAllowed] UIImage icon, [NullAllowed] NSObject data);
// @property(readonly, copy, nonatomic) NSString * _Nonnull description;
[Export("description")]
string Description { get; }
}
// @interface ChartDataEntry : ChartDataEntryBase
[BaseType(typeof(ChartDataEntryBase), Name = "_TtC6Charts14ChartDataEntry")]
interface ChartDataEntry
{
// @property(nonatomic) double x;
[Export("x")]
double X { get; set; }
// -(instancetype _Nonnull)initWithX:(double)x y:(double)y __attribute__((objc_designated_initializer));
[Export("initWithX:y:")]
[DesignatedInitializer]
IntPtr Constructor(double x, double y);
// -(instancetype _Nonnull)initWithX:(double)x y:(double)y data:(id _Nullable)data __attribute__((objc_designated_initializer));
[Export("initWithX:y:data:")]
[DesignatedInitializer]
IntPtr Constructor(double x, double y, [NullAllowed] NSObject data);
// -(nonnull instancetype)initWithX:(double)x y:(double)y icon:(UIImage * _Nullable)icon OBJC_DESIGNATED_INITIALIZER;
[Export("initWithX:y:icon:")]
[DesignatedInitializer]
IntPtr Constructor(double x, double y, [NullAllowed] UIImage icon);
// -(nonnull instancetype)initWithX:(double)x y:(double)y icon:(UIImage * _Nullable)icon data:(id _Nullable)data OBJC_DESIGNATED_INITIALIZER;
[Export("initWithX:y:icon:data:")]
[DesignatedInitializer]
IntPtr Constructor(double x, double y, [NullAllowed] UIImage icon, [NullAllowed] NSObject data);
// @property(readonly, copy, nonatomic) NSString * _Nonnull description;
[Export("description")]
string Description { get; }
//u-n-safe NSObject CopyWithZone([NullAllowed] _NSZone* zone);
}
// @interface BarChartDataEntry : ChartDataEntry
[BaseType(typeof(ChartDataEntry), Name = "_TtC6Charts17BarChartDataEntry")]
interface BarChartDataEntry
{
// -(instancetype _Nonnull)initWithX:(double)x y:(double)y __attribute__((objc_designated_initializer));
[Export("initWithX:y:")]
[DesignatedInitializer]
IntPtr Constructor(double x, double y);
// -(instancetype _Nonnull)initWithX:(double)x y:(double)y data:(id _Nullable)data __attribute__((objc_designated_initializer));
[Export("initWithX:y:data:")]
[DesignatedInitializer]
IntPtr Constructor(double x, double y, [NullAllowed] NSObject data);
// -(instancetype _Nonnull)initWithX:(double)x y:(double)y icon:(UIImage * _Nullable)icon __attribute__((objc_designated_initializer));
[Export("initWithX:y:icon:")]
[DesignatedInitializer]
IntPtr Constructor(double x, double y, [NullAllowed] UIImage icon);
// -(instancetype _Nonnull)initWithX:(double)x y:(double)y icon:(UIImage * _Nullable)icon data:(id _Nullable)data __attribute__((objc_designated_initializer));
[Export("initWithX:y:icon:data:")]
[DesignatedInitializer]
IntPtr Constructor(double x, double y, [NullAllowed] UIImage icon, [NullAllowed] NSObject data);
// -(instancetype _Nonnull)initWithX:(double)x yValues:(NSArray<NSNumber *> * _Nonnull)yValues __attribute__((objc_designated_initializer));
[Export("initWithX:yValues:")]
[DesignatedInitializer]
IntPtr Constructor(double x, NSNumber[] yValues);
// -(instancetype _Nonnull)initWithX:(double)x yValues:(id)yValues data:(id _Nullable)data __attribute__((objc_designated_initializer));
[Export("initWithX:yValues:data:")]
[DesignatedInitializer]
IntPtr Constructor(double x, NSNumber[] yValues, [NullAllowed] NSObject data);
// -(instancetype _Nonnull)initWithX:(double)x yValues:(id)yValues icon:(UIImage * _Nullable)icon data:(id _Nullable)data __attribute__((objc_designated_initializer));
[Export("initWithX:yValues:icon:data:")]
[DesignatedInitializer]
IntPtr Constructor(double x, NSNumber[] yValues, [NullAllowed] UIImage icon, [NullAllowed] NSObject data);
// -(instancetype _Nonnull)initWithX:(double)x yValues:(id)yValues icon:(UIImage * _Nullable)icon __attribute__((objc_designated_initializer));
[Export("initWithX:yValues:icon:")]
[DesignatedInitializer]
IntPtr Constructor(double x, NSNumber[] yValues, [NullAllowed] UIImage icon);
// -(double)sumBelowStackIndex:(NSInteger)stackIndex;
[Export("sumBelowStackIndex:")]
double SumBelowStackIndex(nint stackIndex);
// @property(readonly, nonatomic) double negativeSum;
[Export("negativeSum")]
double NegativeSum { get; }
// @property(readonly, nonatomic) double positiveSum;
[Export("positiveSum")]
double PositiveSum { get; }
// -(void)calcPosNegSum;
[Export("calcPosNegSum")]
void CalcPosNegSum();
// -(void)calcRanges;
[Export("calcRanges")]
void CalcRanges();
// @property(readonly, nonatomic) BOOL isStacked;
[Export("isStacked")]
bool IsStacked { get; }
// @property(copy, nonatomic) NSArray<NSNumber *> * _Nullable yValues;
[NullAllowed, Export("yValues", ArgumentSemantic.Copy)]
NSNumber[] YValues { get; set; }
// @property(readonly, copy, nonatomic) NSArray<ChartRange *> * _Nullable ranges;
[NullAllowed, Export("ranges", ArgumentSemantic.Copy)]
ChartRange[] Ranges { get; }
}
interface IChartDataProvider { }
// @protocol ChartDataProvider
[Protocol(Name = "_TtP6Charts17ChartDataProvider_"), Model]
interface ChartDataProvider
{
// @required @property(readonly, nonatomic) double chartXMin;
[Abstract]
[Export("chartXMin")]
double ChartXMin { get; }
// @required @property(readonly, nonatomic) double chartXMax;
[Abstract]
[Export("chartXMax")]
double ChartXMax { get; }
// @required @property(readonly, nonatomic) double chartYMin;
[Abstract]
[Export("chartYMin")]
double ChartYMin { get; }
// @required @property(readonly, nonatomic) double chartYMax;
[Abstract]
[Export("chartYMax")]
double ChartYMax { get; }
// @required @property(readonly, nonatomic) CGFloat maxHighlightDistance;
[Abstract]
[Export("maxHighlightDistance")]
nfloat MaxHighlightDistance { get; }
// @required @property(readonly, nonatomic) double xRange;
[Abstract]
[Export("xRange")]
double XRange { get; }
// @required @property(readonly, nonatomic) CGPoint centerOffsets;
[Abstract]
[Export("centerOffsets")]
CGPoint CenterOffsets { get; }
// @required @property(readonly, nonatomic, strong) ChartData * _Nullable data;
[Abstract]
[NullAllowed, Export("data", ArgumentSemantic.Strong)]
ChartData Data { get; set; }
// @required @property(readonly, nonatomic) NSInteger maxVisibleCount;
[Abstract]
[Export("maxVisibleCount")]
nint MaxVisibleCount { get; }
}
interface IBarLineScatterCandleBubbleChartDataProvider { }
// @protocol BarLineScatterCandleBubbleChartDataProvider <ChartDataProvider>
[Protocol(Name = "_TtP6Charts43BarLineScatterCandleBubbleChartDataProvider_"), Model]
interface BarLineScatterCandleBubbleChartDataProvider : ChartDataProvider
{
// @required -(ChartTransformer * _Nonnull)getTransformerForAxis:(enum AxisDependency)forAxis;
[Abstract]
[Export("getTransformerForAxis:")]
ChartTransformer GetTransformerForAxis(AxisDependency forAxis);
// @required -(BOOL)isInvertedWithAxis:(enum AxisDependency)axis;
[Abstract]
[Export("isInvertedWithAxis:")]
bool IsInvertedWithAxis(AxisDependency axis);
// @required @property(readonly, nonatomic) double lowestVisibleX;
[Abstract]
[Export("lowestVisibleX")]
double LowestVisibleX { get; }
// @required @property(readonly, nonatomic) double highestVisibleX;
[Abstract]
[Export("highestVisibleX")]
double HighestVisibleX { get; }
}
interface IBarChartDataProvider { }
// @protocol BarChartDataProvider <BarLineScatterCandleBubbleChartDataProvider>
[Protocol(Name = "_TtP6Charts20BarChartDataProvider_"), Model]
interface BarChartDataProvider : BarLineScatterCandleBubbleChartDataProvider
{
// @required @property(readonly, nonatomic, strong) BarChartData * _Nullable barData;
[Abstract]
[NullAllowed, Export("barData", ArgumentSemantic.Strong)]
BarChartData BarData { get; }
// @required @property(readonly, nonatomic) BOOL isDrawBarShadowEnabled;
[Abstract]
[Export("isDrawBarShadowEnabled")]
bool IsDrawBarShadowEnabled { get; }
// @required @property(readonly, nonatomic) BOOL isDrawValueAboveBarEnabled;
[Abstract]
[Export("isDrawValueAboveBarEnabled")]
bool IsDrawValueAboveBarEnabled { get; }
// @required @property(readonly, nonatomic) BOOL isHighlightFullBarEnabled;
[Abstract]
[Export("isHighlightFullBarEnabled")]
bool IsHighlightFullBarEnabled { get; }
}
interface IInterfaceChartDataSet { }
// @protocol IInterfaceChartDataSet
[Protocol(Name = "_TtP6Charts13IChartDataSet_"), Model]
interface InterfaceChartDataSet
{
// @required -(void)notifyDataSetChanged;
[Abstract]
[Export("notifyDataSetChanged")]
void NotifyDataSetChanged();
// @required -(void)calcMinMax;
[Abstract]
[Export("calcMinMax")]
void CalcMinMax();
// @required -(void)calcMinMaxYFromX:(double)fromX toX:(double)toX;
[Abstract]
[Export("calcMinMaxYFromX:toX:")]
void CalcMinMaxYFromX(double fromX, double toX);
// @required @property(readonly, nonatomic) double yMin;
[Abstract]
[Export("yMin")]
double YMin { get; }
// @required @property(readonly, nonatomic) double yMax;
[Abstract]
[Export("yMax")]
double YMax { get; }
// @required @property(readonly, nonatomic) double xMin;
[Abstract]
[Export("xMin")]
double XMin { get; }
// @required @property(readonly, nonatomic) double xMax;
[Abstract]
[Export("xMax")]
double XMax { get; }
// @required @property(readonly, nonatomic) NSInteger entryCount;
[Abstract]
[Export("entryCount")]
nint EntryCount { get; }
// @required -(ChartDataEntry * _Nullable)entryForIndex:(NSInteger)i;
[Abstract]
[Export("entryForIndex:")]
[return: NullAllowed]
ChartDataEntry EntryForIndex(nint i);
// @required -(ChartDataEntry * _Nullable)entryForXValue:(double)xValue closestToY:(double)yValue rounding:(enum ChartDataSetRounding)rounding;
[Abstract]
[Export("entryForXValue:closestToY:rounding:")]
[return: NullAllowed]
ChartDataEntry EntryForXValue(double xValue, double yValue, ChartDataSetRounding rounding);
// @required -(ChartDataEntry * _Nullable)entryForXValue:(double)xValue closestToY:(double)yValue;
[Abstract]
[Export("entryForXValue:closestToY:")]
[return: NullAllowed]
ChartDataEntry EntryForXValue(double xValue, double yValue);
// @required -(NSArray<ChartDataEntry *> * _Nonnull)entriesForXValue:(double)xValue;
[Abstract]
[Export("entriesForXValue:")]
ChartDataEntry[] EntriesForXValue(double xValue);
// @required -(NSInteger)entryIndexWithX:(double)xValue closestToY:(double)yValue rounding:(enum ChartDataSetRounding)rounding;
[Abstract]
[Export("entryIndexWithX:closestToY:rounding:")]
nint EntryIndexWithX(double xValue, double yValue, ChartDataSetRounding rounding);
// @required -(NSInteger)entryIndexWithEntry:(ChartDataEntry * _Nonnull)e;
[Abstract]
[Export("entryIndexWithEntry:")]
nint EntryIndexWithEntry(ChartDataEntry e);
// @required -(BOOL)addEntry:(ChartDataEntry * _Nonnull)e;
[Abstract]
[Export("addEntry:")]
bool AddEntry(ChartDataEntry e);
// @required -(BOOL)addEntryOrdered:(ChartDataEntry * _Nonnull)e;
[Abstract]
[Export("addEntryOrdered:")]
bool AddEntryOrdered(ChartDataEntry e);
// @required -(BOOL)removeEntry:(ChartDataEntry * _Nonnull)entry;
[Abstract]