CPTXYGraph使用笔记

理解hostingView Graph plotAreaFrame plotArea四者关系

  • hostingView:承载整个绘图的view
  • Graph :画布,可以在上面画图
  • plotAreaFrame:通过三个属性CPTPlotArea、CPTAxisSet、CPTPlotGroup分别管理绘图区域、坐标系、图表类型
  • ** plotArea:**绘制图表区域

CPTXYGraph类继承关系

CPTXYGraph
->CPTGraph
->CPTBorderedLayer:设置Graph边界线条
->CPTAnnotationHostLayer
->CPTLayer

CPTGraph在初始化过程中主要完成5大功能:

  • 功能1:设置graph中坐标轴距离hostingView的边距
  • 功能2:设置绘图区域
  • 功能3:设置绘图范围,例如XY轴显示范围、XY轴滚动范围、XY轴显示样式等
  • 功能4:设置图表标题
  • 功能5:设置图表说明

CPTPlotAreaFrame

CPTPlotAreaFrame
->CPTBorderedLayer
->CPTAnnotationHostLayer
->CPTLayer

//绘图区域管理者
@interface CPTPlotAreaFrame : CPTBorderedLayer

@property (nonatomic, readonly, nullable) CPTPlotArea *plotArea;//在initWithFrame中创建
@property (nonatomic, readwrite, strong, nullable) CPTAxisSet *axisSet;//坐标轴
@property (nonatomic, readwrite, strong, nullable) CPTPlotGroup *plotGroup;//坐标轴应用于哪个group

@end

CPTXYAxisSet

继承关系
CPTXYAxisSet:坐标轴的集合
->CPTAxisSet:坐标轴的集合
->CPTLayer

CPTXYAxis

继承关系
CPTXYAxis
->CPTAxis:坐标轴
->CPTLayer

CPTXYPlotSpace坐标轴显示范围

CPTXYPlotSpace
->CPTPlotSpace
->NSObject

你可能感兴趣的:(CPTXYGraph使用笔记)