Turn off the borders around the histogram lines by setting the lineStyle property to nil.
Before setting linestyle=nil :

After setting linestyle=nil :

For instance:
CPTBarPlot *myBarGraph = [[CPTBarPlot alloc] init]; myBarGraph.lineStyle = nil;
I found this parameter in the CorePlot CPTBarPlot class documentation, here .
source share