Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
155
Multiple Y Axis from LINQ SQL query
posted

I have a LINQ query that returns 3 columns:

ApplicationName, ErrorDate, ErrorCount

Is there a way to make the ErrorDate the X Axis, ErrorCount the Y Axis, and ApplicationName be 1 line per distinct value? I tried making them separate series from separate queries, but if the ErrorDate values of Series 1 occur before the first ErrorDate of Series 2, it doesn't recognize that, and puts the values of Series 2 at the first data point on the X Axis, even if it should start at the 10th data point. Basically, I need to be able to show 4+ series with all ErrorDates lining up.