-
Hello, How can I implement the stacked column chart? See the attachment. Thanks
-
See the attached zip having the screenshot to see the the problem with the Composite chart example given by you.
-
This is currently my code: private void AddEventTimeOverlay() { ValueOverlay overlay = new ValueOverlay(); CategoryDateTimeXAxis xaxis = (CategoryDateTimeXAxis)MChart.Axes.First((axis) => axis.Name.Equals("SharedXAxis")); overlay.Axis = xaxis; double scaledx = xaxis.GetScaledValue(eventTime...
-
I want to develop a chart which displays real time values of CPU Freauency, temeprature and Power. The chart should be similar to the chart in Performance Monitor (Perfmon.exe) tool comes with Windows. In which X Axis should have the Time values and Y Axis have the actual data. Could you Please send...
-
Hi Alex, The data context of the DataChart tooltip is set to a object of the Infragistics.Controls.Charts.DataContext type, so you do not need to set the Source of the Binding. I would suggest you try the following: private void OlapAxis_SeriesCreating(object sender, SeriesCreatingEventArgs e) { TextBlock...
-
It's totally possible with both. To clarify - you can always modify your model to fit, but you can also initialize the chart differently. The chart itself and the Series have two types of contructors, one of each accepting IQueryable data and for the series it looks like: public ScatterSeries <J>...
-
Hello, seems I was right - it is the resources. I ran the app and this is what I saw: Below the error is the view from FIddler(all the requests made by the loader failed with 404 code as the files were not quite there) - the resources have a default folder structure and the loader is looking for files...
-
What I see as output is absolutely correct and would render a chart just fine, but I do notice something odd - the output script would've been different if you were using the helper's Loader. That means two things - either you are using jQuery initialized loader or you are adding specific script...
-
Of course, what you get rendered should be the chart's empty canvas. I mentioned above it's a valid code, but it is without the series and the series are the actual representation of your data. I can see you have X and Y values so say you want to plot those in Scatter series you would have to...
-
Hi, Just as a note the code above is completely valid, event without the series and I just tested it and it produces the correct output. I did test with removing the model reference from my page and I got exactly the same error. Since I can't see the rest of your code I would assume that can be your...