Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8821031
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T05:45:15+00:00 2026-06-14T05:45:15+00:00

ChartData public class ChartData { public Series[] Series { get; set; } } Series

  • 0

ChartData

public class ChartData {
    public Series[] Series { get; set; }
}

Series

public class Series{
    public Strind Name { get; set; }
    public Data Data { get; set; }
}

Data

public class Data {
    public object[] Points { get; set; }
}

Records

 Date | Name | Value

date1 | T1  |    15
date1 | T2  |    20
date2 | T1  |    25
date2 | T2  |    30
date3 | T1  |    35
date3 | T2  |    40

And linq codes

(from d in MeterReadings
 group d by new { name = d.Name } into g
 select new ChartData
 {
     Series = (from s in g
              select new Series
              {
                  Name = g.Key.name,
                  Data = new Data(new object[] { g.Select(x => x.Value) })
              }).ToArray()
     }).FirstOrDefault();

Expected:

Name = T1 , Data = 15, 25, 35
Name = T2 , Data = 20, 30, 40

But Output:

Name = T1 , Data = 15, 25, 35
Name = T1 , Data = 15, 25, 35
Name = T1 , Data = 15, 25, 35

I cant find right codes to get expected. Could you review the linq codes? Where have done wrong?

Thanks in advance.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T05:45:16+00:00Added an answer on June 14, 2026 at 5:45 am

    The problem is that you select new ChartData for each grouping and then take first. Try this code:

    var series =  MeterReadings.GroupBy(x => x.Name)
                               .Select(g => new Series
                                {
                                    Name = g.Key,
                                    Data = new Data {Points = g.Select(x => x.Value).ToArray()}
                                })
                               .ToArray();
    var chartData = new ChartData {Series = series};
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

this is the class, that my jersey service returns: @XmlRootElement(name=chart-data) public class ChartDataDto {
I have a data structure, like this: public class Data{ private String charData; private
I need to apply color to teechart axis using System.drawing.Color Object Code is //chartData.ChartAxesArray[iAxis].AxisTitleColor
I have a class [DataContract] public class Car { public bool pbIsHatchBack; string prSt
magnitudeArray = [] for index, dataPoint of chartData magnitudeArray.push dataPoint.magnitude if dataPoint.magnitude? The above
I want to outline the chart data range source(s) in a table, in much
If I convert the given html to pdf with wkhtmltopdf the chart data will
I have the following code: $.ajax({ async: false, url: 'chart_data.php', data: {'option':'high', 'id':id}, dataType:
Hello I want to have a % in my google chart data i have
I have a setup where I am using amcharts that is feed data via

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.