2012-03-24 25 views
3

円グラフCorePlot次のコードは:CorePlot円グラフ:X軸とY軸を非表示にする方法は? IOSの

CPTGraphHostingView *hostingView = [[CPTGraphHostingView alloc] initWithFrame:self.view.bounds]; 
    [self.view addSubview:hostingView]; 

    graph = [[CPTXYGraph alloc] initWithFrame:self.view.bounds]; 
    hostingView.hostedGraph = graph; 

    CPTPieChart *pieChart = [[CPTPieChart alloc] init]; 
    pieChart.dataSource = self; 
    pieChart.pieRadius = 100.0; 
    pieChart.identifier = @"PieChart1"; 
    pieChart.startAngle = M_PI_4; 
    pieChart.sliceDirection = CPTPieDirectionCounterClockwise; 
    self.pieData= [NSMutableArray arrayWithObjects:[NSNumber numberWithDouble:90.0], 
        [NSNumber numberWithDouble:20.0], 
        [NSNumber numberWithDouble:30.0], 
        [NSNumber numberWithDouble:40.0], 
        [NSNumber numberWithDouble:50.0], [NSNumber numberWithDouble:60.0], nil]; 
    [graph addPlot:pieChart]; 
    [pieChart release]; 

出力が円グラフでxとy軸を非表示にしていない....! X軸とY軸を非表示にする必要があります...! 私を助けて....!

答えて

8

これを行う最も良い方法は、軸を完全に削除することです。

graph.axisSet = nil; 
+0

Thank You Very Much ...! – Dinesh

+0

@EricSkrochこんにちは、私の質問を見ていただけますか?どうもありがとうございます。 http://stackoverflow.com/questions/25997224/the-axis-is-drawn-under-the-plot-in-core-plot – Pegah

関連する問題