Hi Sweta,
You can achieve this using a second bar series with different bar width percent (the percentage it occupies from the category). For example:
NBarSeries bar1 = new NBarSeries();
bar1.FillStyle = new NColorFillStyle(Color.Red);
bar1.Values.Add(10);
bar1.Values.Add(20);
bar1.Values.Add(30);
chart.Series.Add(bar1);
NBarSeries bar2 = new NBarSeries();
bar2.WidthPercent = 50;
bar2.FillStyle = new NColorFillStyle(Color.Blue);
bar2.Values.Add(40);
chart.Series.Add(bar2);
Let us know if you have any questions.
Best Regards,
Nevron Support Team