DVPlot.m 416 B

1234567891011121314151617181920212223
  1. //
  2. // DVPlot.m
  3. // DVLineChart
  4. //
  5. // Created by Fire on 15/10/17.
  6. // Copyright © 2015年 DuoLaiDian. All rights reserved.
  7. //
  8. #import "DVPlot.h"
  9. @implementation DVPlot
  10. - (instancetype)init {
  11. if (self = [super init]) {
  12. self.lineColor = [UIColor blackColor];
  13. self.pointColor = [UIColor blackColor];
  14. self.pointSelectedColor = [UIColor orangeColor];
  15. }
  16. return self;
  17. }
  18. @end