Skip to content

Commit 87fe228

Browse files
committed
Eliminates dependency on custom font. (I try to use preinstalled fonts whenever possible, to conserve space).
Permits font customization for various line chart elements. Permits custom min/max "Y" values for line charts, to allow for negative data points. (Changed sample data to test this). Permits the omission of value labels on line chart. Adds a light grey shadow for line chart, to help lines/labels "pop" a little. Uses customizable UIColor properties instead of repeatedly recreating CGColors from arrays of floats. Uses NSSortDescriptor to sort arrays of dictionaries. Uses JSONKit instead of SBJSON for speed and simplicity.
1 parent d6c3f1d commit 87fe228

15 files changed

+181
-248
lines changed

.gitmodules

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
[submodule "iOSPlot/SBJSON"]
2-
path = iOSPlot/SBJSON
3-
url = git@github.com:honcheng/SBJSON-library.git
1+
[submodule "iOSPlot/JSONKit"]
2+
path = iOSPlot/JSONKit
3+
url = git://github.com/johnezang/JSONKit.git

iOSPlot/HelveticaNeue.ttc

-1.33 MB
Binary file not shown.

iOSPlot/JSONKit

Submodule JSONKit added at b8359c6

iOSPlot/PlotCreator.xcodeproj/project.pbxproj

+41-69
Large diffs are not rendered by default.

iOSPlot/SBJSON

-1
This file was deleted.

iOSPlot/Sample Data/sample_linechart_data.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
69,
1010
70
1111
],
12-
"title": "AAA"
12+
"title": "Smith"
1313
},
1414
{
1515
"data": [
@@ -20,27 +20,27 @@
2020
22,
2121
30
2222
],
23-
"title": "BBB"
23+
"title": "Repub"
2424
},
2525
{
2626
"data": [
2727
40,
2828
55,
2929
56,
3030
66,
31-
70,
32-
70
31+
40,
32+
-30
3333
],
34-
"title": "CCC"
34+
"title": "Dem"
3535
},
3636
{
3737
"data": [
3838
null,
3939
89,
4040
90,
4141
85,
42-
90,
43-
95
42+
60,
43+
-15
4444
],
4545
"title": "DDD"
4646
},
@@ -51,7 +51,7 @@
5151
55,
5252
33,
5353
50,
54-
46
54+
-6
5555
],
5656
"title": "EEE"
5757
}

iOSPlot/Shared/PCLineChartView.h

+17-11
Original file line numberDiff line numberDiff line change
@@ -37,31 +37,37 @@
3737
{
3838
NSString *title;
3939
NSArray *points;
40-
NSArray *colour;
40+
UIColor *colour;
41+
BOOL shouldLabelValues;
4142
}
43+
@property (nonatomic, assign) BOOL shouldLabelValues;
4244
@property (nonatomic, retain) NSArray *points;
43-
@property (nonatomic, retain) NSArray *colour;
45+
@property (nonatomic, retain) UIColor *colour;
4446
@property (nonatomic, retain) NSString *title;
4547
@end
4648

47-
#define PCColorBlue [NSArray arrayWithObjects:[NSNumber numberWithFloat:0.0],[NSNumber numberWithFloat:153/255.0],[NSNumber numberWithFloat:204/255.0],[NSNumber numberWithFloat:1.0],nil]
48-
#define PCColorGreen [NSArray arrayWithObjects:[NSNumber numberWithFloat:153/255.0],[NSNumber numberWithFloat:204/255.0],[NSNumber numberWithFloat:51/255.0],[NSNumber numberWithFloat:1.0],nil]
49-
#define PCColorOrange [NSArray arrayWithObjects:[NSNumber numberWithFloat:1.0],[NSNumber numberWithFloat:153/255.0],[NSNumber numberWithFloat:51/255.0],[NSNumber numberWithFloat:1.0],nil]
50-
#define PCColorRed [NSArray arrayWithObjects:[NSNumber numberWithFloat:1.0],[NSNumber numberWithFloat:51/255.0],[NSNumber numberWithFloat:51/255.0],[NSNumber numberWithFloat:1.0],nil]
51-
#define PCColorYellow [NSArray arrayWithObjects:[NSNumber numberWithFloat:255/255.0],[NSNumber numberWithFloat:220/255.0],[NSNumber numberWithFloat:0.0],[NSNumber numberWithFloat:1.0],nil]
52-
#define PCColorDefault [NSArray arrayWithObjects:[NSNumber numberWithFloat:0.5],[NSNumber numberWithFloat:0.5],[NSNumber numberWithFloat:0.5],[NSNumber numberWithFloat:1.0],nil]
49+
50+
#define PCColorBlue [UIColor colorWithRed:0.0 green:153/255.0 blue:204/255.0 alpha:1.0]
51+
#define PCColorGreen [UIColor colorWithRed:153/255.0 green:204/255.0 blue:51/255.0 alpha:1.0]
52+
#define PCColorOrange [UIColor colorWithRed:1.0 green:153/255.0 blue:51/255.0 alpha:1.0]
53+
#define PCColorRed [UIColor colorWithRed:1.0 green:51/255.0 blue:51/255.0 alpha:1.0]
54+
#define PCColorYellow [UIColor colorWithRed:1.0 green:220/255.0 blue:0.0 alpha:1.0]
55+
#define PCColorDefault [UIColor colorWithRed:0.5 green:0.5 blue:0.5 alpha:1.0]
5356

5457

5558
@interface PCLineChartView : UIView {
5659
NSMutableArray *components;
5760
NSMutableArray *xLabels;
61+
UIFont *yLabelFont, *xLabelFont, *valueLabelFont, *legendFont;
5862
int interval;
63+
float minValue;
64+
float maxValue;
5965
}
6066

6167
@property (nonatomic, assign) int interval;
68+
@property (nonatomic, assign) float minValue;
69+
@property (nonatomic, assign) float maxValue;
6270
@property (nonatomic, retain) NSMutableArray *components, *xLabels;
63-
64-
int sortByNumber(NSNumber *firstComponent, NSNumber *secondComponent, void*context);
65-
int sortLegend(NSMutableDictionary *firstComponent, NSMutableDictionary *secondComponent, void*context);
71+
@property (nonatomic, retain) UIFont *yLabelFont, *xLabelFont, *valueLabelFont, *legendFont;
6672

6773
@end

0 commit comments

Comments
 (0)