DVPlot.h 649 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // DVPlot.h
  3. // DVLineChart
  4. //
  5. // Created by Fire on 15/10/17.
  6. // Copyright © 2015年 DuoLaiDian. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <UIKit/UIKit.h>
  10. @interface DVPlot : NSObject
  11. /**
  12. * 线的颜色
  13. */
  14. @property (strong, nonatomic) UIColor *lineColor;
  15. /**
  16. * 坐标点数组
  17. */
  18. @property (strong, nonatomic) NSArray *pointArray;
  19. @property (strong, nonatomic) UIColor *pointColor;
  20. @property (strong, nonatomic) UIColor *pointSelectedColor;
  21. /**
  22. * 是否将颜色充满图表
  23. */
  24. @property (assign, nonatomic, getter=isChartViewFill) BOOL chartViewFill;
  25. @property (assign, nonatomic) BOOL withPoint;
  26. @end