在具有相同 X 位置 ( iOS ) 的 Shinobicharts 上显示多个十字准线目标圆

Show multiple crosshair target circles on Shinobicharts with same X position ( iOS )

我有一个包含 3 SChartLineSeries 的图表。我想同时显示3个同时的目标点(来自与他的意甲相对应的十字准线)。

就像我在这张带有数据点的图片上一样,但我希望它与十字准线位于相同的 X 位置。

我怎样才能做到这一点?我试图识别委托方法中的 'long press' 事件,但我没有弄清楚该怎么做。

有十字准线,我只有这个:

编辑:

我试过:

- (void)sChart:(ShinobiChart *)chart toggledSelectionForPoint:(SChartDataPoint *)dataPoint inSeries:(SChartSeries *)series atPixelCoordinate:(CGPoint)pixelPoint
{
    for (SChartLineSeries *serie in chart.series) {
        for (SChartDataPoint *dp in serie.dataSeries.dataPoints){
            if (dp.xValue == dataPoint.xValue){
                dp.selected = YES;
                serie.crosshairEnabled = YES;
                serie.style.selectedPointStyle.color = [UIColor blackColor];
                serie.style.selectedPointStyle.radius = [NSNumber numberWithInt:8];
                serie.style.selectedPointStyle.showPoints = YES;
            }
        }
    }
}

并将对象“SChartCrosshair”子类化,我识别出“crosshairChartGotLongPressAt”上的长按事件。

在 ShinobiControls 团队支持的帮助下,我已经做到了。

在我子类化的'SChartCrosshair'上,我不得不循环遍历与'Crosshair'X位置接触的匹配点,并将数学运算的点添加到数组中以供使用他们在“drawCrosshairLines”中。为此,我通过理解 SChartAxis 对象的方法使用了点的像素版本:'pixelValueForDataValue'。

我也在图表上画了一条垂直线。

@implementation CustomCrossHair

-(void)drawCrosshairLines
{
    CGContextRef context = UIGraphicsGetCurrentContext();

    SChartDataPoint *firstDataPixelPoint = arrayPixelPoints[0];
    double xFirst = [firstDataPixelPoint.xValue doubleValue];

    CGContextMoveToPoint(context,xFirst, 0.f);

    CGContextAddLineToPoint(context,xFirst, self.chart.canvas.glView.frame.size.height);

    for (SChartDataPoint *dataPixelPoint in arrayPixelPoints){
        double yVal = [dataPixelPoint.yValue doubleValue];
        double xVal = [dataPixelPoint.xValue doubleValue];

        CGRect rectangle = CGRectMake(xVal,yVal, 7, 7);
        CGContextAddEllipseInRect(context, rectangle);
    }

    CGContextStrokePath(context);
}


-(void)moveToPosition:(SChartPoint)coords andDisplayDataPoint:(SChartPoint)dataPoint fromSeries:(SChartCartesianSeries *)series andSeriesDataPoint:(id<SChartData>)dataseriesPoint
{
    [super moveToPosition:coords andDisplayDataPoint:dataPoint fromSeries:series andSeriesDataPoint:dataseriesPoint];
    arrayPixelPoints = [NSMutableArray array];
    SChartDataPoint *dataSPoint = dataseriesPoint;
    int i = 0;
    for (SChartLineSeries *serie in self.chart.series){
        i++;
        for (SChartDataPoint *dp in serie.dataSeries.dataPoints){
            if ([dp.xValue doubleValue] == [dataSPoint.xValue doubleValue]){
                float yPixel = [self.chart.yAxis pixelValueForDataValue:dp.yValue];
                float xPixel = [self.chart.xAxis pixelValueForDataValue:dp.xValue];

                SChartDataPoint *dataPointPixel = [[SChartDataPoint alloc] init];
                dataPointPixel.xValue = [NSNumber numberWithFloat:xPixel];
                dataPointPixel.yValue = [NSNumber numberWithFloat:yPixel];

                [arrayPixelPoints addObject:dataPointPixel];
            }
        }
    }

    if (i == self.chart.series.count) [self drawCrosshairLines];
}