NYChartMatrixView.h 499 B

123456789101112131415161718192021222324252627
  1. //
  2. // NYChartMatrixView.h
  3. // NYChartDemo
  4. //
  5. // Created by kgj on 2023/3/17.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "NYBaseChartView.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface NYChartMatrixView : NYBaseChartView<NYBaseChartViewDelegate>
  11. /**
  12. * 数据 list
  13. */
  14. @property (nonatomic,strong,nullable) NSArray *dataSource;
  15. @property (nonatomic,assign) NSInteger selectIndex;
  16. /**
  17. * 点击cell 事件block
  18. */
  19. @property (nonatomic,copy) NYChartCellBlock matrixItemClickBlock;
  20. @end
  21. NS_ASSUME_NONNULL_END