Browse By Tags

  • XamWebChart series data refresh issue

    Initially for 2 times graph is drafted properly. But then onwards improper data for series is picked for drawing graph. While debugging, the view-model brings the proper data but is not correctly reflected in the graph. Even it is not displaying the previous…
  • Problems with DateTime Formatting and Changing X-Axis Intervals

    Hey,

    I  am having some serious problems trying to format the x-axis of the xamWebChart (using the version from 10.1) and changing the x-axis intervals.  I don't want to see every date on the chart because there isn't enough space for it, so I want to see…

  • Currently selected datapoints in XamWebChart

    Hi,

    I have the following scenario. 

    There is a XamWebChart with ZoomRectangle property enabled. 

    Our requirement is to get the DataPoints selected in the ZoomRectangle area(before or after zooming) so that we can process the data. 

    Any suggestions on…

  • Attatching objects to data points

    My data source for the charts is a collection of objects, I have set up the data mapping and called databind to setup the data points.

    On 'clicking' a data point I need access to the data source the item is bound to and as far as I can tell this isnt…

  • Possible Bug in series object

    Hi,

    I am populating a column chart programatically from the data returned from service. The following xaml will explain how the data is coming back from the service.

    <igChart:XamWebChart.Series>
                        <igChart:Series Label="Open" DataPointStyle="{StaticResource…

  • How to start with xamWebDataChart control in your silverlight application.

    How to start with xamWebDataChart control in your silverlight application. and what kind of data it take to display.

    I mean, i am stuck with from where to start.

    please help me out in order to get some code sample and documentation so i can start.

  • How to connect a Service Reference in XAML instead of C# to a XamWebChart

    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

  • xamWebChart Glass

    Hi,

    Does anyone know how to apply a glass style to a bar chart ?

    Thanks,

    Jeremy

  • How do I fill a DataPoint's bar with text?

    I have a custom control that contains a column chart and I need to style the DataPoints based on certain properties of the backing data.  To accomplish this I've created several styles in the UserControl.Resources of my custom component and set the Style…