CYHistogramView 1.0.0

CYHistogramView 1.0.0

delims 维护。



  • 作者
  • delims

CYHistogramView

CI Status Version License Platform

安装

CYHistogramView 通过 CocoaPods 提供。要安装它,只需将以下行添加到您的 Podfile 中

pod 'CYHistogramView'

示例

CYHistogramView *graph = CYHistogramView.new;
graph.frame = CGRectMake(0, 88, UIScreen.mainScreen.bounds.size.width, 500);
    
graph.itemModels = @[
    [CYHistogramItemModel modelWithName:@"1月" percent:0.3],
    [CYHistogramItemModel modelWithName:@"2月" percent:0.8],
    [CYHistogramItemModel modelWithName:@"3月" percent:0.56],
    [CYHistogramItemModel modelWithName:@"4月" percent:0.4],
    [CYHistogramItemModel modelWithName:@"5月" percent:0.9],
    [CYHistogramItemModel modelWithName:@"6月" percent:0.7],
];
graph.selectedName = @"3月";

结果

image

作者

delims,[email protected]

许可证

CYHistogramView 在 MIT 许可证下可用。有关更多信息,请参阅 LICENSE 文件。