From 9308577aa579e5e6e7723830ca9c38cac1e62988 Mon Sep 17 00:00:00 2001 From: 单军华 Date: Thu, 12 Jul 2018 13:46:07 +0800 Subject: [PATCH] 百度地图文件 --- screendisplay/screendisplay/Classes/ThirdClass/JHChart/JHColumnChart.h | 76 ++++++++++++++++++++++++++++++++++++++ 1 files changed, 76 insertions(+), 0 deletions(-) diff --git a/screendisplay/screendisplay/Classes/ThirdClass/JHChart/JHColumnChart.h b/screendisplay/screendisplay/Classes/ThirdClass/JHChart/JHColumnChart.h new file mode 100755 index 0000000..eee6f10 --- /dev/null +++ b/screendisplay/screendisplay/Classes/ThirdClass/JHChart/JHColumnChart.h @@ -0,0 +1,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 -- Gitblit v1.8.0