forked from ChartsOrg/Charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG.md
2495 lines (2344 loc) · 248 KB
/
CHANGELOG.md
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
# Change Log
## [v3.0.3](https://github.com/danielgindi/Charts/tree/v3.0.3) (2017-09-07)
[Full Changelog](https://github.com/danielgindi/Charts/compare/v3.0.2...v3.0.3)
**Implemented enhancements:**
- fatal error: Index out of range [\#2109](https://github.com/danielgindi/Charts/issues/2109)
**Fixed bugs:**
- Fatal error when providing multiple data sets in PieChartData [\#2099](https://github.com/danielgindi/Charts/issues/2099)
**Closed issues:**
- X Values Hidden On Bar Graph [\#2774](https://github.com/danielgindi/Charts/issues/2774)
- How to add new real-time data to lineChart ? [\#2773](https://github.com/danielgindi/Charts/issues/2773)
- Avoid xAxis limit-labels display in a one-bar BarChart. [\#2771](https://github.com/danielgindi/Charts/issues/2771)
- zoom at particular position via code [\#2769](https://github.com/danielgindi/Charts/issues/2769)
- how to use HorizontalBarChart with decimal number as xAxis [\#2768](https://github.com/danielgindi/Charts/issues/2768)
- Cannot rescale Y-axis even if changing axisMinimum and axisMaximum [\#2766](https://github.com/danielgindi/Charts/issues/2766)
- I want to change ValueFormat of BarChartDataSet. I can't change it. [\#2764](https://github.com/danielgindi/Charts/issues/2764)
- Changing x-label formats from one line to word-wrapped is awkward [\#2763](https://github.com/danielgindi/Charts/issues/2763)
- chartValueSelected not getting value from Max Value [\#2762](https://github.com/danielgindi/Charts/issues/2762)
- Dual YAxis [\#2761](https://github.com/danielgindi/Charts/issues/2761)
- How to set the position of the values top on BarChartView? [\#2759](https://github.com/danielgindi/Charts/issues/2759)
- Line chart xAxis cut left or right in iphone 5 [\#2758](https://github.com/danielgindi/Charts/issues/2758)
- TableView does not scroll vertically after graph is rendered to cells [\#2757](https://github.com/danielgindi/Charts/issues/2757)
- Fill the color between two line charts using IFillFormatter [\#2756](https://github.com/danielgindi/Charts/issues/2756)
- How to use custom view for labels of xAxis? [\#2755](https://github.com/danielgindi/Charts/issues/2755)
- Chart not consistently showing data [\#2753](https://github.com/danielgindi/Charts/issues/2753)
- Obtaining current number of points being rendered in zoomed viewing window [\#2752](https://github.com/danielgindi/Charts/issues/2752)
- Barchart starting above X-Axis [\#2751](https://github.com/danielgindi/Charts/issues/2751)
- Getting the position of Data array of entry: ChartDataEntry via chartValueSelected\(args\) method [\#2750](https://github.com/danielgindi/Charts/issues/2750)
- Create Simple Bar Chart [\#2749](https://github.com/danielgindi/Charts/issues/2749)
- iOS8 simulator crashed iOS 8模拟器崩溃在画Y轴线的地方 [\#2746](https://github.com/danielgindi/Charts/issues/2746)
- Chart displays values, but no bars [\#2744](https://github.com/danielgindi/Charts/issues/2744)
- Can not inherit Charts to subclass some cutomize charts [\#2743](https://github.com/danielgindi/Charts/issues/2743)
- CandleStick fill colors not showing [\#2742](https://github.com/danielgindi/Charts/issues/2742)
- Bar chart click on outside of bar calling delegate [\#2741](https://github.com/danielgindi/Charts/issues/2741)
- Resize chart after adding limit line [\#2739](https://github.com/danielgindi/Charts/issues/2739)
- Pie chart entry icon get cut [\#2738](https://github.com/danielgindi/Charts/issues/2738)
- How can I set ValuePosition for individual slices? [\#2736](https://github.com/danielgindi/Charts/issues/2736)
- You can't slide along the X-axis [\#2735](https://github.com/danielgindi/Charts/issues/2735)
- Candlechart zooming disable interaction with viewcontroller [\#2734](https://github.com/danielgindi/Charts/issues/2734)
- 2 datasets, one should only display one label at the top [\#2733](https://github.com/danielgindi/Charts/issues/2733)
- How do I change the color of the text on top of the bars? [\#2732](https://github.com/danielgindi/Charts/issues/2732)
- Can't subclass BarChartRenderer due to 'fileprivate' status of many properties [\#2731](https://github.com/danielgindi/Charts/issues/2731)
- Left axis axisMinimum inside a TableviewCell does not work [\#2729](https://github.com/danielgindi/Charts/issues/2729)
- How to set minimum displayed Y axis value [\#2728](https://github.com/danielgindi/Charts/issues/2728)
- Custom Text Axis X Horizontal Bar Chart [\#2726](https://github.com/danielgindi/Charts/issues/2726)
- Crash when use in Notification Content Extension [\#2725](https://github.com/danielgindi/Charts/issues/2725)
- Problems encountered with charts [\#2724](https://github.com/danielgindi/Charts/issues/2724)
- Can I use Charts in Swift 4? [\#2723](https://github.com/danielgindi/Charts/issues/2723)
- Add gradient to bar chart [\#2722](https://github.com/danielgindi/Charts/issues/2722)
- Draw bar chart from axisMinimum instead of 0 [\#2721](https://github.com/danielgindi/Charts/issues/2721)
- Different Charts-Swifg.h when simulator and iphone [\#2720](https://github.com/danielgindi/Charts/issues/2720)
- Viewport transX jumping when zooming Y scale \(dynamic/realtime data\) [\#2719](https://github.com/danielgindi/Charts/issues/2719)
- Align X labels with Charts [\#2718](https://github.com/danielgindi/Charts/issues/2718)
- iOS swift3 Chart xaxis duplicate value issue for linechartview [\#2715](https://github.com/danielgindi/Charts/issues/2715)
- Label Position xAxis Radar Chart [\#2714](https://github.com/danielgindi/Charts/issues/2714)
- Showing actual value IN ADDITION to percentage, in a pie slice? [\#2713](https://github.com/danielgindi/Charts/issues/2713)
- Fail to display any thing in line chart. [\#2712](https://github.com/danielgindi/Charts/issues/2712)
- How to decrees column width size in LineChart [\#2710](https://github.com/danielgindi/Charts/issues/2710)
- Runtime EXC\_BAD\_ACCESS with barchart whiles zoom in [\#2709](https://github.com/danielgindi/Charts/issues/2709)
- How to format values on barchart [\#2708](https://github.com/danielgindi/Charts/issues/2708)
- where do I find ioscharts.framework? [\#2707](https://github.com/danielgindi/Charts/issues/2707)
- Add horizontal line at certain value on Y-Axis? [\#2706](https://github.com/danielgindi/Charts/issues/2706)
- BarChart does not render with multiple data sets [\#2705](https://github.com/danielgindi/Charts/issues/2705)
- Balloon Marker: making it work in line chart inside combined view [\#2703](https://github.com/danielgindi/Charts/issues/2703)
- IValueFormatter text showing More than one Time [\#2700](https://github.com/danielgindi/Charts/issues/2700)
- Disable bar selection or highlight? [\#2699](https://github.com/danielgindi/Charts/issues/2699)
- Increase Yaxis Labes According to the max values. [\#2696](https://github.com/danielgindi/Charts/issues/2696)
- xAxis scrolling in combineChartView [\#2695](https://github.com/danielgindi/Charts/issues/2695)
- How to highlight at specific entry ? [\#2693](https://github.com/danielgindi/Charts/issues/2693)
- Horizontal bar charts 'Y' values are getting overlapped with '0' [\#2691](https://github.com/danielgindi/Charts/issues/2691)
- Two ChartViews own the same Xaxis [\#2690](https://github.com/danielgindi/Charts/issues/2690)
- issues about BarChartView [\#2689](https://github.com/danielgindi/Charts/issues/2689)
- Tap Gesture Handler callback method [\#2686](https://github.com/danielgindi/Charts/issues/2686)
- How to draw dashed circles for values? [\#2685](https://github.com/danielgindi/Charts/issues/2685)
- How to Redraw the charts? [\#2684](https://github.com/danielgindi/Charts/issues/2684)
- BarChartView top border not showing [\#2682](https://github.com/danielgindi/Charts/issues/2682)
- Drawing horizontal dashed lines except on x-axis line? [\#2681](https://github.com/danielgindi/Charts/issues/2681)
- X-Axis Date values not displaying properly? [\#2680](https://github.com/danielgindi/Charts/issues/2680)
- Dashed border on highlighted bar - BarChart [\#2675](https://github.com/danielgindi/Charts/issues/2675)
- ChartFill - I would like to fill above the line [\#2674](https://github.com/danielgindi/Charts/issues/2674)
- Anyone have iOS charts working with Xcode 9 Beta? [\#2673](https://github.com/danielgindi/Charts/issues/2673)
- Change Scale on Y Axis for CombinedChart [\#2672](https://github.com/danielgindi/Charts/issues/2672)
- Y-axis with text [\#2671](https://github.com/danielgindi/Charts/issues/2671)
- Show only 2 labels on xAxis in CombinedChartView [\#2670](https://github.com/danielgindi/Charts/issues/2670)
- Graphing just a part of the data [\#2669](https://github.com/danielgindi/Charts/issues/2669)
- How to add texts/image into a chart? [\#2667](https://github.com/danielgindi/Charts/issues/2667)
- Is it possible to scroll without Zooming/ Scaling ? [\#2666](https://github.com/danielgindi/Charts/issues/2666)
- Use Charts in Swift3,Error [\#2664](https://github.com/danielgindi/Charts/issues/2664)
- Custom highlighter/marker [\#2663](https://github.com/danielgindi/Charts/issues/2663)
- Display programatically a marker on a chart [\#2662](https://github.com/danielgindi/Charts/issues/2662)
- Scrollview inside Marker [\#2661](https://github.com/danielgindi/Charts/issues/2661)
- Bitcode Problem [\#2660](https://github.com/danielgindi/Charts/issues/2660)
- Fix Marker on center even when chart is scaled or dragged [\#2659](https://github.com/danielgindi/Charts/issues/2659)
- How to add marker to center position in ios charts while scrolling horizontally with increasing scaleX and enabling drag [\#2658](https://github.com/danielgindi/Charts/issues/2658)
- Y Axis scales display format [\#2657](https://github.com/danielgindi/Charts/issues/2657)
- Marker and long press gesture... [\#2656](https://github.com/danielgindi/Charts/issues/2656)
- Pie chart Crash [\#2655](https://github.com/danielgindi/Charts/issues/2655)
- YAxisValues:"Zero" of the integer part is not displayed when the YAxis coordinate is zero [\#2653](https://github.com/danielgindi/Charts/issues/2653)
- Memory leak when valueFormatter is set [\#2652](https://github.com/danielgindi/Charts/issues/2652)
- autoScaleMinMaxEnabled, axisMaximum and axisMinimum [\#2651](https://github.com/danielgindi/Charts/issues/2651)
- Draw X-Axis labels with dates keeping index of x-axis independent like before [\#2648](https://github.com/danielgindi/Charts/issues/2648)
- About ChartHighLight [\#2647](https://github.com/danielgindi/Charts/issues/2647)
- Start value from X-Axis [\#2646](https://github.com/danielgindi/Charts/issues/2646)
- Combined chart with horizontal bar and bubble [\#2644](https://github.com/danielgindi/Charts/issues/2644)
- I have a problem with compiling [\#2643](https://github.com/danielgindi/Charts/issues/2643)
- How to implement custom dataset in objective-c? [\#2639](https://github.com/danielgindi/Charts/issues/2639)
- I am not able to set values on the bar in simple bar chart. [\#2638](https://github.com/danielgindi/Charts/issues/2638)
- Swift based Charts library increased application size when used for objective c based project [\#2637](https://github.com/danielgindi/Charts/issues/2637)
- 使用CombinedChartView绘制柱形图,如何只让当前bar视图显示灰色背影。 [\#2636](https://github.com/danielgindi/Charts/issues/2636)
- OHLC charts... [\#2635](https://github.com/danielgindi/Charts/issues/2635)
- unable to set string values on x-axis in grouped bar chart . [\#2632](https://github.com/danielgindi/Charts/issues/2632)
- How to set group width in multiple bar chart? [\#2631](https://github.com/danielgindi/Charts/issues/2631)
- override renderLegend\(context: CGContext\) [\#2630](https://github.com/danielgindi/Charts/issues/2630)
- Changing chart's type without creating a new object... [\#2627](https://github.com/danielgindi/Charts/issues/2627)
- Using Charts in NSStackView [\#2626](https://github.com/danielgindi/Charts/issues/2626)
- Does PieChart support multiple columns of vertical legend? [\#2625](https://github.com/danielgindi/Charts/issues/2625)
- I need this method: setShowOnlyMinMax [\#2624](https://github.com/danielgindi/Charts/issues/2624)
- Unable to use this library in Objective-c . [\#2623](https://github.com/danielgindi/Charts/issues/2623)
- 计算柱形图的宽度和设定间隙 [\#2622](https://github.com/danielgindi/Charts/issues/2622)
- How to adjust RadarChartView text from the bottom of the height? [\#2621](https://github.com/danielgindi/Charts/issues/2621)
- How to give all pie-slices a rounded edge? [\#2620](https://github.com/danielgindi/Charts/issues/2620)
- Alternative color to fill in radar chart [\#2617](https://github.com/danielgindi/Charts/issues/2617)
- About gradient color for lineChartView [\#2615](https://github.com/danielgindi/Charts/issues/2615)
- Invalid bundle [\#2614](https://github.com/danielgindi/Charts/issues/2614)
- Want to display circles at data points on a line graph only if the data has changed or is about to change [\#2613](https://github.com/danielgindi/Charts/issues/2613)
- Swift language Version. [\#2612](https://github.com/danielgindi/Charts/issues/2612)
- Linker Command Fail error [\#2611](https://github.com/danielgindi/Charts/issues/2611)
- xAxis's first lable always on the left [\#2610](https://github.com/danielgindi/Charts/issues/2610)
- when i Creat one LineChartData objc. it's draws Three points [\#2609](https://github.com/danielgindi/Charts/issues/2609)
- i wanna display Char form with no data. but with Y Values. [\#2608](https://github.com/danielgindi/Charts/issues/2608)
- Is there any way to get the xaxis value when chart scroll end specific area? [\#2607](https://github.com/danielgindi/Charts/issues/2607)
- Memory Leak in Legend and ArrayBufferProtocol [\#2606](https://github.com/danielgindi/Charts/issues/2606)
- fatal error due to call to computeAxisValues during call to notifyDataSetChanged [\#2605](https://github.com/danielgindi/Charts/issues/2605)
- Bar Chart & label displayed wrongly when dataset count changes [\#2603](https://github.com/danielgindi/Charts/issues/2603)
- BarChart.Axis label change starting index when .rightAxix is enabled [\#2602](https://github.com/danielgindi/Charts/issues/2602)
- Spacing between left axis labels [\#2601](https://github.com/danielgindi/Charts/issues/2601)
- React Native support [\#2598](https://github.com/danielgindi/Charts/issues/2598)
- Not able to see yAxis label while changing position of that label [\#2596](https://github.com/danielgindi/Charts/issues/2596)
- About stacked bar value label postion [\#2595](https://github.com/danielgindi/Charts/issues/2595)
- Invalid Bundle - Xcode 9 Beta 2 [\#2593](https://github.com/danielgindi/Charts/issues/2593)
- Stacked bar always show last value [\#2592](https://github.com/danielgindi/Charts/issues/2592)
- Use Charts in App Extension [\#2590](https://github.com/danielgindi/Charts/issues/2590)
- About bar and line combined [\#2589](https://github.com/danielgindi/Charts/issues/2589)
- Draw graph of a function [\#2588](https://github.com/danielgindi/Charts/issues/2588)
- Scrolling chart [\#2587](https://github.com/danielgindi/Charts/issues/2587)
- How change value double to value int format? [\#2586](https://github.com/danielgindi/Charts/issues/2586)
- stringForValue value [\#2585](https://github.com/danielgindi/Charts/issues/2585)
- Invalid architecture... support arm64. [\#2584](https://github.com/danielgindi/Charts/issues/2584)
- Line chart with blank data show Y axis label incorrect on iPhone 5 [\#2583](https://github.com/danielgindi/Charts/issues/2583)
- 'M\_PI' is deprecated: Please use 'Double.pi' or '.pi' to get the value of correct type and avoid casting. [\#2580](https://github.com/danielgindi/Charts/issues/2580)
- 0 lost when the value less than 1.0,why? [\#2579](https://github.com/danielgindi/Charts/issues/2579)
- Error Library not loaded: @rpath/libswiftAppKit.dylib [\#2578](https://github.com/danielgindi/Charts/issues/2578)
- CenterText/Description Text overruns onto PieChart [\#2577](https://github.com/danielgindi/Charts/issues/2577)
- Hide specific legend not all [\#2576](https://github.com/danielgindi/Charts/issues/2576)
- horizontal barchart each bar have different maximum value [\#2575](https://github.com/danielgindi/Charts/issues/2575)
- Barchart fixed interval in left axis [\#2574](https://github.com/danielgindi/Charts/issues/2574)
- Change color of Bar chart data label [\#2573](https://github.com/danielgindi/Charts/issues/2573)
- Visible ChartDataEntry when zoomed in? [\#2572](https://github.com/danielgindi/Charts/issues/2572)
- Changing color of the bar graph [\#2571](https://github.com/danielgindi/Charts/issues/2571)
- Custom bar chart highlight style [\#2570](https://github.com/danielgindi/Charts/issues/2570)
- How to show LineChart with icon [\#2566](https://github.com/danielgindi/Charts/issues/2566)
- how to do Paging [\#2565](https://github.com/danielgindi/Charts/issues/2565)
- Range float bars [\#2564](https://github.com/danielgindi/Charts/issues/2564)
- Cropping left axis labels and missing some values [\#2563](https://github.com/danielgindi/Charts/issues/2563)
- How to create a custom marker view in line chart for showing x values as well [\#2562](https://github.com/danielgindi/Charts/issues/2562)
- HorizontalBarChartView:when i set Xvalue = 0,1,2,3..... HorizontalBarChartView some X dont show [\#2559](https://github.com/danielgindi/Charts/issues/2559)
- But I hope also have the valueFonts property set for each font size, like valueColors [\#2558](https://github.com/danielgindi/Charts/issues/2558)
- charts uses iphone show "No architectures to compile for \(ONLY\_ACTIVE\_ARCH=YES, active arch=arm64, VALID\_ARCHS=i386 x86\_64 \)". [\#2557](https://github.com/danielgindi/Charts/issues/2557)
- Caching charts [\#2555](https://github.com/danielgindi/Charts/issues/2555)
- How to add X axis values in the balloon marker view in IOS Charts? [\#2554](https://github.com/danielgindi/Charts/issues/2554)
- One label for each data point - Line Chart - SOLUTION FOUND [\#2553](https://github.com/danielgindi/Charts/issues/2553)
- PieChart legend.yOffset bug [\#2552](https://github.com/danielgindi/Charts/issues/2552)
- PieChart legend.yOffset bug [\#2551](https://github.com/danielgindi/Charts/issues/2551)
- Duplicates x-axis labels are plotted separately in graph? [\#2549](https://github.com/danielgindi/Charts/issues/2549)
- How to set the label count for X axis ? [\#2548](https://github.com/danielgindi/Charts/issues/2548)
- Hide graph label if value fall below a certain threshold/minimum [\#2547](https://github.com/danielgindi/Charts/issues/2547)
- BarChar Position Label [\#2546](https://github.com/danielgindi/Charts/issues/2546)
- Swift language upgrade required [\#2544](https://github.com/danielgindi/Charts/issues/2544)
- BarChartDataEntry different value than value display for each BarChartDataSet [\#2543](https://github.com/danielgindi/Charts/issues/2543)
- LineChartDataSet why there is no valueFonts [\#2542](https://github.com/danielgindi/Charts/issues/2542)
- Need swift combined chart demo. [\#2540](https://github.com/danielgindi/Charts/issues/2540)
- Pie Chart Highlighted region [\#2536](https://github.com/danielgindi/Charts/issues/2536)
- Replace the value label without redraw the bar. [\#2535](https://github.com/danielgindi/Charts/issues/2535)
- Lines on Horizontal Bar Chart [\#2532](https://github.com/danielgindi/Charts/issues/2532)
- Cannot convert value of type 'AutoreleasingUnsafeMutablePointer\<NSArray\>' to expected argument type 'AutoreleasingUnsafeMutablePointer\<NSArray?\>?' [\#2530](https://github.com/danielgindi/Charts/issues/2530)
- zoom programatically, reset the zoom, set the highlight and moving the X-Axis and the Y-Axis to the middle [\#2529](https://github.com/danielgindi/Charts/issues/2529)
- BarGraph - 0 values - Bar Offset [\#2528](https://github.com/danielgindi/Charts/issues/2528)
- Chart displays intermittently [\#2527](https://github.com/danielgindi/Charts/issues/2527)
- Changing BarChart xAxis label position [\#2526](https://github.com/danielgindi/Charts/issues/2526)
- Create PDF Of Charts [\#2525](https://github.com/danielgindi/Charts/issues/2525)
- What is the equivalent of "onChartDoubleTapped"? [\#2524](https://github.com/danielgindi/Charts/issues/2524)
- Delegate Memory Leak [\#2523](https://github.com/danielgindi/Charts/issues/2523)
- Chart is sometimes not showing data on Plus devices [\#2521](https://github.com/danielgindi/Charts/issues/2521)
- How to run in Xcode 9 \(beta\) [\#2520](https://github.com/danielgindi/Charts/issues/2520)
- HorizontalBarChartView offset X [\#2519](https://github.com/danielgindi/Charts/issues/2519)
- Line not showing in LineChart [\#2518](https://github.com/danielgindi/Charts/issues/2518)
- Displaying float values in bar chart label. [\#2517](https://github.com/danielgindi/Charts/issues/2517)
- Not working with Xcode 9 Beta1 [\#2514](https://github.com/danielgindi/Charts/issues/2514)
- PieChart: Identify univocally a specific entry [\#2513](https://github.com/danielgindi/Charts/issues/2513)
- Right Align Y Value Labels for Horizontal Bar Chart [\#2512](https://github.com/danielgindi/Charts/issues/2512)
- Swift 3 Cubic line chart [\#2510](https://github.com/danielgindi/Charts/issues/2510)
- Inserting dataPoint "labels" in Radar Chart [\#2508](https://github.com/danielgindi/Charts/issues/2508)
- How to remove decimals from y values in iOS Charts? [\#2506](https://github.com/danielgindi/Charts/issues/2506)
- Add background to chart's legend [\#2505](https://github.com/danielgindi/Charts/issues/2505)
- Combine Bar, Line and Pie chart [\#2503](https://github.com/danielgindi/Charts/issues/2503)
- Chart not in centre of view [\#2502](https://github.com/danielgindi/Charts/issues/2502)
- Can't use different Charts Framework with different versions of Xcode [\#2499](https://github.com/danielgindi/Charts/issues/2499)
- How to change the label colors of certain XAxis values? [\#2498](https://github.com/danielgindi/Charts/issues/2498)
- Chart points are being clipped out in ScatterChart [\#2496](https://github.com/danielgindi/Charts/issues/2496)
- PieChart render very small [\#2495](https://github.com/danielgindi/Charts/issues/2495)
- Bar values inside bar horizontally? [\#2494](https://github.com/danielgindi/Charts/issues/2494)
- I used Charts in my iOS project and when I start to zoom the chart labels on xAxis get repeated again and again. How can I fix my problem? [\#2493](https://github.com/danielgindi/Charts/issues/2493)
- linechart shadow [\#2492](https://github.com/danielgindi/Charts/issues/2492)
- Set a fixed bar width in BarChartView [\#2491](https://github.com/danielgindi/Charts/issues/2491)
- Linechart inverted [\#2490](https://github.com/danielgindi/Charts/issues/2490)
- Pie chart not accepting more than one dataSet [\#2489](https://github.com/danielgindi/Charts/issues/2489)
- Graph x-axis values not displaying in swift 3.0 [\#2488](https://github.com/danielgindi/Charts/issues/2488)
- How to round corner in Radar Charts? [\#2487](https://github.com/danielgindi/Charts/issues/2487)
- Display header label on xAxis and yAxis [\#2485](https://github.com/danielgindi/Charts/issues/2485)
- XAxis label issue with multiple/grouped bar chart [\#2481](https://github.com/danielgindi/Charts/issues/2481)
- After integration, the project package becomes bigger. [\#2480](https://github.com/danielgindi/Charts/issues/2480)
- Pinch to Zoom is not working as expected over Bar Chart [\#2479](https://github.com/danielgindi/Charts/issues/2479)
- Two markers on one line \[LineChartView\] [\#2476](https://github.com/danielgindi/Charts/issues/2476)
- Adjust the spacing between bars. \(not grouped\) [\#2475](https://github.com/danielgindi/Charts/issues/2475)
- Issue with order of x-values and Multi LineChart [\#2474](https://github.com/danielgindi/Charts/issues/2474)
- Show Integer values on LineChart [\#2473](https://github.com/danielgindi/Charts/issues/2473)
- Loading a blank chart [\#2472](https://github.com/danielgindi/Charts/issues/2472)
- LineChart isn't shown correct [\#2471](https://github.com/danielgindi/Charts/issues/2471)
- Device Orientation not detected when using Charts module [\#2469](https://github.com/danielgindi/Charts/issues/2469)
- How to set spacing between bars? [\#2467](https://github.com/danielgindi/Charts/issues/2467)
- what happened to sliceSpace function in piechartdataset? [\#2466](https://github.com/danielgindi/Charts/issues/2466)
- How to scroll between charts on carousel [\#2465](https://github.com/danielgindi/Charts/issues/2465)
- PieChartData and NSNumberFormatter memory leak about demo project [\#2464](https://github.com/danielgindi/Charts/issues/2464)
- Custom View within the PieChart Center [\#2463](https://github.com/danielgindi/Charts/issues/2463)
- toggle highlight for pie chart slice [\#2462](https://github.com/danielgindi/Charts/issues/2462)
- HorizontalBarChartView [\#2461](https://github.com/danielgindi/Charts/issues/2461)
- Cubic Line Distorted [\#2459](https://github.com/danielgindi/Charts/issues/2459)
- Plotband support [\#2458](https://github.com/danielgindi/Charts/issues/2458)
- Bubble charts: Can i set the size same to all the bubbles? [\#2456](https://github.com/danielgindi/Charts/issues/2456)
- Single point on line chart not showing - Swift 3 [\#2455](https://github.com/danielgindi/Charts/issues/2455)
- Plotting large amount of data slows down the Graph. [\#2454](https://github.com/danielgindi/Charts/issues/2454)
- Error on Manually adding on my project [\#2453](https://github.com/danielgindi/Charts/issues/2453)
- How to implement Gantt charts using iOS-Charts? [\#2451](https://github.com/danielgindi/Charts/issues/2451)
- How come I can't set a default color theme in ChartColorTemplate.swift? [\#2450](https://github.com/danielgindi/Charts/issues/2450)
- What is relation between the BubbleSize and the axis value?Can we control the size of Bubble in Bubble Chart? [\#2448](https://github.com/danielgindi/Charts/issues/2448)
- chart 3.0 xAxis labels not mapped [\#2447](https://github.com/danielgindi/Charts/issues/2447)
- fatal error: Index out of range while subclassing renderer [\#2446](https://github.com/danielgindi/Charts/issues/2446)
- Bug in line chart yAxis when range are less than 1 [\#2445](https://github.com/danielgindi/Charts/issues/2445)
- Help with custom graphic/chart [\#2442](https://github.com/danielgindi/Charts/issues/2442)
- PieChart center Attributed Text [\#2441](https://github.com/danielgindi/Charts/issues/2441)
- PieChart center Attributed Text [\#2440](https://github.com/danielgindi/Charts/issues/2440)
- show tooltip on click [\#2438](https://github.com/danielgindi/Charts/issues/2438)
- Got Error : “\_OBJC\_CLASS\_$\_\_TtC10ChartsDemo12XYMarkerView” in Charts [\#2437](https://github.com/danielgindi/Charts/issues/2437)
- Change color label over circle [\#2436](https://github.com/danielgindi/Charts/issues/2436)
- Gradient transparency for line chart [\#2435](https://github.com/danielgindi/Charts/issues/2435)
- How to set labels based on max and min value of the plot? [\#2434](https://github.com/danielgindi/Charts/issues/2434)
- How to make the pie chart selected by default? [\#2431](https://github.com/danielgindi/Charts/issues/2431)
- Animate 3 dataSets one by one [\#2428](https://github.com/danielgindi/Charts/issues/2428)
- Marker points on wrong position [\#2426](https://github.com/danielgindi/Charts/issues/2426)
- Legend leak in version 3.0.1 [\#2425](https://github.com/danielgindi/Charts/issues/2425)
- Show Two Circles in Pie Chart [\#2424](https://github.com/danielgindi/Charts/issues/2424)
- restrainViewPort is not working. Chart stays the same! [\#2423](https://github.com/danielgindi/Charts/issues/2423)
- Line Chart show value on specific coordinate [\#2420](https://github.com/danielgindi/Charts/issues/2420)
- Is it possible to extend the gesture handler? [\#2419](https://github.com/danielgindi/Charts/issues/2419)
- Memory Leak in BarChartView Data [\#2416](https://github.com/danielgindi/Charts/issues/2416)
- Track Scroll Left or Right [\#2415](https://github.com/danielgindi/Charts/issues/2415)
- How can I add the xVals to LineChartData object? [\#2412](https://github.com/danielgindi/Charts/issues/2412)
- Line chart doesn't redraw correctly after removeEntry\(\) [\#2411](https://github.com/danielgindi/Charts/issues/2411)
- Bar width [\#2410](https://github.com/danielgindi/Charts/issues/2410)
- There is no way to restrict zoom level after certain zoom level [\#2409](https://github.com/danielgindi/Charts/issues/2409)
- Half Pie Chart no full view [\#2408](https://github.com/danielgindi/Charts/issues/2408)
- How to use gradient colors for each column in a histogram? [\#2407](https://github.com/danielgindi/Charts/issues/2407)
- Fill line chart when drag with two fingers [\#2405](https://github.com/danielgindi/Charts/issues/2405)
- chartValueSelected Delegate Method Not Called [\#2404](https://github.com/danielgindi/Charts/issues/2404)
- Draw bar line even though the value is zero [\#2403](https://github.com/danielgindi/Charts/issues/2403)
- Adding line/dataset on line chart that already has a line [\#2401](https://github.com/danielgindi/Charts/issues/2401)
- help with labels [\#2400](https://github.com/danielgindi/Charts/issues/2400)
- 'Charts/Charts.h' file not found when tried build using "XCODEBUILD" command in terminal [\#2397](https://github.com/danielgindi/Charts/issues/2397)
- moveViewToX\(\) has no affect on a chart whose frame has not been set yet [\#2395](https://github.com/danielgindi/Charts/issues/2395)
- Appending Units\(i.e. m/s, mpg, etc\) to yaxis?? [\#2394](https://github.com/danielgindi/Charts/issues/2394)
- Chart Top label Issue [\#2392](https://github.com/danielgindi/Charts/issues/2392)
- How to just draw one circle value for LineChartView [\#2391](https://github.com/danielgindi/Charts/issues/2391)
- Support for 3D charts [\#2389](https://github.com/danielgindi/Charts/issues/2389)
- Y Axis range calculation is incorrect for Bar Charts [\#2386](https://github.com/danielgindi/Charts/issues/2386)
- Is having a ChartViewBase inside a custom UIView even possible? [\#2384](https://github.com/danielgindi/Charts/issues/2384)
- "chartValueSelected" is not getting called. [\#2383](https://github.com/danielgindi/Charts/issues/2383)
- Does it support XO line\(American CandleStick\)? [\#2382](https://github.com/danielgindi/Charts/issues/2382)
- Chart Won't Display [\#2381](https://github.com/danielgindi/Charts/issues/2381)
- autoScaleMinMaxEnabled Not Working [\#2374](https://github.com/danielgindi/Charts/issues/2374)
- Graph is being drawn outside of visible area [\#2373](https://github.com/danielgindi/Charts/issues/2373)
- Compile error on Release build configuration [\#2372](https://github.com/danielgindi/Charts/issues/2372)
- moveViewToX clips bar [\#2370](https://github.com/danielgindi/Charts/issues/2370)
- swift 3.x -\> New ChartMarker? [\#2369](https://github.com/danielgindi/Charts/issues/2369)
- Crash on computeAxisValues of Bar Chart [\#2368](https://github.com/danielgindi/Charts/issues/2368)
- How to properly reset zoom on data refresh? [\#2367](https://github.com/danielgindi/Charts/issues/2367)
- What is the meaning of xValue in moveViewToAnimated? [\#2366](https://github.com/danielgindi/Charts/issues/2366)
- Horizontal Bar Chart rightAxis default maximum space [\#2363](https://github.com/danielgindi/Charts/issues/2363)
- Why my LineChartDataSet's line is behind the bar? [\#2354](https://github.com/danielgindi/Charts/issues/2354)
- charts2.5 bottom line render issue [\#2352](https://github.com/danielgindi/Charts/issues/2352)
- Limit the number of bars to 10 when the x-axis is made of strings [\#2351](https://github.com/danielgindi/Charts/issues/2351)
- Not able to plot values in linechart [\#2349](https://github.com/danielgindi/Charts/issues/2349)
- Text in Marker [\#2348](https://github.com/danielgindi/Charts/issues/2348)
- PieChart overlay lines or dots for select slices in the pie chart [\#2347](https://github.com/danielgindi/Charts/issues/2347)
- Multiple colors grid background [\#2346](https://github.com/danielgindi/Charts/issues/2346)
- The direction of the two BarChart [\#2345](https://github.com/danielgindi/Charts/issues/2345)
- how to format y-axix values [\#2343](https://github.com/danielgindi/Charts/issues/2343)
- different Bar color based on values [\#2342](https://github.com/danielgindi/Charts/issues/2342)
- XCode wants to convert Chart [\#2341](https://github.com/danielgindi/Charts/issues/2341)
- Population Pyramid [\#2340](https://github.com/danielgindi/Charts/issues/2340)
- Not all labels shown on horizontal bar chart with large datasets [\#2339](https://github.com/danielgindi/Charts/issues/2339)
- Using ChartViewBase as the type and instantiating the chart later as a specific type [\#2338](https://github.com/danielgindi/Charts/issues/2338)
- Remove Highlight from bar graph [\#2337](https://github.com/danielgindi/Charts/issues/2337)
- Set diffent style to single line graph [\#2336](https://github.com/danielgindi/Charts/issues/2336)
- change the color of the highlight point [\#2334](https://github.com/danielgindi/Charts/issues/2334)
- Extra space to the right of chart [\#2333](https://github.com/danielgindi/Charts/issues/2333)
- xcode 8.3 swift 3.1 [\#2332](https://github.com/danielgindi/Charts/issues/2332)
- AxisDependencyRight Question~~ [\#2331](https://github.com/danielgindi/Charts/issues/2331)
- Module Charts not found XCODE 8.1 Error [\#2330](https://github.com/danielgindi/Charts/issues/2330)
- How to remove Grid [\#2329](https://github.com/danielgindi/Charts/issues/2329)
- The spacing between the two points is wider than the distance between the labels [\#2327](https://github.com/danielgindi/Charts/issues/2327)
- Skipped installing realm-cocoa.framework binary due to the error: [\#2326](https://github.com/danielgindi/Charts/issues/2326)
- Pie Chart view as Int instead of double on segment? [\#2325](https://github.com/danielgindi/Charts/issues/2325)
- Not able to give X axis Values [\#2324](https://github.com/danielgindi/Charts/issues/2324)
- Labels to PieChart? v 3.0.2 [\#2323](https://github.com/danielgindi/Charts/issues/2323)
- How to prevent static data sets from redrawing and hogging CPU [\#2322](https://github.com/danielgindi/Charts/issues/2322)
- BarChart xAxis labels a moving [\#2321](https://github.com/danielgindi/Charts/issues/2321)
- How to add a fade background for data values [\#2320](https://github.com/danielgindi/Charts/issues/2320)
- Limit Line after update to 3.0.2 no longer shown [\#2319](https://github.com/danielgindi/Charts/issues/2319)
- Charts v3.0.2 does not build using Carthage [\#2317](https://github.com/danielgindi/Charts/issues/2317)
- Too much Warnings on the comments [\#2316](https://github.com/danielgindi/Charts/issues/2316)
- spaceMin and spaceMax are not percentages [\#2314](https://github.com/danielgindi/Charts/issues/2314)
- API for increasing or decreasing condition for CandleStick Chart [\#2311](https://github.com/danielgindi/Charts/issues/2311)
- Create Tag to include 'fix for Xcode 8.3' [\#2309](https://github.com/danielgindi/Charts/issues/2309)
- Ambiguous use of 'data' [\#2304](https://github.com/danielgindi/Charts/issues/2304)
- Default backgroundColor \(nil\) displays as black instead of clear. [\#2222](https://github.com/danielgindi/Charts/issues/2222)
- pdf report with Line Chart blurry from iphone 7 [\#2204](https://github.com/danielgindi/Charts/issues/2204)
- how to add Values to Pie Chart? and how to show complete pie chart instead of doughnut [\#2150](https://github.com/danielgindi/Charts/issues/2150)
- 'LineChartView' is unavailable: cannot find Swift declaration for this class [\#2145](https://github.com/danielgindi/Charts/issues/2145)
- Display label MMyyyy for barChart [\#2142](https://github.com/danielgindi/Charts/issues/2142)
- barSpace attribute [\#2137](https://github.com/danielgindi/Charts/issues/2137)
- Bar Chart, Shifting Y Position [\#2134](https://github.com/danielgindi/Charts/issues/2134)
- highlightValue is throwing "fatal error: Index out of range" in Combined Chart [\#2076](https://github.com/danielgindi/Charts/issues/2076)
**Merged pull requests:**
- Update xcode project for xcode 9 [\#2767](https://github.com/danielgindi/Charts/pull/2767) ([petester42](https://github.com/petester42))
- Fixed value setter on PieChartDataEntry [\#2754](https://github.com/danielgindi/Charts/pull/2754) ([martnst](https://github.com/martnst))
- Conform to macOS api changes in swift 3.2 [\#2717](https://github.com/danielgindi/Charts/pull/2717) ([ohbargain](https://github.com/ohbargain))
- Fix CombinedChartView not draw markers [\#2702](https://github.com/danielgindi/Charts/pull/2702) ([xzysun](https://github.com/xzysun))
- Reduce build time with minor reference refactor [\#2679](https://github.com/danielgindi/Charts/pull/2679) ([xinranw](https://github.com/xinranw))
- Fix Typo: Probider -\> Provider [\#2650](https://github.com/danielgindi/Charts/pull/2650) ([russellbstephens](https://github.com/russellbstephens))
- Adding a third party tutorial [\#2604](https://github.com/danielgindi/Charts/pull/2604) ([osianSmith](https://github.com/osianSmith))
- fix \#2099, avoid crash when some chart only allow 1 data set [\#2500](https://github.com/danielgindi/Charts/pull/2500) ([liuxuan30](https://github.com/liuxuan30))
- tutorial link added to readme [\#2484](https://github.com/danielgindi/Charts/pull/2484) ([annalizhaz](https://github.com/annalizhaz))
- Allow turning off drag in X and Y axes separately. [\#2413](https://github.com/danielgindi/Charts/pull/2413) ([maciejtrybilo](https://github.com/maciejtrybilo))
- Run view port jobs afterwards \(Fixes \#2395\) [\#2396](https://github.com/danielgindi/Charts/pull/2396) ([feosuna1](https://github.com/feosuna1))
- Minor improvements in BalloonMarker.swift [\#2393](https://github.com/danielgindi/Charts/pull/2393) ([valeriyvan](https://github.com/valeriyvan))
- remove build for ci tests procedure, use `clean test` directly [\#2388](https://github.com/danielgindi/Charts/pull/2388) ([liuxuan30](https://github.com/liuxuan30))
- Update Travis config for Xcode 8.3 and fix test failures [\#2378](https://github.com/danielgindi/Charts/pull/2378) ([liuxuan30](https://github.com/liuxuan30))
- Fix Simple Bar Chart Demo, switch use of x and y values [\#2365](https://github.com/danielgindi/Charts/pull/2365) ([franqueli](https://github.com/franqueli))
- Bug fixing with one line, updating ChartViewBase.swift [\#2355](https://github.com/danielgindi/Charts/pull/2355) ([Eric0625](https://github.com/Eric0625))
- Fixed, If the last value is the max or min, the range will be wrong [\#2229](https://github.com/danielgindi/Charts/pull/2229) ([aelam](https://github.com/aelam))
- fix \#2222 move default backgroundColor to initialize\(\) [\#2228](https://github.com/danielgindi/Charts/pull/2228) ([liuxuan30](https://github.com/liuxuan30))
- Fix \#1879. Similar cut in half issue in scatter chart like others [\#1891](https://github.com/danielgindi/Charts/pull/1891) ([liuxuan30](https://github.com/liuxuan30))
## [v3.0.2](https://github.com/danielgindi/Charts/tree/v3.0.2) (2017-04-02)
[Full Changelog](https://github.com/danielgindi/Charts/compare/v3.0.1...v3.0.2)
**Implemented enhancements:**
- Plotting Realm data in Swift. RLMResults not available [\#898](https://github.com/danielgindi/Charts/issues/898)
**Fixed bugs:**
- \[Bug\] Double BarChart second value text mispaced [\#1191](https://github.com/danielgindi/Charts/issues/1191)
- \<Error\>: CGAffineTransformInvert: singular matrix [\#802](https://github.com/danielgindi/Charts/issues/802)
**Closed issues:**
- Please give option for installing via Swift Package Manager too [\#2313](https://github.com/danielgindi/Charts/issues/2313)
- Adjust spacing between axis labels and axes? [\#2310](https://github.com/danielgindi/Charts/issues/2310)
- \*PieChart\* Get color of top 3 largest percent [\#2308](https://github.com/danielgindi/Charts/issues/2308)
- Set the x axis data problems, and 2.3.0 apis are quite different.Need your help [\#2307](https://github.com/danielgindi/Charts/issues/2307)
- little issue with chart custoemView size & chart data [\#2305](https://github.com/danielgindi/Charts/issues/2305)
- hello,A small problem. [\#2303](https://github.com/danielgindi/Charts/issues/2303)
- Running 1 of 1 custom shell scripts [\#2302](https://github.com/danielgindi/Charts/issues/2302)
- Multiple warnings xCode 8.3 [\#2298](https://github.com/danielgindi/Charts/issues/2298)
- Remove color label in pie-chart [\#2297](https://github.com/danielgindi/Charts/issues/2297)
- Charts 2.3 with Swift 3 \(xCode 8.3\) [\#2295](https://github.com/danielgindi/Charts/issues/2295)
- Modify Marker before showing value [\#2294](https://github.com/danielgindi/Charts/issues/2294)
- Xcode 8.3: 62 deprecation warnings [\#2293](https://github.com/danielgindi/Charts/issues/2293)
- Fix warning for Xcode8.3 [\#2292](https://github.com/danielgindi/Charts/issues/2292)
- Chart Selected function is not called on click of every Bar. [\#2291](https://github.com/danielgindi/Charts/issues/2291)
- “Swift Language Version” [\#2290](https://github.com/danielgindi/Charts/issues/2290)
- Swift 3.1 support [\#2288](https://github.com/danielgindi/Charts/issues/2288)
- Swift 3.1 Build [\#2287](https://github.com/danielgindi/Charts/issues/2287)
- ChartTouchDelegate never called [\#2286](https://github.com/danielgindi/Charts/issues/2286)
- Radar map size setting [\#2284](https://github.com/danielgindi/Charts/issues/2284)
- How do I set the radar map size? [\#2283](https://github.com/danielgindi/Charts/issues/2283)
- Adjust circle radius for individual line chart data point [\#2282](https://github.com/danielgindi/Charts/issues/2282)
- Get current axis interval between labels [\#2281](https://github.com/danielgindi/Charts/issues/2281)
- Only allow slice space for the selected item in a pie chart [\#2278](https://github.com/danielgindi/Charts/issues/2278)
- PieChartDataSet [\#2277](https://github.com/danielgindi/Charts/issues/2277)
- I want to un-highlight a line chart when dragging has stopped, among other things. Am I missing it? Thanks [\#2276](https://github.com/danielgindi/Charts/issues/2276)
- Demo for Swift 3 [\#2274](https://github.com/danielgindi/Charts/issues/2274)
- Getting the percentage and label for a slice [\#2273](https://github.com/danielgindi/Charts/issues/2273)
- Line chart - LineChartDataSet Background color. [\#2272](https://github.com/danielgindi/Charts/issues/2272)
- place image at top of each bar in bar graph [\#2271](https://github.com/danielgindi/Charts/issues/2271)
- How to draw circle at the end of a data set on line chart [\#2270](https://github.com/danielgindi/Charts/issues/2270)
- when i install pod 'Charts'. its install Old Version Of library 2.3 and give me error convert code into latest swift. [\#2269](https://github.com/danielgindi/Charts/issues/2269)
- ChartsDemo Buildtime Error: No such module 'RealmSwift' [\#2268](https://github.com/danielgindi/Charts/issues/2268)
- Total Data [\#2267](https://github.com/danielgindi/Charts/issues/2267)
- Line Chart Highlight, Remove X axis line and display label [\#2266](https://github.com/danielgindi/Charts/issues/2266)
- Increasing bar width in grouped sets of BarChartView [\#2263](https://github.com/danielgindi/Charts/issues/2263)
- lineChart.leftAxis.startAtZeroEnabled is not available in Swift 3 library [\#2262](https://github.com/danielgindi/Charts/issues/2262)
- Can't find highlightcolor [\#2256](https://github.com/danielgindi/Charts/issues/2256)
- Custom yAxis values [\#2254](https://github.com/danielgindi/Charts/issues/2254)
- Dynamic generate Int values for axis [\#2253](https://github.com/danielgindi/Charts/issues/2253)
- viewController can't be dealloc [\#2252](https://github.com/danielgindi/Charts/issues/2252)
- How to include a gap between data points & lines [\#2251](https://github.com/danielgindi/Charts/issues/2251)
- Highlight particular X and Y coordinations in the iOS charts [\#2250](https://github.com/danielgindi/Charts/issues/2250)
- Bar shapes are overlapped with other bars [\#2248](https://github.com/danielgindi/Charts/issues/2248)
- Xaxis Label value in range \(2.5-5.0,5.0-7.5\) [\#2246](https://github.com/danielgindi/Charts/issues/2246)
- Multiline axis labels are cut off [\#2244](https://github.com/danielgindi/Charts/issues/2244)
- Problems with creating CombinedChart \(Line + grouped BarChart\) in Swift 3.0 [\#2243](https://github.com/danielgindi/Charts/issues/2243)
- Convert to Current Swift Syntax [\#2242](https://github.com/danielgindi/Charts/issues/2242)
- Line chart real time data - memory leak [\#2241](https://github.com/danielgindi/Charts/issues/2241)
- Radar chart bug - grey view shown on 6 plus and 7 plus [\#2238](https://github.com/danielgindi/Charts/issues/2238)
- How to set dual axis in line chart [\#2237](https://github.com/danielgindi/Charts/issues/2237)
- Tableview stuttering when rendering a pie chart [\#2234](https://github.com/danielgindi/Charts/issues/2234)
- Set vertical legend [\#2233](https://github.com/danielgindi/Charts/issues/2233)
- how to join XAxisLabel in MultipleBarChart under every Bar [\#2232](https://github.com/danielgindi/Charts/issues/2232)
- Custom xAxisRenderer [\#2230](https://github.com/danielgindi/Charts/issues/2230)
- demo can not run [\#2227](https://github.com/danielgindi/Charts/issues/2227)
- Change color of lineChartDataSet when chartValueSelected [\#2226](https://github.com/danielgindi/Charts/issues/2226)
- Legend Label problem when the device changes orientation [\#2224](https://github.com/danielgindi/Charts/issues/2224)
- Legend vertical offset for horizontally aligned legends [\#2223](https://github.com/danielgindi/Charts/issues/2223)
- Don't display or load all Variables on the Left of the Bar \(iOS - Swift 3\) [\#2221](https://github.com/danielgindi/Charts/issues/2221)
- Horizontal Bar Chart lines not visible with two BarChartDataSet in chart data [\#2220](https://github.com/danielgindi/Charts/issues/2220)
- Bar chart with limit line for each Bar [\#2219](https://github.com/danielgindi/Charts/issues/2219)
- why the zero can't show at the first [\#2218](https://github.com/danielgindi/Charts/issues/2218)
- About BalloonMarker [\#2216](https://github.com/danielgindi/Charts/issues/2216)
- How can I have these values in positive? Thanks. [\#2212](https://github.com/danielgindi/Charts/issues/2212)
- Line Graph is not showing line on the Chart [\#2209](https://github.com/danielgindi/Charts/issues/2209)
- Issue of enum description [\#2208](https://github.com/danielgindi/Charts/issues/2208)
- I find a issues in HorizontalBarChartView [\#2205](https://github.com/danielgindi/Charts/issues/2205)
- My ipa\(used Charts\) is 40M ;another ipa\(unused Charts\) is 13M,how to be sliming??? [\#2203](https://github.com/danielgindi/Charts/issues/2203)
- Legend vertical offset [\#2202](https://github.com/danielgindi/Charts/issues/2202)
- Charts not showing on tvOS [\#2201](https://github.com/danielgindi/Charts/issues/2201)
- Is it enable to keep the origin visible X Range when I appended more data [\#2198](https://github.com/danielgindi/Charts/issues/2198)
- Issue with Realm [\#2195](https://github.com/danielgindi/Charts/issues/2195)
- External lines - Pie Chart [\#2194](https://github.com/danielgindi/Charts/issues/2194)
- Hide labels - Pie chart [\#2193](https://github.com/danielgindi/Charts/issues/2193)
- is two sided bar graph possible ? [\#2192](https://github.com/danielgindi/Charts/issues/2192)
- Optimisation of drawing many points on line graph [\#2190](https://github.com/danielgindi/Charts/issues/2190)
- Bar Chart with dual axis [\#2188](https://github.com/danielgindi/Charts/issues/2188)
- Customize Text inside Ballon Marker [\#2186](https://github.com/danielgindi/Charts/issues/2186)
- "Shell Script Invocation Error: Command /bin/sh failed with exit code 1' [\#2185](https://github.com/danielgindi/Charts/issues/2185)
- Increase space between bars with only one dataset and assign font for specific value and xAxis label [\#2184](https://github.com/danielgindi/Charts/issues/2184)
- "noDataText" does not work [\#2179](https://github.com/danielgindi/Charts/issues/2179)
- Change color of one label [\#2178](https://github.com/danielgindi/Charts/issues/2178)
- Line Chart not show empty values - Charts 3.0 [\#2176](https://github.com/danielgindi/Charts/issues/2176)
- Bottom Label is not printing whole array list. [\#2175](https://github.com/danielgindi/Charts/issues/2175)
- Stacked Horizontal Chart Scaling [\#2174](https://github.com/danielgindi/Charts/issues/2174)
- How to set different colors for intervals on LineChart? [\#2172](https://github.com/danielgindi/Charts/issues/2172)
- Could you tell me how to forbidden line chart scroll up and down? [\#2171](https://github.com/danielgindi/Charts/issues/2171)
- Fixed BarWidth based on Pixel for BarChart [\#2170](https://github.com/danielgindi/Charts/issues/2170)
- Branch Chart3.0-Swift2.3 not found. [\#2166](https://github.com/danielgindi/Charts/issues/2166)
- "clipValuesToContentEnabled" does not work [\#2163](https://github.com/danielgindi/Charts/issues/2163)
- BarChartView with TableView [\#2161](https://github.com/danielgindi/Charts/issues/2161)
- How to show label on x-axis at regular interval and tail end on the graph line [\#2160](https://github.com/danielgindi/Charts/issues/2160)
- Set line cap to CGMutablePath [\#2159](https://github.com/danielgindi/Charts/issues/2159)
- why we set the y value 2.57,but the chart show 3,if i set y value2.44,the chart show 2.how to do the problem. [\#2157](https://github.com/danielgindi/Charts/issues/2157)
- Demo crush !!! [\#2154](https://github.com/danielgindi/Charts/issues/2154)
- Fixing the Segmentation fault issue after Convert to Swift 3.0 [\#2151](https://github.com/danielgindi/Charts/issues/2151)
- GitHub API request failed [\#2149](https://github.com/danielgindi/Charts/issues/2149)
- y-Values and x-Values as string in barchart, [\#2147](https://github.com/danielgindi/Charts/issues/2147)
- Piechart with smooth edges? [\#2146](https://github.com/danielgindi/Charts/issues/2146)
- Pie chart highlighted slice offset [\#2144](https://github.com/danielgindi/Charts/issues/2144)
- Formatter data on OS X [\#2141](https://github.com/danielgindi/Charts/issues/2141)
- How to add dates to line chart? [\#2136](https://github.com/danielgindi/Charts/issues/2136)
- 'backgroundColor' is inaccessible due to 'internal' protection level on mac OS X [\#2135](https://github.com/danielgindi/Charts/issues/2135)
- Some object files have incompatible Objective-C category definitions. Some category metadata may be lost. All files containing Objective-C categories should be built using the same compiler. [\#2133](https://github.com/danielgindi/Charts/issues/2133)
- Any Demo of all charts in Swift 3 [\#2132](https://github.com/danielgindi/Charts/issues/2132)
- How to access the Position of labels on x axis of Combined Line and Bar chart on swift\(3.0.1\) [\#2131](https://github.com/danielgindi/Charts/issues/2131)
- Wrong Limit line positioning when axisMinimum is set to 0 [\#2128](https://github.com/danielgindi/Charts/issues/2128)
- Extremely Slow compile Times on XCode 8.2.1 and swift 3.0.2 [\#2127](https://github.com/danielgindi/Charts/issues/2127)
- How to add TrackBall and edit label above BarCharts in Charts swift2 and swift 3?? [\#2126](https://github.com/danielgindi/Charts/issues/2126)
- Xcode 8.3 Compatible [\#2125](https://github.com/danielgindi/Charts/issues/2125)
- LineChartData\(dataSets: dataSets\) Missing xVals [\#2124](https://github.com/danielgindi/Charts/issues/2124)
- How to assign custom String values to XAxis? [\#2122](https://github.com/danielgindi/Charts/issues/2122)
- Simple Radar Chart causing hang / cpu 99% [\#2121](https://github.com/danielgindi/Charts/issues/2121)
- Can i use the framework without including the whole project ? [\#2118](https://github.com/danielgindi/Charts/issues/2118)
- Undefined symbols for architecture arm64 - Charts 3.0 CocoaPods [\#2117](https://github.com/danielgindi/Charts/issues/2117)
- method setlabelstoskip missing from XAxis.swift [\#2115](https://github.com/danielgindi/Charts/issues/2115)
- SocketIOClientConfiguration.swift wont compile [\#2113](https://github.com/danielgindi/Charts/issues/2113)
- No code signing identities found: No valid signing identities \(i.e. certificate and private key pair\) were found [\#2112](https://github.com/danielgindi/Charts/issues/2112)
- Can I custom draw circle in LineChart in version 3.0 ?\[help\] [\#2104](https://github.com/danielgindi/Charts/issues/2104)
- App crash XCode 8.2 Chart version 3.0 [\#2103](https://github.com/danielgindi/Charts/issues/2103)
- Charts 3.0.1 - Align x labels \(dates\) with plots [\#2094](https://github.com/danielgindi/Charts/issues/2094)
- Demo in Swift 3 [\#2092](https://github.com/danielgindi/Charts/issues/2092)
- How to set xAxis values from array in Swift 3.0 [\#2090](https://github.com/danielgindi/Charts/issues/2090)
- error to Methode [\#2089](https://github.com/danielgindi/Charts/issues/2089)
- fitBars doesnt seems to work [\#2088](https://github.com/danielgindi/Charts/issues/2088)
- oh, no!!!!!! Demo code can't run [\#2087](https://github.com/danielgindi/Charts/issues/2087)
- In BarChartView leftAxis labels cutdown, does-not fit on screen. [\#2086](https://github.com/danielgindi/Charts/issues/2086)
- accessing .rightAxis gives EXC\_BAD\_ACCESS [\#2082](https://github.com/danielgindi/Charts/issues/2082)
- leftAxis and value overlap in lineChartView [\#2080](https://github.com/danielgindi/Charts/issues/2080)
- I want to add 4 colours to the background of the chart. The colour zones depend on the y values. [\#2079](https://github.com/danielgindi/Charts/issues/2079)
- Value labels for multiple ChartDataSets all aligned at the beginning \(left\) of each bar in HorizontalBarChart [\#2077](https://github.com/danielgindi/Charts/issues/2077)
- How to Resize Labels in Pie Chart Legend [\#2075](https://github.com/danielgindi/Charts/issues/2075)
- Bar chart data entry [\#2074](https://github.com/danielgindi/Charts/issues/2074)
- How can I have a limit zone \(in android library mpandroidchart\) like feature in this iOS library [\#2073](https://github.com/danielgindi/Charts/issues/2073)
- BarChartView is unavailable, cannot find swift declaration [\#2072](https://github.com/danielgindi/Charts/issues/2072)
- Not enable to draw custom shape which is based on the XValue or YValue ? [\#2071](https://github.com/danielgindi/Charts/issues/2071)
- Can horizontalBarChartView invert the Axis ? [\#2070](https://github.com/danielgindi/Charts/issues/2070)
- can't set different padding of each side [\#2068](https://github.com/danielgindi/Charts/issues/2068)
- Area chart with missing points [\#2067](https://github.com/danielgindi/Charts/issues/2067)
- Demo code can't run [\#2066](https://github.com/danielgindi/Charts/issues/2066)
- Positioning the XAxis inconsistent with Y-axis and the Wiki in Swift 3 [\#2065](https://github.com/danielgindi/Charts/issues/2065)
- Radar chart title [\#2061](https://github.com/danielgindi/Charts/issues/2061)
- fixed increment [\#2059](https://github.com/danielgindi/Charts/issues/2059)
- Line Chart with callouts [\#2058](https://github.com/danielgindi/Charts/issues/2058)
- Delegate ChartValueSelected Not Called. [\#2057](https://github.com/danielgindi/Charts/issues/2057)
- IValueFormatter protocol not working [\#2055](https://github.com/danielgindi/Charts/issues/2055)
- "BalloonMarker“ cannot be find in my project [\#2051](https://github.com/danielgindi/Charts/issues/2051)
- How to use marker when I use CombinedChart? [\#2046](https://github.com/danielgindi/Charts/issues/2046)
- yVals have decimal point [\#2045](https://github.com/danielgindi/Charts/issues/2045)
- LeftAxis Labels will disappear [\#2044](https://github.com/danielgindi/Charts/issues/2044)
- Can't addEntry to a set in Swift 3 [\#2043](https://github.com/danielgindi/Charts/issues/2043)
- Will not compile in existing Objective-C Project. [\#2041](https://github.com/danielgindi/Charts/issues/2041)
- labels on xAxis not showing up and incorrect values on yAxis [\#2040](https://github.com/danielgindi/Charts/issues/2040)
- xAxis.valueFormatter = self create retain cycle [\#2039](https://github.com/danielgindi/Charts/issues/2039)
- Label's point of view [\#2038](https://github.com/danielgindi/Charts/issues/2038)
- How to show limited visible xValues labels? [\#2037](https://github.com/danielgindi/Charts/issues/2037)
- BarChart XAxis between Positive & Negative Values [\#2036](https://github.com/danielgindi/Charts/issues/2036)
- Error when trying to run ChartsDemo on iOS Simulator \(image not found\) [\#2035](https://github.com/danielgindi/Charts/issues/2035)
- big snap shot [\#2034](https://github.com/danielgindi/Charts/issues/2034)
- module file's minimum deployment target is ios9.3 [\#2031](https://github.com/danielgindi/Charts/issues/2031)
- Date formatter doesn't show up properly when using multiple bars in a chart. [\#2030](https://github.com/danielgindi/Charts/issues/2030)
- Y axis dynamic sampling ? [\#2029](https://github.com/danielgindi/Charts/issues/2029)
- Convert line chart entry to take dictionary [\#2027](https://github.com/danielgindi/Charts/issues/2027)
- How to set string value line \(27 Oct\) in xAxis [\#2025](https://github.com/danielgindi/Charts/issues/2025)
- Build \[ChartsDemo\] Error : 「ChartsRealm Reason: image not found 」alaway [\#2024](https://github.com/danielgindi/Charts/issues/2024)
- \[LineChartView\] setting xAxis.axisMinimum affects xAxis.spaceMin [\#2022](https://github.com/danielgindi/Charts/issues/2022)
- c vcgffrgfffgffgfgffffrfrfrrfdfdfdfdfdfdfggkjhghghghghjhjhjhjkjkjkkkklklklklikii0987654321poijkl;';lk;l; [\#2021](https://github.com/danielgindi/Charts/issues/2021)
- How to make the highlight line work with UIPanGestureRecognizer [\#2019](https://github.com/danielgindi/Charts/issues/2019)
- BarChart Issue for plotting the value on x-axis serially [\#2017](https://github.com/danielgindi/Charts/issues/2017)
- Please help me with the Pie Charts in Charts 3.0.1. [\#2016](https://github.com/danielgindi/Charts/issues/2016)
- ipa becomes larger after using Charts [\#2015](https://github.com/danielgindi/Charts/issues/2015)
- BarChartView highlight issues [\#2014](https://github.com/danielgindi/Charts/issues/2014)
- How to set up a line chart, the starting point of the distance from the left margin, border distance end points [\#2013](https://github.com/danielgindi/Charts/issues/2013)
- mult bars not show all [\#2012](https://github.com/danielgindi/Charts/issues/2012)
- how to change legend font size? [\#2011](https://github.com/danielgindi/Charts/issues/2011)
- image instead of text in CenterText in pie chart [\#2010](https://github.com/danielgindi/Charts/issues/2010)
- Change PieChart Center Color [\#2009](https://github.com/danielgindi/Charts/issues/2009)
- Demo issues [\#2008](https://github.com/danielgindi/Charts/issues/2008)
- How to display last label in X-Axis [\#2007](https://github.com/danielgindi/Charts/issues/2007)
- One point different values on the axis X [\#2005](https://github.com/danielgindi/Charts/issues/2005)
- Hide all text/labels/values in pieChart [\#2004](https://github.com/danielgindi/Charts/issues/2004)
- it is not an issue. it is related to OHLC chart [\#2003](https://github.com/danielgindi/Charts/issues/2003)
- Disable PieChart Label in Chart [\#2002](https://github.com/danielgindi/Charts/issues/2002)
- \[LineChartViewController stringForValue:axis:\] [\#2001](https://github.com/danielgindi/Charts/issues/2001)
- Values are cut out of the window [\#2000](https://github.com/danielgindi/Charts/issues/2000)
- XAxis in top AND bottom position [\#1999](https://github.com/danielgindi/Charts/issues/1999)
- Can't compile under Xcode 8.1 with Swift 3.0 [\#1998](https://github.com/danielgindi/Charts/issues/1998)
- Always display max 5 visible bars in BarChartView [\#1997](https://github.com/danielgindi/Charts/issues/1997)
- I want touchpoint in the bar to do something [\#1996](https://github.com/danielgindi/Charts/issues/1996)
- Is there any way to change chart data label from bottom of table to top? [\#1995](https://github.com/danielgindi/Charts/issues/1995)
- Installation not clear, for me [\#1994](https://github.com/danielgindi/Charts/issues/1994)
- Add space between bar chart [\#1993](https://github.com/danielgindi/Charts/issues/1993)
- How to fix the distance between each point on the X-coordinate? [\#1992](https://github.com/danielgindi/Charts/issues/1992)
- How to add tips to RadarChartView [\#1991](https://github.com/danielgindi/Charts/issues/1991)
- Piechart issue [\#1990](https://github.com/danielgindi/Charts/issues/1990)
- Multiple colors issue in stacked bar line charts swift3 [\#1989](https://github.com/danielgindi/Charts/issues/1989)
- ChartViewDelegate is not called. [\#1988](https://github.com/danielgindi/Charts/issues/1988)
- Always display vertical scrolling indicator on horizontal bar chart [\#1987](https://github.com/danielgindi/Charts/issues/1987)
- Can't compile DemoProject [\#1986](https://github.com/danielgindi/Charts/issues/1986)
- My pie chart legends still not showing [\#1985](https://github.com/danielgindi/Charts/issues/1985)
- no yValCount in ChartData [\#1982](https://github.com/danielgindi/Charts/issues/1982)
- no limitLineSegmentsBuffer in YAxisRenderer [\#1981](https://github.com/danielgindi/Charts/issues/1981)
- Legend label missing in pie chart [\#1980](https://github.com/danielgindi/Charts/issues/1980)
- For X axis the values are not adding [\#1979](https://github.com/danielgindi/Charts/issues/1979)
- When I have two data, charts shows the three data automatically [\#1978](https://github.com/danielgindi/Charts/issues/1978)
- Two legends for stacked bar chart [\#1977](https://github.com/danielgindi/Charts/issues/1977)
- X axis coordinate point spacing [\#1975](https://github.com/danielgindi/Charts/issues/1975)
- Carthage was not found [\#1974](https://github.com/danielgindi/Charts/issues/1974)
- How to Show XAxis Label On YAxis Bar In BarView Charts? [\#1973](https://github.com/danielgindi/Charts/issues/1973)
- Labels on Mac OS X application : place and title [\#1972](https://github.com/danielgindi/Charts/issues/1972)
- I am gettign @import AppKit is missing in Charts-Swift.h under charts.framework [\#1971](https://github.com/danielgindi/Charts/issues/1971)
- Multiline chart with common data point [\#1970](https://github.com/danielgindi/Charts/issues/1970)
- Version 3.0.1: Fill gradient fills out the wrong side of the chart [\#1968](https://github.com/danielgindi/Charts/issues/1968)
- How to pass data to the X axis?? [\#1967](https://github.com/danielgindi/Charts/issues/1967)
- How do I implement a legend click event? [\#1965](https://github.com/danielgindi/Charts/issues/1965)
- can't set the XVals [\#1964](https://github.com/danielgindi/Charts/issues/1964)
- Color for Legend label [\#1962](https://github.com/danielgindi/Charts/issues/1962)
- Two y axis plot on a side? [\#1961](https://github.com/danielgindi/Charts/issues/1961)
- Scrolling feature? [\#1960](https://github.com/danielgindi/Charts/issues/1960)
- Can you add the chart Of the triangle? [\#1958](https://github.com/danielgindi/Charts/issues/1958)
- Multiple y-data for single x-index [\#1955](https://github.com/danielgindi/Charts/issues/1955)
- LineChartView: axisMaximum and axisMinimum work wrong in rightAxis [\#1953](https://github.com/danielgindi/Charts/issues/1953)
- Radar Chart axis maximum [\#1952](https://github.com/danielgindi/Charts/issues/1952)
- Adding a single x-axis label for two data points. [\#1951](https://github.com/danielgindi/Charts/issues/1951)
- Adding title to X-axis and Y-axis [\#1950](https://github.com/danielgindi/Charts/issues/1950)
- Find screen location for bars in a bar chart [\#1949](https://github.com/danielgindi/Charts/issues/1949)
- \(3.0 Regression\) Scatter chart cuts off data at the edges [\#1946](https://github.com/danielgindi/Charts/issues/1946)
- How automatic showing marker? [\#1944](https://github.com/danielgindi/Charts/issues/1944)
- Right and left margins [\#1942](https://github.com/danielgindi/Charts/issues/1942)
- Displaying an overlay with extra / more detailed information on mouse hover [\#1940](https://github.com/danielgindi/Charts/issues/1940)
- Can we have flexible y Axis scale [\#1939](https://github.com/danielgindi/Charts/issues/1939)
- Charts3.0 - Can not show all the xAxis label if more than 8 value - Swift [\#1938](https://github.com/danielgindi/Charts/issues/1938)
- Barchart xAxis interval [\#1937](https://github.com/danielgindi/Charts/issues/1937)
- Avoiding chart legend [\#1936](https://github.com/danielgindi/Charts/issues/1936)
- Module compiled with Swift 2.3 cannot be imported in Swift 3.0.1 [\#1935](https://github.com/danielgindi/Charts/issues/1935)
- Charts-2.3.0/Source/ChartsRealm/Data/RealmPieData.swift:19:8: No such module 'Realm' [\#1934](https://github.com/danielgindi/Charts/issues/1934)
- iOS Demo Fails to build [\#1933](https://github.com/danielgindi/Charts/issues/1933)
- Pie chart Outside values, Inside Value and legend value [\#1932](https://github.com/danielgindi/Charts/issues/1932)
- Mermory Leak in "specialized ChartXAxisRenderer.drawLabels\(context : CGContext, pos : CGFloat, anchor : CGPoint\) -\> \(\)" [\#1928](https://github.com/danielgindi/Charts/issues/1928)
- stringForValue method return unexpected value when reload TableView data. [\#1927](https://github.com/danielgindi/Charts/issues/1927)
- Can't render CombinedChartView [\#1926](https://github.com/danielgindi/Charts/issues/1926)
- Migration to Chart 3.0, Problem with Stack BarChartView [\#1925](https://github.com/danielgindi/Charts/issues/1925)
- PieChartData issue in Swift 3 [\#1924](https://github.com/danielgindi/Charts/issues/1924)
- Values overlap for bar chart and labels of X-Axis [\#1923](https://github.com/danielgindi/Charts/issues/1923)
- Please Please Help, I can’t get Charts installed properly [\#1922](https://github.com/danielgindi/Charts/issues/1922)
- Chart bar finance \(OHLC Chart\) [\#1921](https://github.com/danielgindi/Charts/issues/1921)
- Double value cannot be converted to Int in AxisRendererBase.swift on line 125 [\#1920](https://github.com/danielgindi/Charts/issues/1920)
- Highlighted values on piechart too high? [\#1919](https://github.com/danielgindi/Charts/issues/1919)
- How to achieve this effect? [\#1918](https://github.com/danielgindi/Charts/issues/1918)
- SOLVED: Round number less than zero x values issue [\#1916](https://github.com/danielgindi/Charts/issues/1916)
- Charts does not install correctly [\#1915](https://github.com/danielgindi/Charts/issues/1915)
- Xcode 8.1 is reporting 'No such Module 'Charts' & Build/Compilation Errors [\#1914](https://github.com/danielgindi/Charts/issues/1914)
- Hide legend [\#1913](https://github.com/danielgindi/Charts/issues/1913)
- xAxis force show last label [\#1912](https://github.com/danielgindi/Charts/issues/1912)
- How to install in Xcode 7.3.1 [\#1911](https://github.com/danielgindi/Charts/issues/1911)
- Can we resurrect Chart2.2.5-Swift3.0? [\#1910](https://github.com/danielgindi/Charts/issues/1910)
- Chart Swift files not running on Obj-C XCODE8.0 install [\#1908](https://github.com/danielgindi/Charts/issues/1908)
- How to draw two circles and compare? [\#1906](https://github.com/danielgindi/Charts/issues/1906)
- custom xAxis for line chart I need an example [\#1905](https://github.com/danielgindi/Charts/issues/1905)
- QUESTION - How mask the ranges values in a Graph [\#1904](https://github.com/danielgindi/Charts/issues/1904)
- How to give xAxis customized labels for linechartview [\#1903](https://github.com/danielgindi/Charts/issues/1903)
- How to set the axis options of radar chart? [\#1902](https://github.com/danielgindi/Charts/issues/1902)
- no match color bar chart with label [\#1900](https://github.com/danielgindi/Charts/issues/1900)
- LineChartView highlightEnabled no work [\#1899](https://github.com/danielgindi/Charts/issues/1899)
- Can i change the value Above bar from double to int? [\#1898](https://github.com/danielgindi/Charts/issues/1898)
- Scrolling x-axis labels [\#1897](https://github.com/danielgindi/Charts/issues/1897)
- noDataText doesn't work on CombinedChart \(works fine on PieChart and BarChart\) [\#1896](https://github.com/danielgindi/Charts/issues/1896)
- StringForValue in class IValueFormatter receives dataSetIndex as 0 [\#1895](https://github.com/danielgindi/Charts/issues/1895)
- Cannot build in big project using cocoapods [\#1894](https://github.com/danielgindi/Charts/issues/1894)
- Carthage build error with xcode 8.1 and Charts 2.3.0 [\#1893](https://github.com/danielgindi/Charts/issues/1893)
- Unable to select BarChartView from storyboard \(iOS\) [\#1892](https://github.com/danielgindi/Charts/issues/1892)
- XAxis entry count is greater than it should be. [\#1890](https://github.com/danielgindi/Charts/issues/1890)
- pod update failed - ARC Semantic Issue [\#1888](https://github.com/danielgindi/Charts/issues/1888)
- How to show marker on y-Axis data? [\#1887](https://github.com/danielgindi/Charts/issues/1887)
- Can't building and run the ChartsDemo [\#1886](https://github.com/danielgindi/Charts/issues/1886)
- how to resolve label overlapping problem with stack bar chart [\#1885](https://github.com/danielgindi/Charts/issues/1885)
- PieChart values [\#1884](https://github.com/danielgindi/Charts/issues/1884)
- Custom marker gets displayed wrong on the latest value [\#1883](https://github.com/danielgindi/Charts/issues/1883)
- Tap gesture inside the candle bar [\#1882](https://github.com/danielgindi/Charts/issues/1882)
- rotating chartview [\#1881](https://github.com/danielgindi/Charts/issues/1881)
- \[Question\] Scatter Chart && Bubble Chart: How to show out whole radius instead of hiding half radius of first data entry? [\#1879](https://github.com/danielgindi/Charts/issues/1879)
- Horizontal bar chart dose not show all xAxis labels. [\#1878](https://github.com/danielgindi/Charts/issues/1878)
- X axis values [\#1877](https://github.com/danielgindi/Charts/issues/1877)
- Pie Chart no xAxis [\#1875](https://github.com/danielgindi/Charts/issues/1875)
- want the demo application in swift 3.0 for Charts [\#1872](https://github.com/danielgindi/Charts/issues/1872)
- Pie Bar Chart issues [\#1870](https://github.com/danielgindi/Charts/issues/1870)
- PieChartView a strange arrow [\#1869](https://github.com/danielgindi/Charts/issues/1869)
- custom gradient color of BarChatView [\#1868](https://github.com/danielgindi/Charts/issues/1868)
- Set space between labels in xAxis [\#1865](https://github.com/danielgindi/Charts/issues/1865)
- label over sample point [\#1864](https://github.com/danielgindi/Charts/issues/1864)
- Realtime Scatterplot crashes when each ChartDataEntry is added dynamically on ScatterView.data [\#1863](https://github.com/danielgindi/Charts/issues/1863)
- Assign Bar Colours Selectively [\#1862](https://github.com/danielgindi/Charts/issues/1862)
- Detect when finger leaves the chart area [\#1861](https://github.com/danielgindi/Charts/issues/1861)
- Pie chart touch event conflict [\#1860](https://github.com/danielgindi/Charts/issues/1860)
- Customize X-axis and grid lines [\#1859](https://github.com/danielgindi/Charts/issues/1859)
- Issue with candle stick when used in combined chart [\#1858](https://github.com/danielgindi/Charts/issues/1858)
- CandleStick Background Color [\#1857](https://github.com/danielgindi/Charts/issues/1857)
- Line Support Gradient Color? [\#1856](https://github.com/danielgindi/Charts/issues/1856)
- Piechart has no xAxis? [\#1855](https://github.com/danielgindi/Charts/issues/1855)
- Retain cycle setting delegate to valueFormatter [\#1854](https://github.com/danielgindi/Charts/issues/1854)
- how to show Xaxis label value as my array value [\#1852](https://github.com/danielgindi/Charts/issues/1852)
- Skip Drawing Circles for LineCharts [\#1795](https://github.com/danielgindi/Charts/issues/1795)
- Realm update [\#1789](https://github.com/danielgindi/Charts/issues/1789)
- "Module compiled with Swift 3.0 cannot be imported in Swift 3.0.1" [\#1788](https://github.com/danielgindi/Charts/issues/1788)
- Move Realm integration to another repository [\#1756](https://github.com/danielgindi/Charts/issues/1756)
- limit line real time update [\#1755](https://github.com/danielgindi/Charts/issues/1755)
- Travis does not use github token for pull request build [\#1734](https://github.com/danielgindi/Charts/issues/1734)
- custom string value at top of bar. [\#1109](https://github.com/danielgindi/Charts/issues/1109)
**Merged pull requests:**
- Minor typo fix in console alert message "it's" -\> "its" [\#2301](https://github.com/danielgindi/Charts/pull/2301) ([simonbromberg](https://github.com/simonbromberg))
- Fix Xcode 8.3 compiler warnings [\#2279](https://github.com/danielgindi/Charts/pull/2279) ([krbarnes](https://github.com/krbarnes))
- Updated to use Realm version 2.4.3 [\#2199](https://github.com/danielgindi/Charts/pull/2199) ([kimdv](https://github.com/kimdv))
- Fixed the inconsistency of AxisMax and AxisMin [\#2177](https://github.com/danielgindi/Charts/pull/2177) ([aelam](https://github.com/aelam))
- Fixes index out of range crash. [\#2167](https://github.com/danielgindi/Charts/pull/2167) ([kzaher](https://github.com/kzaher))
- remove deprecation warnings in XCode 8.3 [\#2162](https://github.com/danielgindi/Charts/pull/2162) ([LeviDahl](https://github.com/LeviDahl))
- 'backgroundColor' is inaccessible due to 'internal' protection level … [\#2156](https://github.com/danielgindi/Charts/pull/2156) ([thierryH91200](https://github.com/thierryH91200))
- Fixes Xcode 8.3 beta build issue [\#2116](https://github.com/danielgindi/Charts/pull/2116) ([davidarve](https://github.com/davidarve))
- Adds NSPhotoLibraryUsageDescription to plist of ChartsDemo [\#2101](https://github.com/danielgindi/Charts/pull/2101) ([valeriyvan](https://github.com/valeriyvan))
- Fix demo and test targets not running/testing [\#2084](https://github.com/danielgindi/Charts/pull/2084) ([petester42](https://github.com/petester42))
- fix a typo, as orientation is horizontal by default [\#2078](https://github.com/danielgindi/Charts/pull/2078) ([liuxuan30](https://github.com/liuxuan30))
- Update Podspec RealmSwift Dependency to 2.1.1 to be in line with Cartfile [\#2064](https://github.com/danielgindi/Charts/pull/2064) ([anttyc](https://github.com/anttyc))
- Fix NSCopying implementation in CandleChartDataEntry [\#2056](https://github.com/danielgindi/Charts/pull/2056) ([leo150](https://github.com/leo150))
- Add support for extensions [\#2048](https://github.com/danielgindi/Charts/pull/2048) ([raptorxcz](https://github.com/raptorxcz))
- Update "Usage" section of README [\#1984](https://github.com/danielgindi/Charts/pull/1984) ([elaewin](https://github.com/elaewin))
- All Charts Icons Support Swift3 \[Dub \#629, \#624, \#1261\] [\#1793](https://github.com/danielgindi/Charts/pull/1793) ([abjurato](https://github.com/abjurato))
## [v3.0.1](https://github.com/danielgindi/Charts/tree/v3.0.1) (2016-11-20)
[Full Changelog](https://github.com/danielgindi/Charts/compare/v2.3.1...v3.0.1)
**Closed issues:**
- Legend under the bar in bar Chart [\#1850](https://github.com/danielgindi/Charts/issues/1850)
- MultipleBarChart barSpace does not work [\#1849](https://github.com/danielgindi/Charts/issues/1849)
- Can not show decimal in y value on BarChart [\#1848](https://github.com/danielgindi/Charts/issues/1848)
- Cannot add labels to a simple Bar Chart [\#1846](https://github.com/danielgindi/Charts/issues/1846)
- when running my project on iphone device but not simulator it has error"image not found" [\#1845](https://github.com/danielgindi/Charts/issues/1845)
- Removing red selector cross on Line Chart nodes [\#1844](https://github.com/danielgindi/Charts/issues/1844)
- Get screen\(x,y\) value from the plotted points [\#1843](https://github.com/danielgindi/Charts/issues/1843)
- Color between two limit lines [\#1842](https://github.com/danielgindi/Charts/issues/1842)
- Charts-umbrella.h [\#1841](https://github.com/danielgindi/Charts/issues/1841)
- Unable to call 'data' from lineChartView. [\#1839](https://github.com/danielgindi/Charts/issues/1839)
- How to use charts library in my objective c program?.. [\#1837](https://github.com/danielgindi/Charts/issues/1837)
- Migration to Swift 3.x [\#1836](https://github.com/danielgindi/Charts/issues/1836)
- How to hide BarChart hide bottom description color & text ? [\#1835](https://github.com/danielgindi/Charts/issues/1835)
- please help Line Graph not working on Charts 2.3.0 \(for Xcode8 and Swift 2.3.0\) [\#1834](https://github.com/danielgindi/Charts/issues/1834)
- Error when adding embedded binaries [\#1832](https://github.com/danielgindi/Charts/issues/1832)
- X-Axis for different different charts [\#1831](https://github.com/danielgindi/Charts/issues/1831)
- Setting values label [\#1829](https://github.com/danielgindi/Charts/issues/1829)
- Adding background color between two limit lines [\#1828](https://github.com/danielgindi/Charts/issues/1828)
- Horizontal bar chart doesn't start at 0 [\#1827](https://github.com/danielgindi/Charts/issues/1827)
- Gradient Background for LineChart. \(Not Working\) [\#1826](https://github.com/danielgindi/Charts/issues/1826)
- y axis label show wiered value 1.11022302462516e- when passed 0 as value [\#1825](https://github.com/danielgindi/Charts/issues/1825)
- Pie chart specific colors [\#1824](https://github.com/danielgindi/Charts/issues/1824)
- Help ? [\#1823](https://github.com/danielgindi/Charts/issues/1823)
- Its possible change the thickness of the pie chart? [\#1822](https://github.com/danielgindi/Charts/issues/1822)
- BarChart moveToX wrong [\#1820](https://github.com/danielgindi/Charts/issues/1820)
- How to set multiple Stackbar with Charts 3 [\#1819](https://github.com/danielgindi/Charts/issues/1819)
- How do i set [\#1818](https://github.com/danielgindi/Charts/issues/1818)
- LimitLine Label Value Overlap with BarChartData Label [\#1817](https://github.com/danielgindi/Charts/issues/1817)
- What is the replacement for xVals for BarChartData? in swift 3.0 [\#1816](https://github.com/danielgindi/Charts/issues/1816)
- Updated Demo Example for swift3 [\#1815](https://github.com/danielgindi/Charts/issues/1815)
- Line Chart: how to change background color through every odd label on YAxis? [\#1812](https://github.com/danielgindi/Charts/issues/1812)
- Can Radar Chart draw backgroud like this? [\#1811](https://github.com/danielgindi/Charts/issues/1811)
- Can i customize the X axis text a different color? [\#1810](https://github.com/danielgindi/Charts/issues/1810)
- Can we make a 3D Barchart with this Library?? [\#1809](https://github.com/danielgindi/Charts/issues/1809)
- 3.0.0 - adding X Values to LineChartData no longer supported? [\#1808](https://github.com/danielgindi/Charts/issues/1808)
- Swift 3 BarChart with image and title. [\#1807](https://github.com/danielgindi/Charts/issues/1807)
- How to make horizontal dotted lines or remove it? [\#1806](https://github.com/danielgindi/Charts/issues/1806)
- Full control over x labels in 3.0.0 [\#1804](https://github.com/danielgindi/Charts/issues/1804)
- How to change stackbar according to order? [\#1803](https://github.com/danielgindi/Charts/issues/1803)
- How to change stackbar according to order [\#1802](https://github.com/danielgindi/Charts/issues/1802)
- How to set multiple StackBar ? [\#1801](https://github.com/danielgindi/Charts/issues/1801)
- \[Swift 3\] LineChartData without xVals on constructor [\#1800](https://github.com/danielgindi/Charts/issues/1800)
- Zooming X and Y axis independently? [\#1799](https://github.com/danielgindi/Charts/issues/1799)
- Auto scroll xAxis [\#1798](https://github.com/danielgindi/Charts/issues/1798)
- How to add “%” to data in ios-chart [\#1797](https://github.com/danielgindi/Charts/issues/1797)
- can we set y axis max value to chart on horizontal bar graphs?? [\#1794](https://github.com/danielgindi/Charts/issues/1794)
- Fix the xAxis to use the values from my dataset [\#1791](https://github.com/danielgindi/Charts/issues/1791)
- PieChart values outside of chart? [\#1790](https://github.com/danielgindi/Charts/issues/1790)
- ChartLimitLine: How to customize label background and Position center of line [\#1787](https://github.com/danielgindi/Charts/issues/1787)
- With Xcode 8.1 can't build [\#1786](https://github.com/danielgindi/Charts/issues/1786)
- CandleStickChartView can not inherit [\#1784](https://github.com/danielgindi/Charts/issues/1784)
- Chart adds a -1 x-axis entry [\#1782](https://github.com/danielgindi/Charts/issues/1782)
- BarChart - Is It possible to limit the number of bars visible at a given time, and allow users to scroll through the rest horizontally ? [\#1781](https://github.com/danielgindi/Charts/issues/1781)
- Unable to Override some properties of LineChartView in Charts version 2.2.5 [\#1777](https://github.com/danielgindi/Charts/issues/1777)
- CandleStickChartView how to fixed-width, or based on the data dynamically calculate the zoom factor [\#1776](https://github.com/danielgindi/Charts/issues/1776)
- Scroll UIImageView on X-axes along with x-vals [\#1775](https://github.com/danielgindi/Charts/issues/1775)
- How to make BarChart Bar Sizes proportional? [\#1774](https://github.com/danielgindi/Charts/issues/1774)
- how can I set the spacing between bars ? [\#1773](https://github.com/danielgindi/Charts/issues/1773)
- Charts 3.0 labelCount bug? [\#1767](https://github.com/danielgindi/Charts/issues/1767)
- use lineCharts ,if i want show custom string at x, don't show int number, how to do it? [\#1760](https://github.com/danielgindi/Charts/issues/1760)
- ChartUtils Crash on 32 Bit Devices [\#1737](https://github.com/danielgindi/Charts/issues/1737)
**Merged pull requests:**
- Added a check against NaN [\#1733](https://github.com/danielgindi/Charts/pull/1733) ([Selficide](https://github.com/Selficide))
## [v2.3.1](https://github.com/danielgindi/Charts/tree/v2.3.1) (2016-11-04)
[Full Changelog](https://github.com/danielgindi/Charts/compare/v3.0.0...v2.3.1)
**Fixed bugs:**
- \[BUG\] multiple bar chart in ChartsDemo not display full for last x value [\#1770](https://github.com/danielgindi/Charts/issues/1770)
- PieChartDataSet no slice space shown when an entry has 0 value [\#1730](https://github.com/danielgindi/Charts/issues/1730)
- Bar on BarChart and CombinedChart doesn't start one Zero line [\#1729](https://github.com/danielgindi/Charts/issues/1729)
- Weird highlight rect in Stacked Bar Chart Negative [\#1726](https://github.com/danielgindi/Charts/issues/1726)
- CombinedChartView with CandleData - first/last candlesticks are cut in half [\#1717](https://github.com/danielgindi/Charts/issues/1717)
- Bug with showing negative values and vertical zooming Horizontal Bar Chart [\#1702](https://github.com/danielgindi/Charts/issues/1702)
- Setting circleHoleColor to clear causes artifact [\#1691](https://github.com/danielgindi/Charts/issues/1691)
- Charts 3.0 Carthage update issue [\#1690](https://github.com/danielgindi/Charts/issues/1690)
**Closed issues:**
- Problem with Formatter [\#1779](https://github.com/danielgindi/Charts/issues/1779)
- Could not cast value of type 'Charts.BarChartData' \(0x109bd1010\) to 'Charts.PieChartData' \(0x109be0320\). [\#1778](https://github.com/danielgindi/Charts/issues/1778)
- BarChartView - The first column and last column show only half? [\#1772](https://github.com/danielgindi/Charts/issues/1772)
- Stacked Bar Chart Opacity of Some Colors [\#1769](https://github.com/danielgindi/Charts/issues/1769)
- Custom Format YAxis [\#1768](https://github.com/danielgindi/Charts/issues/1768)
- to run ChartsDemo [\#1765](https://github.com/danielgindi/Charts/issues/1765)
- There is something wrong with LineChartView,ChartDataEntry,LineChartData and ChartDataEntry [\#1764](https://github.com/danielgindi/Charts/issues/1764)
- Strange margin/space in a grouped BarChart [\#1763](https://github.com/danielgindi/Charts/issues/1763)
- How to get the chart data entry points [\#1762](https://github.com/danielgindi/Charts/issues/1762)
- the newest version ,it can't build successes in xcode8,it pause at half,no stop or fail. [\#1761](https://github.com/danielgindi/Charts/issues/1761)
- Sorry, I no speak English, 3.0版本的LineChartView [\#1759](https://github.com/danielgindi/Charts/issues/1759)
- How to set x-axis labels with ios charts [\#1758](https://github.com/danielgindi/Charts/issues/1758)
- After 3.0 Upgrade, Marker not automatically showing [\#1757](https://github.com/danielgindi/Charts/issues/1757)
- How to set horizontal Value with a string array at my code using Charts 3.0 [\#1754](https://github.com/danielgindi/Charts/issues/1754)
- Issue with centering xAxis labels [\#1750](https://github.com/danielgindi/Charts/issues/1750)
- Charts / Swift 3.0 - Fatal error: Index out of range [\#1749](https://github.com/danielgindi/Charts/issues/1749)
- ChartsDemo dependency on realm-cocoa ~\> 1.1 issue [\#1748](https://github.com/danielgindi/Charts/issues/1748)
- Carthage realm-cocoa ~\> 1.1 dependency conflict [\#1747](https://github.com/danielgindi/Charts/issues/1747)
- how to set a Array of String for X-axis in swift 3? [\#1746](https://github.com/danielgindi/Charts/issues/1746)
- Xcode 8.1 is reporting 'No such Module 'Charts'' [\#1743](https://github.com/danielgindi/Charts/issues/1743)
- Swift: Custom Xaxis and Yaxis problem. [\#1740](https://github.com/danielgindi/Charts/issues/1740)
- xAxis value starting at "-1" instead of "0" in grouped barchart [\#1739](https://github.com/danielgindi/Charts/issues/1739)
- Compiling issue - xcode 8 [\#1736](https://github.com/danielgindi/Charts/issues/1736)
- How to make Radar five top angle tap enabled? [\#1735](https://github.com/danielgindi/Charts/issues/1735)
- Strings for Labels in Swift 3 [\#1732](https://github.com/danielgindi/Charts/issues/1732)
- HorizontalBarChart values not showing Charts 3.0 [\#1731](https://github.com/danielgindi/Charts/issues/1731)
- getMarkerPositionWithHighlight: always return CGPointZero [\#1728](https://github.com/danielgindi/Charts/issues/1728)
- Why drawValues is outside of clipping contentRect [\#1727](https://github.com/danielgindi/Charts/issues/1727)
- Set max highlight distance [\#1725](https://github.com/danielgindi/Charts/issues/1725)
- Trouble making custom labels along the X and Y Axis of my bar chart [\#1724](https://github.com/danielgindi/Charts/issues/1724)
- Swift 3 - BarChartData, resetLabelsToSkip\(\) and setLabelsToSkip\(0\) not working [\#1723](https://github.com/danielgindi/Charts/issues/1723)
- When zooming in, x-axis shows more labels than values [\#1722](https://github.com/danielgindi/Charts/issues/1722)
- How to set the xValues to the BarchartData ? [\#1721](https://github.com/danielgindi/Charts/issues/1721)
- How to show custom text on Y-axis of Line Chart? [\#1720](https://github.com/danielgindi/Charts/issues/1720)
- Add UIButtons to data points in a line graph, plotting date and time in X-axis [\#1719](https://github.com/danielgindi/Charts/issues/1719)
- How to set the xValues to the BarchartData ? [\#1718](https://github.com/danielgindi/Charts/issues/1718)
- \<Error\>: Error: this application, or a library it uses, has passed an invalid numeric value \(NaN, or not-a-number\) to CoreGraphics API and this value is being ignored.Please fix this problem. [\#1714](https://github.com/danielgindi/Charts/issues/1714)
- cancel group display in BarChart [\#1713](https://github.com/danielgindi/Charts/issues/1713)
- PieChart, label is a little of values ,labels is overlap [\#1710](https://github.com/danielgindi/Charts/issues/1710)
- how to port calls to getEntriesAtIndex [\#1709](https://github.com/danielgindi/Charts/issues/1709)
- Exception upon calling \[ChartDataEntry initWithX:y:\] via ObjC + Charts using Pods as Framework [\#1708](https://github.com/danielgindi/Charts/issues/1708)
- Multiple bar Chart Xvalues Doesn't come centre to the grouped bars... [\#1707](https://github.com/danielgindi/Charts/issues/1707)
- \[BarChartDataEntry\] axis to accept NSString [\#1706](https://github.com/danielgindi/Charts/issues/1706)
- Conflict: Charts's Range conflict with Apple NSRange\(Swift 3: Range\). It makes me can not use the Apple's Range [\#1705](https://github.com/danielgindi/Charts/issues/1705)
- Excuse me, BarChartData the " initWithXVals:\(NSArray \*data\) dataSets:\(NSArray \*data\)" in Swift 3.0 V "XVals" is what method is the?I can't find the way,Help me。 [\#1704](https://github.com/danielgindi/Charts/issues/1704)
- Excuse me,BarChartData the initWithXVals:\(NSArray \*data\) dataSets:\(NSArray \*data\) in Swift 3.0 V What method is the?I can't find the way,Help me。 [\#1703](https://github.com/danielgindi/Charts/issues/1703)
- X-Axis and Y-Axis is not shown in swift 3 [\#1701](https://github.com/danielgindi/Charts/issues/1701)
- Can i use 2.2.5 version with Swift3 [\#1700](https://github.com/danielgindi/Charts/issues/1700)
- I update the pod to 3.0.0 but Xcode still wants to convert to Swift 3 [\#1699](https://github.com/danielgindi/Charts/issues/1699)
- \[Question\] Multiple lines with different units [\#1698](https://github.com/danielgindi/Charts/issues/1698)
- \[Question\] Missing intermediate values [\#1697](https://github.com/danielgindi/Charts/issues/1697)
- What happened to X-Axis labels in 3.0? [\#1696](https://github.com/danielgindi/Charts/issues/1696)
- What is the new delegate for selection of values in the chart swift 3.0 [\#1695](https://github.com/danielgindi/Charts/issues/1695)
- Can I have two different Yaxis scale on combined chart [\#1694](https://github.com/danielgindi/Charts/issues/1694)
- Zooming LineChart xAxis on 32bit device doesn't work correctly. [\#1693](https://github.com/danielgindi/Charts/issues/1693)
- How to show xAxis All value and Rotate Label? v3.0 [\#1692](https://github.com/danielgindi/Charts/issues/1692)
- \[LineChartView\] Wrong position Highlight and xAxis [\#1689](https://github.com/danielgindi/Charts/issues/1689)
- How to get back x-values for BarChart\[Charts 3 migration problem\] [\#1688](https://github.com/danielgindi/Charts/issues/1688)
- How to move data labels outside the chart. [\#1687](https://github.com/danielgindi/Charts/issues/1687)
- RadarChartView implementation [\#1686](https://github.com/danielgindi/Charts/issues/1686)
- problem with custom xaxis labels [\#1685](https://github.com/danielgindi/Charts/issues/1685)
- Update spec on cocoapods to 3.0 [\#1683](https://github.com/danielgindi/Charts/issues/1683)
- Pod install: SSL: certificate verification failed [\#1682](https://github.com/danielgindi/Charts/issues/1682)
- Setting a pieChartDataSet on 3.0 [\#1681](https://github.com/danielgindi/Charts/issues/1681)
- String value at x Axis of BarChart [\#1680](https://github.com/danielgindi/Charts/issues/1680)
- Zooming LineChart x axis on 32bit processor doesn't work as expected [\#1679](https://github.com/danielgindi/Charts/issues/1679)
- ChartLimitLine background color [\#1678](https://github.com/danielgindi/Charts/issues/1678)
- Left and right slide bar chart only half and remove background grid [\#1654](https://github.com/danielgindi/Charts/issues/1654)
- Setting centerAxisLabelsEnabled with a granularity set does not centre [\#1652](https://github.com/danielgindi/Charts/issues/1652)
- Realm and Charts 3.0 tutorial [\#1651](https://github.com/danielgindi/Charts/issues/1651)
- HorizontalBarChartView text for xValues -- charts 3.0 [\#1646](https://github.com/danielgindi/Charts/issues/1646)
- 'spaceBetweenLabels' not found on object XAxis [\#1643](https://github.com/danielgindi/Charts/issues/1643)
- this func -nsuiTouchesEnded does not work [\#1642](https://github.com/danielgindi/Charts/issues/1642)
- Adjust circle for selected point [\#1597](https://github.com/danielgindi/Charts/issues/1597)
- CombinedChartView fitBars property [\#1569](https://github.com/danielgindi/Charts/issues/1569)
- How to show x-axis labels only when value is a DataEntry in Line Chart? [\#1536](https://github.com/danielgindi/Charts/issues/1536)
- Why the coordinate points and the X axis the above data is not aligned? [\#1492](https://github.com/danielgindi/Charts/issues/1492)
- \*\*\*\*\*\*\*\*\*\*\*\*\* Migrating to Charts 3.0 \*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\* [\#1474](https://github.com/danielgindi/Charts/issues/1474)
- How to show ChartMarker in CombinedChart? [\#1454](https://github.com/danielgindi/Charts/issues/1454)
- How to set the data margin Align right? [\#1372](https://github.com/danielgindi/Charts/issues/1372)
- Correct date on x axis [\#1325](https://github.com/danielgindi/Charts/issues/1325)
- The chart above and the chart below how to align [\#1276](https://github.com/danielgindi/Charts/issues/1276)
- Unable to select BarChartView from storyboard \(OS X\) [\#1197](https://github.com/danielgindi/Charts/issues/1197)
**Merged pull requests:**
- Fix png image using JPEG type when being saved on macOS [\#1783](https://github.com/danielgindi/Charts/pull/1783) ([petester42](https://github.com/petester42))
- Updated Width Constraints - Fixes \#1770 [\#1771](https://github.com/danielgindi/Charts/pull/1771) ([SumoSimo](https://github.com/SumoSimo))
- update cocoapods [\#1684](https://github.com/danielgindi/Charts/pull/1684) ([petester42](https://github.com/petester42))
## [v3.0.0](https://github.com/danielgindi/Charts/tree/v3.0.0) (2016-10-19)
[Full Changelog](https://github.com/danielgindi/Charts/compare/v2.3.0...v3.0.0)
**Implemented enhancements:**
- Chart description is drawn on top of markers [\#1344](https://github.com/danielgindi/Charts/issues/1344)
**Fixed bugs:**
- CandleStickChart - last CandleStick cut in half [\#1668](https://github.com/danielgindi/Charts/issues/1668)
- X labels Issues [\#1639](https://github.com/danielgindi/Charts/issues/1639)
- Marker display is abnormal [\#1575](https://github.com/danielgindi/Charts/issues/1575)
- Misplaced Radar Marker [\#1556](https://github.com/danielgindi/Charts/issues/1556)
- fatal error: Double value cannot be converted to Int because it is either infinite or NaN [\#1550](https://github.com/danielgindi/Charts/issues/1550)
- Problem with the xValue begins at 0 [\#1547](https://github.com/danielgindi/Charts/issues/1547)
- \(v3.0 + Swift3.0\)LineChart crash when dataSets is a empty array [\#1491](https://github.com/danielgindi/Charts/issues/1491)
- \(v3.0 + swift3.0\) charts' top are cropped/overlapped in ChartsDemo [\#1489](https://github.com/danielgindi/Charts/issues/1489)
- \(v3.0 + Swift3.0\) Time Line Chart Demo crash [\#1488](https://github.com/danielgindi/Charts/issues/1488)
- Last Value doesn't appear in barCharts and lineCharts [\#1384](https://github.com/danielgindi/Charts/issues/1384)
- Distance between chart legend and the chart is to big in case of rotated labels [\#1360](https://github.com/danielgindi/Charts/issues/1360)
- xAxis labels not align with values in Multiple Bar Chart [\#1334](https://github.com/danielgindi/Charts/issues/1334)
- text value on the last entry is missing from line chart [\#1323](https://github.com/danielgindi/Charts/issues/1323)
**Closed issues:**
- Finding the RadarChartView center position in a view [\#1677](https://github.com/danielgindi/Charts/issues/1677)
- How do I Use IValueFormatter to format XAxis labels in swift? [\#1676](https://github.com/danielgindi/Charts/issues/1676)
- How to set lineChart type to cubic lines [\#1674](https://github.com/danielgindi/Charts/issues/1674)
- In IOS 10 Xcode 8,I got some issues [\#1673](https://github.com/danielgindi/Charts/issues/1673)
- the first and last point have a line [\#1672](https://github.com/danielgindi/Charts/issues/1672)
- Last value on line graph has no text [\#1671](https://github.com/danielgindi/Charts/issues/1671)
- can I fix number of overlapping this problem? [\#1670](https://github.com/danielgindi/Charts/issues/1670)
- chartValueSelected delegate not called [\#1669](https://github.com/danielgindi/Charts/issues/1669)
- Charts.frameworkiOS did not show up [\#1667](https://github.com/danielgindi/Charts/issues/1667)
- Half a bar the first one of chart [\#1666](https://github.com/danielgindi/Charts/issues/1666)
- Charts : iOS 10, Xcode 8 - Embedded Framework iTunes Store operation failed while uploading on App Store [\#1665](https://github.com/danielgindi/Charts/issues/1665)
- We need an old version for Xcode 7.0 [\#1664](https://github.com/danielgindi/Charts/issues/1664)
- LineChartView is rotating LineChartData in 3.0 [\#1663](https://github.com/danielgindi/Charts/issues/1663)
- Showing all xAxis labels in a BarChart no matter the number of bars [\#1661](https://github.com/danielgindi/Charts/issues/1661)
- Can I set different color Label in lineChart?ForExample [\#1660](https://github.com/danielgindi/Charts/issues/1660)
- Combined Charts - Negative values for Line Chart are not rendered [\#1659](https://github.com/danielgindi/Charts/issues/1659)
- Swift 2.2 : How to show custom labels on x-axis ? [\#1658](https://github.com/danielgindi/Charts/issues/1658)
- Legends for multiple dataSets and multiple bar charts allignment [\#1657](https://github.com/danielgindi/Charts/issues/1657)
- Multi chart setup xAxis value format [\#1656](https://github.com/danielgindi/Charts/issues/1656)
- xAxis when zooming [\#1655](https://github.com/danielgindi/Charts/issues/1655)
- Request to solve a sort of bug [\#1653](https://github.com/danielgindi/Charts/issues/1653)
- Updating the last Candlestick entry. [\#1649](https://github.com/danielgindi/Charts/issues/1649)
- Use of '@import' when modules are disabled [\#1647](https://github.com/danielgindi/Charts/issues/1647)
- Didn't show last Y Axis [\#1645](https://github.com/danielgindi/Charts/issues/1645)
- noDataText is not working [\#1644](https://github.com/danielgindi/Charts/issues/1644)
- Custom background color [\#1641](https://github.com/danielgindi/Charts/issues/1641)
- Cannot get my Linechart to work since Xcode 8 update [\#1640](https://github.com/danielgindi/Charts/issues/1640)
- Horizontal Highlight at touch/click point... ?? [\#1636](https://github.com/danielgindi/Charts/issues/1636)
- Some acute questions about ZDLineChartView [\#1635](https://github.com/danielgindi/Charts/issues/1635)
- \[Travis\] Travis won't build issue [\#1633](https://github.com/danielgindi/Charts/issues/1633)
- PieChartView cannot show values name . [\#1632](https://github.com/danielgindi/Charts/issues/1632)
- How to make points interactive/draggable [\#1631](https://github.com/danielgindi/Charts/issues/1631)
- Charts 3.0 with Swift 3.0 [\#1630](https://github.com/danielgindi/Charts/issues/1630)
- LineChartData is nolonger allow initWithXVals, what should I do? [\#1629](https://github.com/danielgindi/Charts/issues/1629)
- BarChartData do not find this method initWithXVals: dataSets: [\#1628](https://github.com/danielgindi/Charts/issues/1628)
- Charts 3.0: How to set x-values for a line chart? [\#1627](https://github.com/danielgindi/Charts/issues/1627)
- How can I display the x Axis values on a LineChartView? [\#1625](https://github.com/danielgindi/Charts/issues/1625)
- Xcode - 8.0, Working Fine in Xcode 7.3 -up to iOS\(9.3\) Crash in Xcode 8 - iOS 10 [\#1624](https://github.com/danielgindi/Charts/issues/1624)
- I can't see the final number on the chart. [\#1623](https://github.com/danielgindi/Charts/issues/1623)
- can I Achieve this? Using this framework [\#1622](https://github.com/danielgindi/Charts/issues/1622)
- When Will Charts 3.0 Be Version Tagged? [\#1620](https://github.com/danielgindi/Charts/issues/1620)
- RadarChartData xVals cant use [\#1619](https://github.com/danielgindi/Charts/issues/1619)
- Extract ChartsRealm and Realm from the Charts project [\#1618](https://github.com/danielgindi/Charts/issues/1618)
- Crashing xcode 7.3.1 [\#1617](https://github.com/danielgindi/Charts/issues/1617)
- Method does not override any method from its superclass [\#1616](https://github.com/danielgindi/Charts/issues/1616)
- warning: Swift Charts 2.3.0 - error in module ChartsDebug info from this module will be unavailable in the debugger. [\#1615](https://github.com/danielgindi/Charts/issues/1615)
- ChartViewDelegate's chartValueSelected is tied up with Highlights [\#1614](https://github.com/danielgindi/Charts/issues/1614)
- 'ChartViewDelegate' is unavailable: cannot find Swift declaration for this class. [\#1613](https://github.com/danielgindi/Charts/issues/1613)
- \[NOT AN ISSUE\] Release for Charts 3.0 [\#1612](https://github.com/danielgindi/Charts/issues/1612)
- Charts/Classes/Utils/ChartUtils.swift error [\#1611](https://github.com/danielgindi/Charts/issues/1611)
- Issue with YAxis max and min in the RadarChart [\#1610](https://github.com/danielgindi/Charts/issues/1610)
- App Crash: could not cast to 'Charts.PieChartData': in 2.3.0 when upgrading to XCode 8.0 [\#1609](https://github.com/danielgindi/Charts/issues/1609)
- customAxisMin and customAxisMax not found on object ChartYAxis [\#1608](https://github.com/danielgindi/Charts/issues/1608)
- Using version 3.0 with Carthage? [\#1607](https://github.com/danielgindi/Charts/issues/1607)
- Chart 3.0 swift 3.0 [\#1606](https://github.com/danielgindi/Charts/issues/1606)
- Chart not centered/middled when having less values [\#1605](https://github.com/danielgindi/Charts/issues/1605)
- How to use a date/string for the X value [\#1604](https://github.com/danielgindi/Charts/issues/1604)
- Setting AxisBase.axisMaximum results in an axisRange of zero [\#1603](https://github.com/danielgindi/Charts/issues/1603)
- Pods failing for swift3.0 [\#1602](https://github.com/danielgindi/Charts/issues/1602)
- BarChart View issues [\#1601](https://github.com/danielgindi/Charts/issues/1601)
- Support for swift 3.0 [\#1600](https://github.com/danielgindi/Charts/issues/1600)
- Pod pointing to master branch code created issue in BarChartDataEntry [\#1599](https://github.com/danielgindi/Charts/issues/1599)
- Swift based library, but OC based Demo. Have you ever thought of provide a Swifty Demo? [\#1598](https://github.com/danielgindi/Charts/issues/1598)
- Grid and xaxis label issues. [\#1596](https://github.com/danielgindi/Charts/issues/1596)
- LeftAxis above bars in BarChartView [\#1595](https://github.com/danielgindi/Charts/issues/1595)
- cannot convert value of type\<\> to expected arguments RLMResults\<RLMObjects\> [\#1594](https://github.com/danielgindi/Charts/issues/1594)
- Member 'index' cannot be used on value of protocol type 'collection'; use a generic constraint instead [\#1593](https://github.com/danielgindi/Charts/issues/1593)
- Scrollable Graph [\#1592](https://github.com/danielgindi/Charts/issues/1592)
- charts 2.3 unsupported architectures i386 [\#1591](https://github.com/danielgindi/Charts/issues/1591)
- BarChart doesn't refresh after new dataSet [\#1590](https://github.com/danielgindi/Charts/issues/1590)
- Label of ChartLimitLine overlaps limit line a little [\#1589](https://github.com/danielgindi/Charts/issues/1589)
- IChartAxisValueFormatter cound't found [\#1588](https://github.com/danielgindi/Charts/issues/1588)
- How to use v2.2.5 swift3.0 in OC Project? [\#1587](https://github.com/danielgindi/Charts/issues/1587)
- Last LineChart y-label not being rendered [\#1585](https://github.com/danielgindi/Charts/issues/1585)
- Charts 3.0: Custom xAxis labels with gaps in data? [\#1584](https://github.com/danielgindi/Charts/issues/1584)
- BarChart xAxis labels disappear after zooming [\#1583](https://github.com/danielgindi/Charts/issues/1583)
- Add space between bars [\#1582](https://github.com/danielgindi/Charts/issues/1582)
- How to use v2.2.5 swift3.0 in OC Project? [\#1581](https://github.com/danielgindi/Charts/issues/1581)
- malloc: \*\*\* error for object : Invalid pointer dequeued from free list\*\*\* set a breakpoint in malloc\_error\_break to debug [\#1580](https://github.com/danielgindi/Charts/issues/1580)
- i want to add % in value [\#1579](https://github.com/danielgindi/Charts/issues/1579)
- Update the code to Swift 3.0 compliance [\#1578](https://github.com/danielgindi/Charts/issues/1578)
- Can I set a text label underneath each bar of a bar chart? [\#1577](https://github.com/danielgindi/Charts/issues/1577)
- Line Chart X-Axis values as a string [\#1576](https://github.com/danielgindi/Charts/issues/1576)
- Hide values in Combines chart [\#1574](https://github.com/danielgindi/Charts/issues/1574)
- Method does not override any method from its superclass [\#1573](https://github.com/danielgindi/Charts/issues/1573)