I am using DateTimeAxis and NumberAxis for the X and Y Axis with ShinobiCharts. LineSeries are being added successfully to the chart and displayed properly. But the Gridlies which is mandatory for analysing the Series is not getting displayed and a blank background is being displayed. Below is my Line Series code part :
LineSeriesStyle style = series2.getStyle();
style.setFillStyle(FillStyle.GRADIENT);
style.setAreaColor(Color.argb(179, 26, 96, 164));
style.setAreaColorGradient(Color.argb(255, 26, 96, 164));
style.setAreaColorBelowBaseline(Color.argb(179, 26, 96, 164));
style.setAreaColorGradientBelowBaseline(Color.argb(255, 26, 96,
164));
Please suggest me what changes I need to make with ShinobiCharts to get the Background gridlines to be displayed