Bar Chart Auto Size Issues
Posted: Sat Jul 23, 2016 4:11 am
how can I make gaps between 2 bars, without sticking to each other as attached.
Steema Software - Customer Support Forums
http://216.92.101.67/support/
Code: Select all
private void InitializeChart()
{
tChart1.Aspect.View3D = false;
Steema.TeeChart.Styles.Bar bar1 = new Steema.TeeChart.Styles.Bar(tChart1.Chart);
bar1.Add(3, 10);
bar1.Add(3.5, 10);
bar1.BarWidthPercent = 50;
}