单军华
2018-07-12 3e8437ae559487362fae3525beb79c534c213a51
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
//
//  JHColumnChart.h
//  JHChartDemo
//
//  Created by cjatech-简豪 on 16/5/10.
//  Copyright © 2016年 JH. All rights reserved.
//
 
#import "JHChart.h"
 
@interface JHColumnChart : JHChart
 
 
/**
 *  Each histogram of the background color, if you do not set the default value for green. Setup must ensure that the number and type of the data source array are the same, otherwise the default is not set.
 */
@property (nonatomic, strong) NSArray<NSArray *> * columnBGcolorsArr;
 
/**
 *  Data source array
 */
@property (nonatomic, strong) NSArray<NSArray *> * valueArr;
 
/**
 *  X axis classification of each icon
 */
@property (nonatomic, strong) NSArray * xShowInfoText;
 
 
/**
 *  The background color of the content view
 */
@property (nonatomic, strong) UIColor  * bgVewBackgoundColor;
 
 
/**
 *  Column spacing, non continuous, default is 5
 */
@property (nonatomic, assign) CGFloat typeSpace;
 
/**
 *  The width of the column, the default is 40
 */
@property (nonatomic, assign) CGFloat columnWidth;
 
/**
 *  Whether the need for Y, X axis, the default YES
 */
@property (nonatomic, assign) BOOL needXandYLine;
 
/**
 *  Y, X axis line color
 */
@property (nonatomic, strong) UIColor * colorForXYLine;
 
/**
 *  X, Y axis text description color
 */
@property (nonatomic, strong) UIColor * drawTextColorForX_Y;
 
/**
 *  Dotted line guide color
 */
@property (nonatomic, strong) UIColor * dashColor;
 
/**
 *  The starting point, can be understood as the origin of the left and bottom margins
 */
@property (nonatomic, assign) CGPoint originSize;
 
/**
 *  Starting from the origin of the horizontal distance histogram
 */
@property (nonatomic, assign) CGFloat drawFromOriginX;
 
@end