Hello everyone,
I'm trying to use UltraWebChart to create the so called 'ScatterLineChart'. Here is the prototype of graph I have to create:
http://img167.imageshack.us/img167/5292/graphlq2.gif
I'm using the latest version of Infragistics WebChart, I've selected the ScatterLineChart as chart type. I was able to display the Lines, however I'm having troubles plotting the dots. I've got the correct coordinates for X and Y for each line and I'm keeping it in the DataTable along with the Line data.
I've set the correct: UltraChart1.ScatterLineChart.Scatter.ColumnX and UltraChart1.ScatterLineChart.Scatter.ColumnY properties and it works fine, However UltraChart is using those columns as data to plot the Lines as well which is not correct and I want it to use them just to plot the dots.
I tried to use
UltraChart1.ScatterLineChart.ScatterData.IncludeColumn( "ColumnX", false ); and UltraChart1.ScatterLineChart.ScatterData.IncludeColumn( "ColumnY", false );
However its throwing me an exception - "Object not set...". If specify the index of the these columns it doesn't work either. I can remove those columns using UltraChart1.Data... but then the chart is complaining that Scatter data is not there...
I also tried to bind
UltraChart1.ScatterLineChart.ScatterData to different datasource containing just the ScatterData but with no luck