Hi All,
I'm new with the Ultrachart and would like to ask a suggestion how to build the composite chart. I need to combine the column chart and the scatter chart. The X axis for the column chart is a string (e.g. income, cash, refund). The scatter chart allows numeric values for the x axis. Could you please suggest me how to place the scatter chart's items exactly over the x-center of the columns? If it possible give me please an idea.
Thanks in advance,
Viktar
Hello Viktar,
I am just checking about the progress of this issue. Let me know if you need my further assistance on this issue.
Thank you for using Infragistics Components.
Hi Dimitar,
Let me return to this question. Could you please give me an idea if it is possible to hide the lines between the line chart points? I need to receive only the line chart points visible in order to make an emulation of the scatter chart.
Thank you,
Viktar.
Hi Viktar,
Thank you for the reply.
What you could do if you want to have only the points appearing is to set the thickness of the line to 0. You can do that through the LineAppearance object:
LineAppearance app = new LineAppearance();
app.IconAppearance.Icon = SymbolIcon.Diamond;
app.Thickness = 0;
((LineChartAppearance)myLineLayer.ChartTypeAppearance).LineAppearances.Add(app);
Please let me know if you have any additional questions.
Hi Dimitar
Thank you, exactly what I need. I received the chart. Thanks a lot.
Regards,