Toggle navigation
Toggle navigation
This project
Loading...
Sign in
iOS
/
PNChart
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Kevin
2014-05-04 10:37:14 +0800
Browse Files
Options
Browse Files
Download
Plain Diff
Commit
af4727a57c2ca5ebce51b228553db2f825c5eab1
af4727a5
2 parents
c930f6a6
0548d8d8
Merge pull request #52 from rochefort/fix-readme
Remove unused values in data list
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
README.md
README.md
View file @
af4727a
...
...
@@ -44,7 +44,7 @@ You will need LLVM 3.0 or later in order to build PNChart.
[lineChart setXLabels:@[@"SEP 1",@"SEP 2",@"SEP 3",@"SEP 4",@"SEP 5"]];
// Line Chart No.1
NSArray * data01Array = @[@60.1, @160.1, @126.4, @262.2, @186.2
, @127.2, @176.2
];
NSArray * data01Array = @[@60.1, @160.1, @126.4, @262.2, @186.2];
PNLineChartData *data01 = [PNLineChartData new];
data01.color = PNFreshGreen;
data01.itemCount = lineChart.xLabels.count;
...
...
@@ -53,7 +53,7 @@ You will need LLVM 3.0 or later in order to build PNChart.
return [PNLineChartDataItem dataItemWithY:yValue];
};
// Line Chart No.2
NSArray * data02Array = @[@20.1, @180.1, @26.4, @202.2, @126.2
, @167.2, @276.2
];
NSArray * data02Array = @[@20.1, @180.1, @26.4, @202.2, @126.2];
PNLineChartData *data02 = [PNLineChartData new];
data02.color = PNTwitterColor;
data02.itemCount = lineChart.xLabels.count;
...
...
Please
register
or
login
to post a comment