-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathZCLineChart.h
More file actions
33 lines (29 loc) · 827 Bytes
/
ZCLineChart.h
File metadata and controls
33 lines (29 loc) · 827 Bytes
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
//
// ZCLineChart.h
// LineChart
//
// Created by zhangchao on 16/3/2.
// Copyright © 2016年 zhangchao. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <LCLineChartView.h>
@interface ZCLineChart : NSObject
/**
*
*
* @param beginTIme 开始时间
* @param endTime 结束时间
* @param rect 位置
* @param unit 单位
* @param xArray x轴数据
* @param yArray y轴数据
*
* @return
*/
+(LCLineChartView*)drawChartViewBeginTime:(NSString*)beginTIme
EndTime:(NSString*)endTime
Rect:(CGRect)rect
Unit:(NSString*)unit
XArray:(NSMutableArray*)xArray
YArray:(NSMutableArray*)yArray;
@end