-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding changes from build igniteui-xplat-examples-output+PRs_2024.1.4…
….1 (#585) Co-authored-by: tfsbuild <[email protected]>
- Loading branch information
1 parent
10257e5
commit db1943c
Showing
7 changed files
with
197 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
50 changes: 50 additions & 0 deletions
50
.../charts/data-chart/chart-highlight-filter-datasource/OnlineTrafficHighlightDesktopOnly.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
public class OnlineTrafficHighlightDesktopOnlyItem | ||
{ | ||
public string Category { get; set; } | ||
public double Value { get; set; } | ||
} | ||
|
||
public class OnlineTrafficHighlightDesktopOnly | ||
: List<OnlineTrafficHighlightDesktopOnlyItem> | ||
{ | ||
public OnlineTrafficHighlightDesktopOnly() | ||
{ | ||
this.Add(new OnlineTrafficHighlightDesktopOnlyItem() | ||
{ | ||
Category = @"Apparel", | ||
Value = 27 | ||
}); | ||
this.Add(new OnlineTrafficHighlightDesktopOnlyItem() | ||
{ | ||
Category = @"Beauty", | ||
Value = 29 | ||
}); | ||
this.Add(new OnlineTrafficHighlightDesktopOnlyItem() | ||
{ | ||
Category = @"Travel", | ||
Value = 41 | ||
}); | ||
this.Add(new OnlineTrafficHighlightDesktopOnlyItem() | ||
{ | ||
Category = @"Grocery", | ||
Value = 37 | ||
}); | ||
this.Add(new OnlineTrafficHighlightDesktopOnlyItem() | ||
{ | ||
Category = @"Energy", | ||
Value = 58 | ||
}); | ||
this.Add(new OnlineTrafficHighlightDesktopOnlyItem() | ||
{ | ||
Category = @"Home Supply", | ||
Value = 35 | ||
}); | ||
this.Add(new OnlineTrafficHighlightDesktopOnlyItem() | ||
{ | ||
Category = @"Financial", | ||
Value = 58 | ||
}); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
101 changes: 101 additions & 0 deletions
101
.../data-chart/chart-highlight-filter-multiple-series/CountryRenewableElectricityFiltered.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
public class CountryRenewableElectricityFilteredItem | ||
{ | ||
public string Year { get; set; } | ||
public double Europe { get; set; } | ||
public double China { get; set; } | ||
public double America { get; set; } | ||
} | ||
|
||
public class CountryRenewableElectricityFiltered | ||
: List<CountryRenewableElectricityFilteredItem> | ||
{ | ||
public CountryRenewableElectricityFiltered() | ||
{ | ||
this.Add(new CountryRenewableElectricityFilteredItem() | ||
{ | ||
Year = @"2009", | ||
Europe = 26, | ||
China = 14, | ||
America = 12 | ||
}); | ||
this.Add(new CountryRenewableElectricityFilteredItem() | ||
{ | ||
Year = @"2010", | ||
Europe = 29, | ||
China = 17, | ||
America = 18 | ||
}); | ||
this.Add(new CountryRenewableElectricityFilteredItem() | ||
{ | ||
Year = @"2011", | ||
Europe = 50, | ||
China = 21, | ||
America = 22 | ||
}); | ||
this.Add(new CountryRenewableElectricityFilteredItem() | ||
{ | ||
Year = @"2012", | ||
Europe = 48, | ||
China = 20, | ||
America = 20 | ||
}); | ||
this.Add(new CountryRenewableElectricityFilteredItem() | ||
{ | ||
Year = @"2013", | ||
Europe = 37, | ||
China = 23, | ||
America = 26 | ||
}); | ||
this.Add(new CountryRenewableElectricityFilteredItem() | ||
{ | ||
Year = @"2014", | ||
Europe = 26, | ||
China = 34, | ||
America = 21 | ||
}); | ||
this.Add(new CountryRenewableElectricityFilteredItem() | ||
{ | ||
Year = @"2015", | ||
Europe = 55, | ||
China = 38, | ||
America = 12 | ||
}); | ||
this.Add(new CountryRenewableElectricityFilteredItem() | ||
{ | ||
Year = @"2016", | ||
Europe = 7, | ||
China = 55, | ||
America = 38 | ||
}); | ||
this.Add(new CountryRenewableElectricityFilteredItem() | ||
{ | ||
Year = @"2017", | ||
Europe = 57, | ||
China = 101, | ||
America = 32 | ||
}); | ||
this.Add(new CountryRenewableElectricityFilteredItem() | ||
{ | ||
Year = @"2018", | ||
Europe = 23, | ||
China = 112, | ||
America = 19 | ||
}); | ||
this.Add(new CountryRenewableElectricityFilteredItem() | ||
{ | ||
Year = @"2018", | ||
Europe = 18, | ||
China = 118, | ||
America = 22 | ||
}); | ||
this.Add(new CountryRenewableElectricityFilteredItem() | ||
{ | ||
Year = @"2019", | ||
Europe = 40, | ||
China = 70, | ||
America = 26 | ||
}); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters