- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在表格单元格中使用水平条形图,因为每个单元格值都将动态分配。谢谢这是 cellForRowAtIndexPath 中的代码强文字
[ self 设置BarLineChartView:cell.chartView]; cell.chartView.delegate = self;
cell.chartView.drawBarShadowEnabled = NO;
cell.chartView.drawValueAboveBarEnabled = YES;
cell.chartView.maxVisibleValueCount = 60;
ChartXAxis *xAxis = cell.chartView.xAxis;
xAxis.labelPosition = XAxisLabelPositionBottom;
xAxis.labelFont = [UIFont systemFontOfSize:10.f];
xAxis.drawAxisLineEnabled = YES;
xAxis.drawGridLinesEnabled = YES;
xAxis.gridLineWidth = .3;
ChartYAxis *leftAxis = cell.chartView.leftAxis;
leftAxis.labelFont = [UIFont systemFontOfSize:10.f];
leftAxis.drawAxisLineEnabled = YES;
leftAxis.drawGridLinesEnabled = YES;
leftAxis.gridLineWidth = .3;
leftAxis.axisMinValue = 0.0; // this replaces startAtZero = YES
ChartYAxis *rightAxis = cell.chartView.rightAxis;
rightAxis.enabled = YES;
rightAxis.labelFont = [UIFont systemFontOfSize:10.f];
rightAxis.drawAxisLineEnabled = YES;
rightAxis.drawGridLinesEnabled = NO;
rightAxis.axisMinValue = 0.0; // this replaces startAtZero = YES
cell.chartView.legend.position = ChartLegendPositionBelowChartLeft;
cell.chartView.legend.form = ChartLegendFormSquare;
cell.chartView.legend.formSize = 8.0;
cell.chartView.legend.font = [UIFont fontWithName:@"HelveticaNeue-Light" size:11.f];
cell.chartView.legend.xEntrySpace = 4.0;
_sliderX.value = 11.0;
_sliderY.value = 50.0;
[self slidersValueChanged:nil];
[cell.chartView animateWithYAxisDuration:2.5];
最佳答案
//我们必须在TableView类中声明以下属性
@property(非原子,强)CampaignInfoCellTableViewCell *cell;
关于ios - 如何在 TableView Cell 上使用 iOSCharts (https ://github. com/danielgindi/Charts)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36352396/
我想用 Swift 3 设置条形图,关注 this教程。 我在我的 viewController 中创建了一个 barChartView 并在 viewDidLoad 中创建了数据值: var mon
我在 2 个月后将 ios-charts 更新为最新代码。当我运行代码时,我看到了很多不同之处。 这是在更新库之前: 更新后: 这是生成图表的代码: chart.infoTextColor =
我正在使用 danielgindi/iOSCharts 库来创建组合的折线图和条形图,如下所示。 我的图表呈现正确,并且具有点击和捏合缩放等用户交互。图表还能够检测到我的点击手势。但不知何故 func
我正在尝试开发一个简单的事件图表。我的意图是在图表中选择特定的条形图来显示另一个 View 。主图表旨在成为仪表板样式,因此为了深入发现或详细信息,用户可以选择特定的栏以了解更多信息[应该会显示特定的
以下基于 LineChartView 示例 ( from youtube ),它在标准 View (单 View 应用程序)中运行良好,而 BarChartView 在 TableViewCell 使
使用以下代码 barchart.xAxis.labelTextColor = UIColor.white barchart.xAxis.labelPosition = .topInside barCh
我想在表格单元格中使用水平条形图,因为每个单元格值都将动态分配。谢谢这是 cellForRowAtIndexPath 中的代码强文字 [ self 设置BarLineChartView:cell.ch
我是一名优秀的程序员,十分优秀!