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
442
How to connect a Service Reference in XAML instead of C# to a XamWebChart
posted

Hi,

  I can get XamWebChart to graph data using the following C# code:

            Series PullSeries = new Series
            {
                Label = "pulls",
                ChartType = ChartType.Line,
                DataMapping = "label=SDate;value=Pulls;",
                DataSource = e.Result
              }

                 PullsChart.Series.Add(PullandDeadsSeries);

e being = OnFeed_SL.ServiceReference1.GetPullsAndDeadsSTRDateCompletedEventArgs

To do the above what would be a code example in XAML...  What I am trying to do is the graph using BLEND to develop with and let BLEND connect up to the data source using XAML.

 

THANKS

Keith