Browse Forum Posts by Tags

Showing related tags and posts for the Forums application.

  • Re: Is it possible to orient labels differently ?

    Posted to Chart for Silverlight by dusko on Jun 9, 2011
    In the 2011.1 release you can rotate annotations as follows: <ch:XYChart ...> <ch:XYChart.XAxisArea> <ch:AxisCoordinates Angle=" 90 "/> </ch:XYChart.XAxisArea> </ch:XYChart>
  • Re: The old 4004 Error

    Posted to Upload for Silverlight by jrodgers on Nov 3, 2010
    Hi, Please try method #2 or #3 from this page: http://docs.componentart.com/default.aspx?content=ComponentArt.Web.UI.Silverlight/Upload_QuickStart.htm Use of the asp:Silverlight control in the System.Web.Silverlight assembly is deprecated. Thanks, Jeremy
  • Re: Data Visualization for .NET is out!

    Posted to General Discussion by phil on Oct 13, 2010
    Developing with the Silverlight Version of Data Visualization for .NET requires Silverlight 4.0, I believe the message you are experiencing is due to this not being installed. You can download the required development tools from Microsoft here, http://go.microsoft.com/fwlink/?LinkID=177428
  • Re: Chart gets invisible

    Posted to Chart for Silverlight by dusko on Mar 8, 2010
    I've reproduced some of your problems: data point isn't shifted when the "Shift" property is changed. There was a problem in handling this change and it's being fixed. The fix will be available in the SP1. Menawhile, there is a workarround: when a data point is shifted out (i.e. Shift > 0) set the "Selected" property of that point to "true". When it's is shifted in, set "Selected=false". Do this after setting the "shift" value....
  • Re: Chart gets invisible

    Posted to Chart for Silverlight by dusko on Mar 8, 2010
    There is one problem with your code: the event handler "pieChart_DataStructureCreated" will never be called since it's defined after the chart DataSource has been set. When you set the data source, the chart data stricture including data points is created and - at the end of that process - the handler is invoked. Therefore, the handler has to be defined before the data source is set. I don't know what the handler is doing, but it seems like that doesn't cause the problem you...
  • Re: Filter Header Style

    Posted to DataGrid for Silverlight by milos on Mar 5, 2010
    Joe, the one change we made was to replace every Popup with our own implementation (called CommonPopup, in ComponentArt.Silverlight.UI.Utils (ComponentArt.Silverlight.UI.Common assembly), to allow for code reuse between Silverlight and WPF. The code expects that type now. If you make that one change in your XAML (replacing <Popup> with <ComponentArt:CommonPopup>), everything should work the same as before. I hope this helps.
  • Re: Setting up a template column to show true false

    Posted to DataGrid for Silverlight by milos on Mar 5, 2010
    whocares, it sounds like you need to use a value converter. You can use this approach to shape the column data in any way you want, as it is bound. There is some good documentation about it on MSDN. I hope this helps.
  • Re: Component Art Chharting

    Posted to Chart for Silverlight by dusko on Feb 15, 2010
    Yes, there are properties that can help: try setting Chart.InnerMargins="0" and Chart.RelativeDoughnutOuterCircleRadius="1" (presently it is 0.90 meaning that doughnut/pie would use 90% of the space).
  • Gradient background for chart

    Posted to Chart for Silverlight by santhimurthyd on Dec 8, 2009
    Hi Is it possible to have background color of the chart with liner Gradient. Regadrs Santhimurthy Dessingou
  • Negative series gettign overlapped

    Posted to Chart for Silverlight by santhimurthyd on Dec 8, 2009
    Hi I have been trying to create Stacked chart with three series, of that Two of series will haev negative values and when try to implement the same, Positive value series overlap the other series. Value used in the series DataPointValueCollection dpvc = new DataPointValueCollection(); ObservableCollection<DataPointValue> collection = new ObservableCollection<DataPointValue>(); collection.Add(new DataPointValue() { Hour = "12:00", Sales1 = 100, Sales3 = -70, Sales2 = -150 });...
Page 1 of 15 (144 items) 1 2 3 4 5 Next > ... Last ยป