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

  • SEARCH
  • Home
  • 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 6970199
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T16:40:45+00:00 2026-05-27T16:40:45+00:00

I’m currently building an application that shows a line-graph and uses MSChartControl. Here is

  • 0

I’m currently building an application that shows a line-graph and uses MSChartControl.

Here is the relevant code:

WeatherDatabase _db = new WeatherDatabase(Properties.Settings.Default.SqlConnectionString);

    private void AddSensorDataToGraph(int sensorType, string xTitle, string yTitle, string Title)
    {
        var sensorIdList = (from d in _db.Sensors where d.TypeId == sensorType select d.Id).ToArray();
        var startDate = dateTimePickerStart.Value;
        var stopDate = dateTimePickerStop.Value;

        SetMaxMinValues(dateTimePickerStart.Value.ToOADate(), dateTimePickerStop.Value.ToOADate());
        this.Text = chartValues.Titles["Titel"].Text = String.Format("{0} vom {1} bis {2}", Title, startDate, stopDate);
        chartValues.ChartAreas[CHARTAREA].AxisX.Title = xTitle;
        chartValues.ChartAreas[CHARTAREA].AxisY.Title = yTitle;
        // Alte Datensätze löschen
        chartValues.Series.Clear();
        foreach (var sensorId in sensorIdList)
        {
            var values = (from d in _db.DeviceIO where d.IdSensor == sensorId && d.Timestamp > startDate && d.Timestamp < stopDate orderby d.Timestamp ascending select d).ToArray();
            if (values.Length > 0)
            {
                var desc = values[0].Sensors.SensorType.Description;
                chartValues.Series.Add(GenerateDefaultSeries(String.Format("{0}\r\nSensorId: {1}", desc, sensorId)));
                //chartValues.Series.Add("Test" + sensorId);
                int seriesId = chartValues.Series.Count - 1;
                foreach (var item in values)
                {
                    if (item.Value == null)
                    {
                        continue;
                    }
                    if ((double)item.Value == NOVALUE)
                    {
                        continue;
                    }
                    AddPointToChart((DateTime)item.Timestamp, (double)item.Value, seriesId);
                }
            }
        }
    }

    private void AddPointToChart(DateTime timestamp, double value, int series)
    {
        DataPoint dataPoint = chartValues.Series[series].Points.Add(value);
        dataPoint.XValue = timestamp.ToOADate();
        dataPoint.AxisLabel = "dd.MM.yy hh:mm";
    }

    private void SetMaxMinValues(double min, double max)
    {
        if (min < max)
        {
            chartValues.ChartAreas[CHARTAREA].AxisX.Minimum = min;
            chartValues.ChartAreas[CHARTAREA].AxisX.Maximum = max;
        }
    }
    private Series GenerateDefaultSeries(string Name)
    {
        // Grundeinstellungen für die Data-Series setzen
        Series series = new Series();
        series.ChartType = SeriesChartType.Line;
        series.Name = Name;
        series.IsValueShownAsLabel = false;
        series.IsVisibleInLegend = true;
        series.IsXValueIndexed = false;
        series.AxisLabel = "dd.MM.yy hh:mm";
        // series.LabelFormat = "g";
        series.XAxisType = AxisType.Primary;
        series.XValueType = ChartValueType.Auto;
        series.YValuesPerPoint = 1;
        //    series.AxisLabel = "dd.MM.yy hh:mm";

        return series;
    }

If i add a series in designer mode x-axies Labels are correct
Click for pic
But if i start my application and add a series programmatically it loks like this

Anyone knows why the x-axis caption / label is not displayed correctly?

EDIT:
Based on Tom’s help I change some things:

var seriesName = String.Format("{0}\r\nSensorId: {1}", desc, sensorId);
                var curSeries = chartValues.Series.Add(seriesName);

                UpdateSeriesSettings(ref curSeries);

              [...]
     AddPointToChart((DateTime)item.Timestamp, (double)item.Value, curSeries);

[…]

private void UpdateSeriesSettings(ref Series series)
{
    // Grundeinstellungen für die Data-Series setzen
    // Series series = new Series();
    series.ChartType = SeriesChartType.Spline;
    series.IsValueShownAsLabel = false;
    series.IsVisibleInLegend = true;
    series.IsXValueIndexed = false;
    series.AxisLabel = "dd.MM.yy hh:mm";
    // series.LabelFormat = "g";
    series.XAxisType = AxisType.Primary;
    series.XValueType = ChartValueType.Auto;
    series.YValuesPerPoint = 1;
    //    series.AxisLabel = "dd.MM.yy hh:mm";

}

But my X axis stil ain’t having a label ):

Used the following code:

Fixed my problem.

var desc = values[0].Sensors.SensorType.Description;
var seriesName = String.Format("{0}\r\nSensorId: {1}", desc, sensorId);
curSeries = chartValues.Series.Add(seriesName);

curSeries.ChartType = SeriesChartType.Line;
curSeries.XValueType = ChartValueType.DateTime;

foreach (var item in values)
{
    curSeries.Points.AddXY(item.Timestamp, item.Value);
}
  • 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-05-27T16:40:46+00:00Added an answer on May 27, 2026 at 4:40 pm

    It looks like you are adding each point as its own series. Usually, you would add many points into one series.

    Do you intend to change seriesId right before you use it?

       int seriesId = chartValues.Series.Count - 1;
    

    This happens before you call AddPointToChart() so that is getting a different value than you used in the series

    chartValues.Series.Add(GenerateDefaultSeries(String.Format("{0}\r\nSensorId: {1}", desc, sensorId)));
    

    EDIT

    The line chartValues.Series.Add(…) will return a variable of type Series which you can add to directly. see http://www.dotnetperls.com/chart

    SensorID is your number and I think that there are no guarantees that the system will choose to populate its collection of Series in any particular order.


    EDIT

    It looks like you’re adding your points to the series before you finish setting them up. Instead, set them all the way up, then add them:

    private void AddPointToChart(DateTime timestamp, double value, int series)
    {
        DataPoint dataPoint = new DataPoint(timestamp.ToOADate(), value);
        dataPoint.AxisLabel = "dd.MM.yy hh:mm";  // not sure how this will work, but try it.
        chart1.Series[series].Points.Add(dataPoint );
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I've got a string that has curly quotes in it. I'd like to replace
I am currently running into a problem where an element is coming back from
I want use html5's new tag to play a wav file (currently only supported
Seemingly simple, but I cannot find anything relevant on the web. What is the
I have a French site that I want to parse, but am running into
We're building an app, our first using Rails 3, and we're having to build

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.