Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
65
Reduce the width of second grid
posted

In my app,

There is two grid in each x value and both are overlap on eachother..i want to reduce the width of other so that both looks proper.

Please tell me which property is there for this thanks 

Code is :

         series1.brush = [[IGBrush alloc] initWithColor:[UIColor colorWithRed:90.0/255.0 green:155.0/255.0 blue:55.0/255.0 alpha:1.0]];

                series1.xAxis.majorStrokeThickness = 0;

                series1.yAxis.majorStrokeThickness = 0;

                series1.xAxis.majorStroke = [[IGBrush alloc]initWithColor:[UIColor blackColor]];

                series1.yAxis.majorStroke = [[IGBrush alloc]initWithColor:[UIColor blackColor]];

                series1.xAxis.labelsVisible = YES;

                 series1.xAxis.overlap=0.5;

Parents Reply Children