3
der folgende Code für Kreisdiagramm CorePlot in ios:CorePlot Kreisdiagramm: Wie X- und Y-Achsen verbergen?
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];
Das ist, Ausgang nicht x- und y-Achse in der Kreisdiagramm verstecken ....! Ich muss X-und Y-Achse verstecken ...! Hilf mir ....!
Vielen Dank ...! – Dinesh
@EricSkroch Hallo, Könnten Sie sich bitte meine Frage ansehen? Ich danke dir sehr. http://stackoverflow.com/questions/25997224/the-axis-is-draw-under-the-plot-in-core-plot – Pegah