私のグラフの中で私のラベルの背後にあるイメージを取得するにはどうすればいいですか? 【下記にImageLayer:グラフinsertSubLayer Y]のイメージを追加自分のラベルの後ろに、そして私のプロットの前に私のcoreplotグラフの中に置く
CPTPlotSpaceAnnotation *imageAnnotation;
CGRect imageRect = CGRectMake(0, 0 , 480, 320);
CPTBorderedLayer * ImageLayer = [[CPTBorderedLayer alloc] initWithFrame:imageRect];
ImageLayer.fill = [CPTFill fillWithImage:[CPTImage imageWithCGImage:[[UIImage imageNamed:@"Overlay_3_digits.png"] CGImage]]];
imageAnnotation = [[CPTPlotSpaceAnnotation alloc] initWithPlotSpace:plotSpace anchorPlotPoint:nil];
imageAnnotation.contentLayer = ImageLayer;
[graph addAnnotation:imageAnnotation];
[graph addSublayer:ImageLayer];
[newImagelLayer release];
[imageAnnotation release];
:私はグラフの前に画像を置くを成功しました。これはグラフと軸ラベルの前に画像を配置します。誰かが私を助けることを願っています。
EDIT: 私はシミュレータからスクリーンショットを追加しました。 3つの黒い四角形は、私のプロットの前とラベルの後ろにある必要があります。ラベルは読みやすくなります。
私も最初のインデックスでaxislabelsを置くことによって、私のグラフから層の階層をeditted:
NSArray *chartLayers = [[NSArray alloc] initWithObjects:[NSNumber numberWithInt:CPTGraphLayerTypeAxisLabels],
[NSNumber numberWithInt:CPTGraphLayerTypePlots],
[NSNumber numberWithInt:CPTGraphLayerTypeMajorGridLines],
[NSNumber numberWithInt:CPTGraphLayerTypeMinorGridLines],
[NSNumber numberWithInt:CPTGraphLayerTypeAxisLines],
[NSNumber numberWithInt:CPTGraphLayerTypeAxisTitles],
nil];
graph.topDownLayerOrder = chartLayers;
私はまた、グラフ内の私のイメージを置くことのより良い方法を発見しました。私は新しいhostlayerによってこれをした:
私は私のラベルの後ろにプロットの前に3枚の黒い三角形の画像を置くことができる方法CPTAnnotationHostLayer *newHostLayer = [[CPTAnnotationHostLayer alloc]
initWithFrame:CGRectMake(0, 0, 480, 220)];
UIImage * annotationBG = [UIImage imageNamed:@"Overlay_3_digits.png"];
newHostLayer.backgroundColor = [UIColor colorWithPatternImage:annotationBG].CGColor;
任意のアイデア?
私は、画像を追加することに成功、私のグラフの目の前にしてaxislabelsが上になるように、私はgraph.topDownLayerOrderの階層を変更axislabelsの後ろに配置する画像たい - > CPTAnnotationHostLayer * newHostLayer = [[CPTAnnotationHostLayerのalloc] initWithFrameを:CGRectMake(0、0、480、220)]; UIImage * annotationBG = [UIImage imageNamed:@ "Rechts.png"]; newHostLayer.backgroundColor = [UIColor colorWithPatternImage:annotationBG] .CGColor; 最後の行:[graph insertSublayer:newHostLayer below:y];ラベルの上に画像を配置する – BarryK88
新しく作成されたhostLayerがラベルの後ろにあり、プロットの前にあるように階層をどのように変更することができますか? y軸を削除して新しいサブレイヤで再度設定すると、新しいホスト層をaxislayerの下にあるサブレイヤとして設定できますか? – BarryK88
私はあなたがこれを考えすぎて、もっと複雑にする必要があると感じていますが、解決策を明確にするのに十分なほどうまくやっていることを描写することはできません。達成しようとしているエフェクトのモックアップ画像を投稿できますか? –