Shinobi Controls - 使用hoop数据点

时间:2013-09-30 18:53:01

标签: ios shinobi

我有一个测试Shinobi Control图表工作,但想在每个数据点放一个箍,“O”。 你是怎么做到的?

1 个答案:

答案 0 :(得分:0)

您需要适当地设置系列样式对象上的点颜色。能够显示点(SChartScatterSeriesSChartLineSeriesSChartBandSeries)的系列在其样式对象中都具有pointStyle属性,该属性是{{1 }}。这具有以下相关属性:

  • SChartPointStyle
  • innerColor
  • color
  • innerRadius
  • outerRadius

根据您想要的效果(以及您使用的系列类型),您需要适当地设置它们。例如,要在showPoints上显示“箍”,您可以使用以下内容作为数据源方法:

SChartScatterSeries

注意,如果您使用的是- (SChartSeries *)sChart:(ShinobiChart *)chart seriesAtIndex:(int)index { _series = [SChartColumnSeries new]; SChartScatterSeries *series = [SChartScatterSeries new]; series.style.pointStyle.innerColor = [UIColor whiteColor]; return series; } SChartBandSeries,则默认情况下SChartLineSeries设置为showPoints,因此您需要将其设置为{{1}你自己。