Hi Keith,
In order to achieve this coloring you'll have to write some code that applies color per bar conditionally. For example consider the following code:
NChart chart = nChartControl1.Charts[0];
NBarSeries bar = new NBarSeries();
Random rand = new Random();
for (int i = 0; i < 10; i++)
{
bar.Values.Add(rand.Next(100));
}
for (int i = 0; i < bar.Values.Count; i++)
{
double value = (double)bar.Values[i];
Color color = Color.FromArgb((int)(value / 100 * 255), 0, 0);
bar.FillStyles[i] = new NColorFillStyle(color);
}
chart.Series.Add(bar);
It shows how to apply shades of red to a bar series - the bars closer to zero will have dark red color and the bars closer to 100 will be red.
Note that if you use style sheets you need to apply the bar conditional coloring after you apply the style sheet to the chart.
Hope this helps - let us know if you meet any problems or have any questions.
Best Regards,
Nevron Support Team