-
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>
-
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
-
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
-
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....
-
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...
-
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.
-
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.
-
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).
-
Hi Is it possible to have background color of the chart with liner Gradient. Regadrs Santhimurthy Dessingou
-
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 });...