I used core plot and it's working very well but ..there are problem now, i have to draw n number Bars in single plot space dynamically...it may be 2 or 3 or 5 or non.
i am able to create multiple instance of the Bar ..but where i set the identifier dynamically and how handle every bar draw calculation in side delegate. My Code snippet is below.
-(NSNumber *)numberForPlot:(CPTPlot *)plot field:(NSUInteger)fieldEnum recordIndex:(NSUInteger)index
{
if([plot.identifier isEqual:kBarIdentifier1])
{
//....getting data from array and return .
}
}