123456789101112131415161718192021222324252627 |
- //
- // NYChartMatrixView.h
- // NYChartDemo
- //
- // Created by kgj on 2023/3/17.
- //
- #import <UIKit/UIKit.h>
- #import "NYBaseChartView.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface NYChartMatrixView : NYBaseChartView<NYBaseChartViewDelegate>
- /**
- * 数据 list
- */
- @property (nonatomic,strong,nullable) NSArray *dataSource;
- @property (nonatomic,assign) NSInteger selectIndex;
- /**
- * 点击cell 事件block
- */
- @property (nonatomic,copy) NYChartCellBlock matrixItemClickBlock;
- @end
- NS_ASSUME_NONNULL_END
|