Hi,
I am having only one column to display and its occupying the whole graph area (Kind of horizontal graph). Is there a way to leave space to the left and right of the graph and make the graph more vertical than filling up the entire space. Thanks.
You can try using ChartDrawItem Event. The code could be something like:
this.ultraChart1.ChartDrawItem += new Infragistics.UltraChart.Shared.Events.ChartDrawItemEventHandler(ultraChart1_ChartDrawItem);
...
private const int columnWidth = 100;
{
Box box = e.Primitive as Box;
}
box.rect.Width = columnWidth;
box.rect.X += dWidth / 2;