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 8955703
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T14:36:41+00:00 2026-06-15T14:36:41+00:00

I have a silverlight application that simply plots points on a graph. The points

  • 0

I have a silverlight application that simply plots points on a graph. The points that it plots come from a sql query.

The silverlight program will have to run the query and pull the relevant data on its own.

How do i achieve this kind of functionality??

thanks!

  • 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-15T14:36:42+00:00Added an answer on June 15, 2026 at 2:36 pm

    You don’t say how many times it needs to plot the data per sec/min? Is it just to plot once. If so then when your app first loads write an asynchronous call and have the call query sql and return the results in the callback..

    If the program needs to return data at set intervals then you’ll need a dispatcher timer or something similar..

    Ok something like this..

    public class MyClass : INotifyPropertyChanged
    {
        public MyClass()
        {
            DispatcherTimer timer = new DispatcherTimer();
            timer.Tick += OnTimerTick;
            timer.Interval = TimeSpan.FromSeconds(300);
        }
    
    private void OnTimerTick(object sender, EventArgs e)
        {
            var result = await UpdateGraphPoints();
            MyGraphPoints = this.PopulateTheGraph(result);
        }
    
        private async Task<List<MyGraphPoint>> UpdateGraphPoints()
        {
            var oper = await YourDatabaseQueryMethod();
            return oper;
        }
    
        private ObservableCollection<MyGraphPoint> PopulateTheGraph(object result)
        {
    
        }
    
        private ObservableCollection<MyGraphPoint> myGraphPoints;
    
        public ObservableCollection<MyGraphPoint> MyGraphPoints
        {
            get { return this.myGraphPoints; }
            set
            {
                myGraphPoints = value;
                OnPropertyChanged("MyGraphPoints");
            }
        }
    
    private void OnPropertyChanged(string propertyName)
        {
            if (PropertyChanged != null)
            {
                PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
            }
        }
    

    }

    public class MyGraphPoint : INotifyPropertyChanged
    {
        public event PropertyChangedEventHandler PropertyChanged;
    
        private int xValue;
    
        public int XValue
        {
            get { return xValue; }
            set
            {
                this.xValue = value;
                this.OnPropertyChanged("XValue");
            }
        }
    
        private int yValue;
    
        public int YValue
        {
            get { return yValue; }
            set
            {
                this.yValue = value;
                this.OnPropertyChanged("YValue");
            }
        }
    
        private void OnPropertyChanged(string propertyName)
        {
            if (PropertyChanged != null)
            {
                PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
            }
        }
    }
    

    And then in your xaml – bind the MyGraphPoints observable collection to your graph control.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a silverlight 3 application, that fetches some simple data from a ms-sql-server
I have a Silverlight application that reads its content from an XML file. The
I have a Silverlight application that I am trying to style. This style simply
I have a Silverlight application that is using a DataGrid. Inside of that DataGrid
I have a Silverlight application that needs to display data in both English (feet,
I have a silverlight application that I am embedding in an existing ASP.NET web
I have a Silverlight application that I use the Beta2 T4 Self tracking entities
I have a silverlight application that needs to talk to a rails app to
I have a silverlight application that contains Bing map. I want when the user
I have a WCF service and a Silverlight application that work just fine when

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.