Normal 0
Hi All,
I have one query how to show x-axis and series label for Line and Gantt chart.
Ex
(X-axis)---------------------------------------------------------------------------------------------------------- 00:00:00. 08:00:00. 16:00:00 00:00:00 08:00:00 16:00:00 (this is an axis label)
|--------------22 Dec 2009 -------------|--------------23 Dec 2009 -------------|
(Series label)
and so on.
As my chart displaying has lot of points and hence date value is trim due to lack of space and it is not readable.
I am using infragistics 6.3 version.
Please provide help on this query.Thank you in advance.
sorry for the delay...
printing series labels below the item labels in a column chart is the default behavior. but maybe you're looking for a solution more like this?
UltraChart1.Axis.X.Labels.ItemFormat = "<ITEM_LABEL>" + Environment.NewLine + "<SERIES_LABEL>";
Hi David,
I have a similar problem but with column chart. The chart is dynamically created using data from a database and I am getting the x-axis lables by using
UltraChart1.Axis.X.Labels.ItemFormat = Infragistics.UltraChart.Shared.Styles.
AxisItemLabelFormat.ItemLabel; What I need is the series label to be provided below the axis labels. Please help ASAP since I have been toiling with it for quite sometime and have run out of time now :(...
Thanks,
Vidya Krishna
sandhya123 said:I have the same kind of chart, but with multiple data columns on the x-axis, do you have any idea how to do that??
the x-axis can only represent time in a Gantt chart, so i'm not sure what exactly you are asking for. could you explain in more detail?
sandhya123 said:Can you please provide me how you got the boxes and different colors on the chart.
set the GanttChart.ShowCompletePercentages property to True.
I have the same kind of chart, but with multiple data columns on the x-axis, do you have any idea how to do that?? Can you please provide me how you got the boxes and different colors on the chart.
try setting the Axis.X.Labels.ItemFormatString property to "<ITEM_LABEL:MM/dd/yyyy>"