Skip to content

Commit

Permalink
cwv.
Browse files Browse the repository at this point in the history
  • Loading branch information
escape-llc committed Jun 19, 2018
1 parent e434d31 commit 037fb6e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Yet Another Chart Component Demo")]
[assembly: AssemblyDescription("Demonstration for the YACC package")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyDescription("Demonstration for the eScapeLLC.UWP.Charts package on nuget.org")]
[assembly: AssemblyConfiguration("uap10.0")]
[assembly: AssemblyCompany("eScape Technology LLC")]
[assembly: AssemblyProduct("eScapeLLC.UWP.Charts")]
[assembly: AssemblyCopyright("Copyright © 2017-18")]
Expand All @@ -23,6 +23,6 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.4")]
[assembly: AssemblyFileVersion("1.0.0.4")]
[assembly: AssemblyVersion("1.0.0.5")]
[assembly: AssemblyFileVersion("1.0.0.5")]
[assembly: ComVisible(false)]
2 changes: 1 addition & 1 deletion YetAnotherChartComponent/eScape.Yacc.Demo/VM/ViewModels.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public MainPageVM(CoreDispatcher dx) : base(dx) {
new PageItem() { Glyph="\u2460", Title = "Demo", Description = "The demo chart (as seen on The Internet).", PageType = typeof(Chart1) },
new PageItem() { Glyph="\u2461", Title = "Default", Description = "Default styles in case you forget!", PageType = typeof(Chart2) },
new PageItem() { Glyph="\u2462", Title = "Recycling", Description = "Paths recycle efficiently as values enter and leave chart.", PageType = typeof(Chart3) },
new PageItem() { Glyph="\u2463", Title = "Stock Chart", Description = "Cached real data multiple Y-axis rotated labels.", PageType = typeof(Chart4) },
new PageItem() { Glyph="\u2463", Title = "Stock Chart", Description = "Cached real data, double Y-axis, rotated X-axis labels, conditional X-axis labels.", PageType = typeof(Chart4) },
new PageItem() { Glyph="\u2464", Title = "Stacked", Description = "Stacked column chart with labels.", PageType = typeof(Chart5) },
new PageItem() { Glyph="\u2465", Title = "Pie", Description = "Pie chart.", PageType = typeof(Chart6) }
};
Expand Down

0 comments on commit 037fb6e

Please sign in to comment.