This question is locked. New answers and comments are not allowed.
Hello!
Can you give me a sample how to create Pivot Map with SP1 Q2.
Because after update I cannot see any items.
I do following (according your demo):
And I don't see any items.
Thanks, Anatoly Chekh.
Can you give me a sample how to create Pivot Map with SP1 Q2.
Because after update I cannot see any items.
I do following (according your demo):
PivotMap.LayoutStrategy = new SquarifiedStrategy();PivotMap.GroupDefinitions.Add(new GroupDefinition() { Member = "Genre" });PivotMap.ValuePath = "GrossSales";PivotMap.LabelPath = "Name";PivotMap.ToolTipPath = "GrossSales";PivotMap.ToolTipFormat = "Gross Sales: {0:C0}";List<MovieInfo> list = new List<MovieInfo>();list.Add(new MovieInfo() { GrossSales = 123, Name = "A1", Genre = "A"});list.Add(new MovieInfo() { GrossSales = 123, Name = "A2", Genre = "A" });list.Add(new MovieInfo() { GrossSales = 123, Name = "B1", Genre = "B" });PivotMap.ItemsSource = list;And I don't see any items.
Thanks, Anatoly Chekh.