条形图与目标c中的工具提示

时间:2017-02-16 12:48:38

标签: objective-c bar-chart

当手指在条形图上拖动时,如何使用工具提示实现条形图。我想要附加图像中的条形图。

请在目标c中为工具提示建议任何条形图库。

Bar chart with tooltip

1 个答案:

答案 0 :(得分:0)

当涉及到iOS绘图时,我想你想尝试一下Daniel Cohen的iOS图表:

https://github.com/danielgindi/Charts

完全可定制,有很多样式和图表视图,swift和objective-c,也适用于Android。我建议您查看演示项目,以全面了解此库的工作原理。

使用自定义视图实现条形图将是这样的:

MPBarsGraphView *barPlot1 = [MPPlot plotWithType:MPPlotTypeBars frame:CGRectMake(0, 0, width, height)];
    barPlot1.minValue = 0;
    barPlot1.maxValue = 35;
    barPlot1.waitToUpdate = YES;
    barPlot1.showTopLabels = YES;
    barPlot1.topValues = @[@"25.7",@"27.8",@"28.7",@"31.2"];
    barPlot1.values = @[@25.7,@27.8,@28.7,@31.2];
    barPlot1.graphColor = [UIColor yourColor];
    barPlot1.detailView = [UIView yourView];
    [self.view addSubview:barPlot1];