Advanced Forum Search Results
-
Hi,
I've the chart with line series. Initially, I'm adding line series to the chart & also the style for it like - int SeriesCnt = 0;
for (int rowcnt = 0; rowcnt < lstChart.Count; rowcnt++){
Style style = new Style(typeof(Control));Setter st2 = new Setter();
ZoomRatioChart.Series.Add(new ...
-
Hi!!
I'm still facing the same problem . i.e. repeated lables for X-axis though the data is not single point now, its of about 13 - 14 points for each line.
Is there is problem due to style, as I'm setting it like -
<Style x:Name="DateAxisLableStyle" TargetType="chart:AxisLabel">
<Setter ...
-
Hi, thanks for your reply.
I solved the problem by converting the list of my objects to ObservableCollection list. Defined object with data + IsRatioChecked. Like -
public class RatioList : INotifyPropertyChanged
{public event PropertyChangedEventHandler PropertyChanged;
public string Description { get; set; }public string ...
-
Hi,
I've listbox like -
<ListBox x:Name="lstRatio" Width="200" HorizontalAlignment="Left" Height="150" SelectionMode="Multiple" VerticalAlignment="Top" Margin="0,0,0,0" >
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel ...
-
I set the Interval, but not for this data, this data is Quarterly data & I set the Interval, only if the data is Yearly. Otherwise, it takes the default.
So, for this example, it takes the default IntervalType, dpending upon the data.
The issue is - its displaying the wrong X-axis Lables. Can it be issue due to - just a single ...
-
Hi!
I'm using the chart control, with reference of assembly - Microsoft.Windows.Controls.DataVisualization ( Runtime version - v2.0.50727)
The data is having only one point for a line. So, in chart, its showing just a single point. But, on X-axis its showing the weird lables. The point is like - Y- 9.82 & X - 30/09/2009
But, the ...
-
Hi!!
Has anyone used this new control - TreeMap in application with data of type Hierarchy more than 2 / 3 .. Like - Root - Subitems - SubItems - so on.....
Please, share the xaml as well as xaml.cs
Email ID - pragati.dukale@revalanalytics.com
Thanks in advance.
Pragati
-
Hello,
Thanks for the help, the sample project you sent me helped a lot.
Actually, I'm trying the heatmap zoom - drag on a specific, height - width canvas.The problem is, when I go for zoom in, the borders of each item of HeatMap get zoomed. I've done the calculation like this with the StrokeThickness property of HeatMap - ...
-
Hi!
I'm trying the zoom with mouse wheel & mouse drag - with the ScaleTransform - Canvas within canvas.
The problem is when I tried wheel zoom - then drag - then again wheel zoom, it is not getting the expected result. I tried it by resetting the CenterX & CenterY of ScaleTransform.
I've ...
-
Plz check this link
http://www.codeproject.com/KB/recipes/treemaps.aspx
Download the the project & check, you need to modify somethings. I've created the Treemap with the base logic from this itself.