Github地址 https://github.com/zhangxiaomeng1/XMLineChartView

简书 https://www.jianshu.com/u/949e63975031

采用继承的方法,写了个基类,,重写- (void)drawRect:(CGRect)rect 方法,setNeedsDisplay 调用drawRect方法;

- (void)drawline:(CGContextRef)context

      startPoint:(CGPoint)startPoint

       stopPoint:(CGPoint)stopPoint

           color:(UIColor *)color

       lineWidth:(CGFloat)lineWitdth;

 

- (void)drawLabelPrice:(CGContextRef)context;

 

//高亮状态滑动

- (void)drawHighlighted:(CGContextRef)context

                  point:(CGPoint)point

                   idex:(NSInteger)idex

                  value:(id)value

                  color:(UIColor *)color

              lineWidth:(CGFloat)lineWidth;

 

 

- (void)drawLabel:(CGContextRef)context

   attributesText:(NSAttributedString *)attributesText

             rect:(CGRect)rect;

//画柱状图

- (void)drawRect:(CGContextRef)context

            rect:(CGRect)rect

           color:(UIColor*)color;

 

 

- (void)drawGridBackground:(CGContextRef)context

                      rect:(CGRect)rect;

相关文章:

  • 2021-08-09
  • 2022-12-23
  • 2021-05-10
  • 2021-12-14
  • 2021-05-22
  • 2022-12-23
猜你喜欢
  • 2021-09-30
  • 2021-11-26
  • 2021-12-01
  • 2021-09-07
  • 2021-06-01
  • 2022-12-23
  • 2021-07-17
相关资源
相似解决方案