简体   繁体   中英

iPhone CorePlot:error- “CPBarPlotFieldBarLength:” Undeclared

Hi I am trying to implement core plot in My iPhone App

for that I use the below code

 -(NSNumber *)numberForPlot:(CPPlot *)plot 
                  field:(NSUInteger)fieldEnum recordIndex:(NSUInteger)index 
 { 
     if (plot.identifier==@"myBarChart") { 
         switch ( fieldEnum ) { 
             case CPBarPlotFieldBarLocation: 
                return (NSDecimalNumber *)[NSDecimalNumber numberWithUnsignedInteger:index]; 
             case CPBarPlotFieldBarLength: 
                 return [self.lockedPercentage objectAtIndex:index]; 
        } 

}

if I use this code in original coreplot code example it works fine for barchart but When I use same code in my App it is giving error

   case CPBarPlotFieldBarLength:Undeclared

What Could be the problem??

Please Help and Suggest

Thanks

CPBarPlotFieldBarLength已重命名为CPBarPlotFieldBarTip

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM