From 83ed4d9d2f564d4b8a4b0b3091c3f7c4c6ebf2ff Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Mon, 14 Apr 2025 18:50:03 -0400 Subject: [PATCH 1/8] mdd-custom-tooltip-geo mdd-custom-tooltip-geo --- .../maps/geo-map/custom-tooltips/App.razor | 41 +- .../custom-tooltips/BlazorClientApp.csproj | 4 - .../custom-tooltips/Services/GeoLocation.cs | 13 + .../custom-tooltips/Services/WorldCity.cs | 14 + .../Services/WorldConnections.cs | 204 ++++++ .../Services/WorldLocations.cs | 642 ++++++++++++++++++ .../custom-tooltips/Services/WorldUtils.cs | 224 ++++++ 7 files changed, 1137 insertions(+), 5 deletions(-) create mode 100644 samples/maps/geo-map/custom-tooltips/Services/GeoLocation.cs create mode 100644 samples/maps/geo-map/custom-tooltips/Services/WorldCity.cs create mode 100644 samples/maps/geo-map/custom-tooltips/Services/WorldConnections.cs create mode 100644 samples/maps/geo-map/custom-tooltips/Services/WorldLocations.cs create mode 100644 samples/maps/geo-map/custom-tooltips/Services/WorldUtils.cs diff --git a/samples/maps/geo-map/custom-tooltips/App.razor b/samples/maps/geo-map/custom-tooltips/App.razor index fde50a6a19..7ac258d84b 100644 --- a/samples/maps/geo-map/custom-tooltips/App.razor +++ b/samples/maps/geo-map/custom-tooltips/App.razor @@ -4,15 +4,54 @@
+ +
@code { + public RenderFragment TooltipTemplate = (context) => + { + var dataContext = context as IgbDataContext; + var dataItem = dataContext.Item as WorldCity; + var svg = ((WorldCity)dataItem).Country.ToLower() + ".svg"; + var scr = "https://static.infragistics.com/xplatform/images/flags/" + svg.ToString(); + + Console.WriteLine("https://static.infragistics.com/xplatform/images/flags/" + svg.ToString()); + + return @
+
+ +
- // TODO +
+ ; + }; + + private List symbolData; protected override void OnInitialized() { + symbolData = new List + { + + new WorldCity() { Lat = 32.763, Lon = -96.663, Country = "usa", Name = "Dallas" }, + new WorldCity() { Lat = -33.889, Lon = 151.028, Country = "aus", Name = "Sydney" }, + new WorldCity() { Lat = -36.848, Lon = 174.763, Country = "nzl", Name = "Auckland" }, + new WorldCity() { Lat = 25.285, Lon = 51.531, Country = "qat", Name = "Doha" }, + new WorldCity() { Lat = 8.949, Lon = -79.400, Country = "pan", Name = "Panama" }, + new WorldCity() { Lat = -33.475, Lon = -70.647, Country = "chl", Name = "Santiago" }, + new WorldCity() { Lat = 35.683, Lon = 139.809, Country = "jpn", Name = "Tokyo" }, + new WorldCity() { Lat = 33.795, Lon = -84.349, Country = "usa", Name = "Atlanta" }, + new WorldCity() { Lat = -26.178, Lon = 28.004, Country = "zaf", Name = "Johannesburg" }, + new WorldCity() { Lat = 40.750, Lon = -74.0999, Country = "usa", Name = "New York" }, + new WorldCity() { Lat = 1.229, Lon = 104.177, Country = "sgp", Name = "Singapore" }, + new WorldCity() { Lat = 55.750, Lon = 37.700, Country = "rus", Name = "Moscow" }, + new WorldCity() { Lat = 41.880, Lon = 12.520, Country = "ita", Name = "Roma" }, + new WorldCity() { Lat = 34.000, Lon = -118.25, Country = "usa", Name = "Los Angeles" } + }; } } \ No newline at end of file diff --git a/samples/maps/geo-map/custom-tooltips/BlazorClientApp.csproj b/samples/maps/geo-map/custom-tooltips/BlazorClientApp.csproj index 44a745b992..695ad34ae0 100644 --- a/samples/maps/geo-map/custom-tooltips/BlazorClientApp.csproj +++ b/samples/maps/geo-map/custom-tooltips/BlazorClientApp.csproj @@ -18,8 +18,4 @@ - - - - diff --git a/samples/maps/geo-map/custom-tooltips/Services/GeoLocation.cs b/samples/maps/geo-map/custom-tooltips/Services/GeoLocation.cs new file mode 100644 index 0000000000..43f02f37ce --- /dev/null +++ b/samples/maps/geo-map/custom-tooltips/Services/GeoLocation.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Infragistics.Samples +{ + public class GeoLocation + { + public double Lat { get; set; } + public double Lon { get; set; } + } +} diff --git a/samples/maps/geo-map/custom-tooltips/Services/WorldCity.cs b/samples/maps/geo-map/custom-tooltips/Services/WorldCity.cs new file mode 100644 index 0000000000..e09b8729b5 --- /dev/null +++ b/samples/maps/geo-map/custom-tooltips/Services/WorldCity.cs @@ -0,0 +1,14 @@ +using System; + +namespace Infragistics.Samples +{ + public class WorldCity + { + public double Lat { get; set; } + public double Lon { get; set; } + public double Pop { get; set; } + public string Country { get; set; } + public string Name { get; set; } + public bool Cap { get; set; } + } +} diff --git a/samples/maps/geo-map/custom-tooltips/Services/WorldConnections.cs b/samples/maps/geo-map/custom-tooltips/Services/WorldConnections.cs new file mode 100644 index 0000000000..3158aec1bf --- /dev/null +++ b/samples/maps/geo-map/custom-tooltips/Services/WorldConnections.cs @@ -0,0 +1,204 @@ +using IgniteUI.Blazor.Controls; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Runtime.CompilerServices; +using System.Threading.Tasks; + +namespace Infragistics.Samples +{ + public static class WorldConnections + { + public static List Flights { get; set; } + public static List Airports { get; set; } + + public static Dictionary FlightsLookup = new Dictionary(); + public static Dictionary AirportsLookup = new Dictionary(); + + static WorldConnections() + { + Init(); + } + + public static List GetFlights() + {; + return Flights; + } + + public static List GetAirports() + { + return Airports; + } + + public static int ComparePopulation(WorldCity a, WorldCity b) + { + if(a.Pop < b.Pop) + { + return 1; + } + if(a.Pop > b.Pop) + { + return -1; + } + + return 0; + } + + static Random rand = new Random(); + + public static void Init() + { + Flights = new List(); + Airports = new List(); + + var fullCityList = WorldLocations.GetAll(); + var cities = new List(); + + var countries = new Dictionary(); + + foreach (var city in fullCityList) + { + if (countries.ContainsKey(city.Country)) + { + if (countries[city.Country] < 2) + { + cities.Add(city); + countries[city.Country]++; + } + } + else + { + cities.Add(city); + countries.Add(city.Country, 1); + } + } + + fullCityList.Sort(new Comparison(ComparePopulation)); + + int count = cities.Count; + int flightsCount = 0; + + double minDistance = 200; + double maxDistance = 10000; + double flightsLimit = 250; + + for (int i=0; i minDistance && distance < maxDistance; + + double pass = Math.Round(rand.NextDouble() * 200) + 150; + double time = distance / 800; + bool trafficIsValid = origin.Pop > 3 && dest.Pop > 1.0; + + if(routeIsValid && distanceIsValid && trafficIsValid) + { + FlightsLookup.Add(route, route); + + List> paths = WorldUtils.CalcPaths(originGeo, destGeo); + flightsCount++; + connectionsCount++; + + string id = origin.Name.Substring(0, 3).ToUpper() + "-" + flightsCount; + FlightInfo flight = new FlightInfo() { ID = id, Origin = origin, Dest = dest, Time = time, Passengers = pass, Distance = distance, Points = paths }; + Flights.Add(flight); + } + + if (connectionsCount > connectionsMax) + { + break; + } + if (flightsCount > flightsLimit) + { + break; + } + } + } + + } + + foreach(FlightInfo flight in Flights) + { + AddAirport(flight.Origin); + AddAirport(flight.Dest); + } + + Airports = AirportsLookup.Values.ToList(); + } + + public static void AddAirport(WorldCity city) + { + if (!AirportsLookup.ContainsKey(city.Name)) + { + AirportsLookup.Add(city.Name, city); + } + } + + public static List GetGridlines() + { + List gridlines = new List(); + + List> latLines = new List>(); + List> lonLines = new List>(); + + for (int lon = -180; lon <= 180; lon += 30) + { + List points = new List(); + points.Add(new Point(lon, -90)); + points.Add(new Point(lon, 90)); + + lonLines.Add(points); + } + + for (int lat= -90; lat<= 90; lat += 30) + { + List points = new List(); + points.Add(new Point(-180, lat)); + points.Add(new Point(180, lat)); + + latLines.Add(points); + } + + CoordinateLine lines1 = new CoordinateLine() { Points = lonLines }; + CoordinateLine lines2 = new CoordinateLine() { Points = latLines }; + + gridlines.Add(lines1); + gridlines.Add(lines2); + + return gridlines; + } + } + + public class FlightInfo + { + public string ID { get; set; } + public WorldCity Origin { get; set; } + public WorldCity Dest { get; set; } + public double Time { get; set; } + public double Passengers { get; set; } + public double Distance { get; set; } + public List> Points { get; set; } + public string Color { get; set; } + } + + public class CoordinateLine + { + public List> Points { get; set; } + } +} diff --git a/samples/maps/geo-map/custom-tooltips/Services/WorldLocations.cs b/samples/maps/geo-map/custom-tooltips/Services/WorldLocations.cs new file mode 100644 index 0000000000..a9090a5532 --- /dev/null +++ b/samples/maps/geo-map/custom-tooltips/Services/WorldLocations.cs @@ -0,0 +1,642 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Infragistics.Samples +{ + public static class WorldLocations + { + public static List GetAll() + { + return WorldLocations.Init(); + } + + public static List GetCities() + { + List all = WorldLocations.Init(); + return all.Where(c => c.Cap == false).ToList(); + } + + public static List GetCapitals() + { + List all = WorldLocations.Init(); + return all.Where(c => c.Cap == true).ToList(); + } + + public static List Init() + { + List cities = new List() { + // console.log("WorldLocations init"); + new WorldCity { Cap = false, Pop = 0.468, Lat = 68.9635467529297, Lon = 33.0860404968262, Country = "Russia", Name = "Murmansk" }, + new WorldCity { Cap = false, Pop = 0.416, Lat = 64.5206680297852, Lon = 40.6461601257324, Country = "Russia", Name = "Arkhangelsk" }, + new WorldCity { Cap = false, Pop = 5.825, Lat = 59.9518890380859, Lon = 30.4533271789551, Country = "Russia", Name = "Saint Petersburg" }, + new WorldCity { Cap = false, Pop = 0.152, Lat = 59.5709991455078, Lon = 150.780014038086, Country = "Russia", Name = "Magadan" }, + new WorldCity { Cap = false, Pop = 1.160, Lat = 58.0002365112305, Lon = 56.2324638366699, Country = "Russia", Name = "Perm'" }, + new WorldCity { Cap = false, Pop = 1.620, Lat = 56.8465423583984, Lon = 60.6101303100586, Country = "Russia", Name = "Yekaterinburg" }, + new WorldCity { Cap = false, Pop = 2.025, Lat = 56.2896766662598, Lon = 43.9406700134277, Country = "Russia", Name = "Nizhniy Novgorod" }, + new WorldCity { Cap = false, Pop = 1.800, Lat = 55.8628082275391, Lon = -4.26994752883911, Country = "UK", Name = "Glasgow" }, + new WorldCity { Cap = false, Pop = 1.140, Lat = 55.7330055236816, Lon = 49.1454658508301, Country = "Russia", Name = "Kazan'" }, + new WorldCity { Cap = false, Pop = 1.325, Lat = 55.1450004577637, Lon = 61.3926124572754, Country = "Russia", Name = "Chelyabinsk" }, + new WorldCity { Cap = false, Pop = 1.175, Lat = 55.063304901123, Lon = 73.2502899169922, Country = "Russia", Name = "Omsk" }, + new WorldCity { Cap = false, Pop = 1.600, Lat = 55.0321006774902, Lon = 82.9428482055664, Country = "Russia", Name = "Novosibirsk" }, + new WorldCity { Cap = false, Pop = 1.100, Lat = 54.8217353820801, Lon = 56.0961265563965, Country = "Russia", Name = "Ufa" }, + new WorldCity { Cap = true, Pop = 0.582, Lat = 54.6885681152344, Lon = 25.2759666442871, Country = "Lithuania", Name = "Vilnius" }, + new WorldCity { Cap = false, Pop = 0.685, Lat = 54.5869255065918, Lon = -5.90966033935547, Country = "UK", Name = "Belfast" }, + new WorldCity { Cap = false, Pop = 0.909, Lat = 54.3662033081055, Lon = 18.624942779541, Country = "Poland", Name = "Gdansk" }, + new WorldCity { Cap = true, Pop = 1.650, Lat = 53.8999366760254, Lon = 27.5755672454834, Country = "Byelarus", Name = "Minsk" }, + new WorldCity { Cap = false, Pop = 1.540, Lat = 53.8087120056152, Lon = -1.49752748012543, Country = "UK", Name = "Leeds" }, + new WorldCity { Cap = false, Pop = 2.225, Lat = 53.5711212158203, Lon = 10.027606010437, Country = "Germany", Name = "Hamburg" }, + new WorldCity { Cap = false, Pop = 2.775, Lat = 53.479663848877, Lon = -2.26177859306335, Country = "UK", Name = "Manchester" }, + new WorldCity { Cap = false, Pop = 0.710, Lat = 53.3740425109863, Lon = -1.46298921108246, Country = "UK", Name = "Sheffield" }, + new WorldCity { Cap = true, Pop = 1.140, Lat = 53.3415603637695, Lon = -6.25734663009644, Country = "Ireland", Name = "Dublin" }, + new WorldCity { Cap = false, Pop = 1.505, Lat = 53.1385955810547, Lon = 50.0961799621582, Country = "Russia", Name = "Samara" }, + new WorldCity { Cap = false, Pop = 0.800, Lat = 53.0801048278809, Lon = 8.85762596130371, Country = "Germany", Name = "Bremen" }, + new WorldCity { Cap = true, Pop = 5.061, Lat = 52.5162734985352, Lon = 13.3275728225708, Country = "Germany", Name = "Berlin" }, + new WorldCity { Cap = false, Pop = 2.675, Lat = 52.4927520751953, Lon = -1.86334776878357, Country = "UK", Name = "Birmingham" }, + new WorldCity { Cap = true, Pop = 1.860, Lat = 52.3730430603027, Lon = 4.89483308792114, Country = "Netherlands", Name = "Amsterdam" }, + new WorldCity { Cap = false, Pop = 0.626, Lat = 52.3174324035645, Lon = 104.247833251953, Country = "Russia", Name = "Irkutsk" }, + new WorldCity { Cap = true, Pop = 2.323, Lat = 52.244945526123, Lon = 21.0118789672852, Country = "Poland", Name = "Warsaw" }, + new WorldCity { Cap = false, Pop = 1.110, Lat = 51.925594329834, Lon = 4.48515224456787, Country = "Netherlands", Name = "Rotterdam" }, + new WorldCity { Cap = false, Pop = 1.061, Lat = 51.7779083251953, Lon = 19.4764404296875, Country = "Poland", Name = "Lodz" }, + new WorldCity { Cap = false, Pop = 0.568, Lat = 51.5138130187988, Lon = 7.46641826629639, Country = "Germany", Name = "Dortmund" }, + new WorldCity { Cap = false, Pop = 0.515, Lat = 51.4893379211426, Lon = 6.77530431747437, Country = "Germany", Name = "Duisburg" }, + new WorldCity { Cap = true, Pop = 11.100, Lat = 51.4879112243652, Lon = -0.177998125553131, Country = "UK", Name = "london" }, + new WorldCity { Cap = false, Pop = 3.867, Lat = 51.3540420532227, Lon = 7.12243509292603, Country = "Germany", Name = "Essen" }, + new WorldCity { Cap = false, Pop = 0.700, Lat = 51.3493309020996, Lon = 12.3980741500854, Country = "Germany", Name = "Leipzig" }, + new WorldCity { Cap = false, Pop = 1.100, Lat = 51.207347869873, Lon = 4.42605447769165, Country = "Belgium", Name = "Antwerpen" }, + new WorldCity { Cap = false, Pop = 0.640, Lat = 51.1218185424805, Lon = 17.0381278991699, Country = "Poland", Name = "Wroclaw" }, + new WorldCity { Cap = false, Pop = 0.465, Lat = 51.0475540161133, Lon = 3.73629117012024, Country = "Belgium", Name = "Gent" }, + new WorldCity { Cap = false, Pop = 0.670, Lat = 51.0456809997559, Lon = 13.7053575515747, Country = "Germany", Name = "Dresden" }, + new WorldCity { Cap = false, Pop = 0.671, Lat = 51.0299987792969, Lon = -114.050003051758, Country = "Canada", Name = "Calgary" }, + new WorldCity { Cap = false, Pop = 1.760, Lat = 50.9423446655273, Lon = 6.93487167358398, Country = "Germany", Name = "Koln" }, + new WorldCity { Cap = true, Pop = 2.385, Lat = 50.8370475769043, Lon = 4.36761236190796, Country = "Belgium", Name = "Bruxelles" }, + new WorldCity { Cap = false, Pop = 0.570, Lat = 50.7345581054688, Lon = 7.09981870651245, Country = "Germany", Name = "Bonn" }, + new WorldCity { Cap = false, Pop = 1.020, Lat = 50.6320838928223, Lon = 3.06290125846863, Country = "France", Name = "Lille" }, + new WorldCity { Cap = false, Pop = 0.750, Lat = 50.6225280761719, Lon = 5.56943559646606, Country = "Belgium", Name = "Liege" }, + new WorldCity { Cap = true, Pop = 2.900, Lat = 50.4481582641602, Lon = 30.5021114349365, Country = "Ukraine", Name = "Kiev" }, + new WorldCity { Cap = false, Pop = 1.855, Lat = 50.129997253418, Lon = 8.66816711425781, Country = "Germany", Name = "Frankfurt am Main" }, + new WorldCity { Cap = true, Pop = 1.325, Lat = 50.1058959960938, Lon = 14.4565200805664, Country = "Czech Repub", Name = "Prague" }, + new WorldCity { Cap = false, Pop = 0.828, Lat = 50.0622406005859, Lon = 19.9450569152832, Country = "Poland", Name = "Krakow" }, + new WorldCity { Cap = false, Pop = 0.625, Lat = 49.9211692810059, Lon = -97.1244430541992, Country = "Canada", Name = "Winnipeg" }, + new WorldCity { Cap = false, Pop = 0.614, Lat = 49.879207611084, Lon = 73.20263671875, Country = "Kazakhstan", Name = "Karaganda" }, + new WorldCity { Cap = false, Pop = 0.790, Lat = 49.8373107910156, Lon = 24.0345211029053, Country = "Ukraine", Name = "Lvov" }, + new WorldCity { Cap = false, Pop = 0.450, Lat = 49.2029800415039, Lon = 16.6162452697754, Country = "Czech Repub", Name = "Brno" }, + new WorldCity { Cap = true, Pop = 9.775, Lat = 48.8815536499023, Lon = 2.43283271789551, Country = "France", Name = "Paris" }, + new WorldCity { Cap = false, Pop = 1.360, Lat = 48.7102470397949, Lon = 44.4836311340332, Country = "Russia", Name = "Volgograd" }, + new WorldCity { Cap = false, Pop = 0.400, Lat = 48.5834350585938, Lon = 7.76799440383911, Country = "France", Name = "Strasbourg" }, + new WorldCity { Cap = false, Pop = 0.335, Lat = 48.2975959777832, Lon = 14.2939014434814, Country = "Austria", Name = "Linz" }, + new WorldCity { Cap = true, Pop = 1.875, Lat = 48.2021179199219, Lon = 16.3209857940674, Country = "Austria", Name = "Vienna" }, + new WorldCity { Cap = false, Pop = 1.955, Lat = 48.1409759521484, Lon = 11.5429534912109, Country = "Germany", Name = "Munchen" }, + new WorldCity { Cap = false, Pop = 2.200, Lat = 48.0401458740234, Lon = 37.7370529174805, Country = "Ukraine", Name = "Donets'k" }, + new WorldCity { Cap = true, Pop = 0.548, Lat = 47.928596496582, Lon = 106.912353515625, Country = "Mongolia", Name = "Ulaanbaatar" }, + new WorldCity { Cap = true, Pop = 2.565, Lat = 47.5146255493164, Lon = 19.0942497253418, Country = "Hungary", Name = "Budapest" }, + new WorldCity { Cap = false, Pop = 1.150, Lat = 47.3440055847168, Lon = 123.964965820313, Country = "China", Name = "Qiqihar" }, + new WorldCity { Cap = false, Pop = 0.185, Lat = 47.2654609680176, Lon = 11.3499822616577, Country = "Austria", Name = "Innsbruck" }, + new WorldCity { Cap = false, Pop = 1.165, Lat = 47.2320976257324, Lon = 39.6880378723145, Country = "Russia", Name = "Rostov-na-Donu" }, + new WorldCity { Cap = false, Pop = 0.465, Lat = 47.2194328308105, Lon = -1.56156122684479, Country = "France", Name = "Nantes" }, + new WorldCity { Cap = false, Pop = 0.325, Lat = 47.0649223327637, Lon = 15.4311008453369, Country = "Austria", Name = "Graz" }, + new WorldCity { Cap = true, Pop = 0.299, Lat = 46.9482078552246, Lon = 7.44573640823364, Country = "Switzerland", Name = "Bern" }, + new WorldCity { Cap = false, Pop = 0.603, Lat = 46.802074432373, Lon = -71.2449340820313, Country = "Canada", Name = "Quebec" }, + new WorldCity { Cap = false, Pop = 1.185, Lat = 46.5722007751465, Lon = 30.6839370727539, Country = "Ukraine", Name = "Odessa" }, + new WorldCity { Cap = false, Pop = 2.670, Lat = 45.7552185058594, Lon = 126.622634887695, Country = "China", Name = "Harbin" }, + new WorldCity { Cap = false, Pop = 1.275, Lat = 45.7470817565918, Lon = 4.85540056228638, Country = "France", Name = "Lyon" }, + new WorldCity { Cap = false, Pop = 2.921, Lat = 45.541015625, Lon = -73.6535339355469, Country = "Canada", Name = "Montreal" }, + new WorldCity { Cap = false, Pop = 3.750, Lat = 45.4733810424805, Lon = 9.19046401977539, Country = "Italy", Name = "Milano" }, + new WorldCity { Cap = false, Pop = 0.420, Lat = 45.4247741699219, Lon = 12.370719909668, Country = "Italy", Name = "Venezia" }, + new WorldCity { Cap = true, Pop = 0.819, Lat = 45.3742179870605, Lon = -75.650749206543, Country = "Canada", Name = "Ottawa" }, + new WorldCity { Cap = false, Pop = 1.550, Lat = 45.0748748779297, Lon = 7.66642618179321, Country = "Italy", Name = "Torino" }, + new WorldCity { Cap = false, Pop = 2.012, Lat = 44.924186706543, Lon = -93.3077926635742, Country = "US", Name = "Minneapolis" }, + new WorldCity { Cap = false, Pop = 0.640, Lat = 44.8414726257324, Lon = -0.599498748779297, Country = "France", Name = "Bordeaux" }, + new WorldCity { Cap = true, Pop = 1.400, Lat = 44.7996826171875, Lon = 20.4125556945801, Country = "Serbia", Name = "Beograd" }, + new WorldCity { Cap = true, Pop = 2.250, Lat = 44.4304847717285, Lon = 26.1229763031006, Country = "Romania", Name = "Bucuresti" }, + new WorldCity { Cap = false, Pop = 1.740, Lat = 43.8813171386719, Lon = 125.312652587891, Country = "China", Name = "Changchung" }, + new WorldCity { Cap = false, Pop = 1.170, Lat = 43.8502159118652, Lon = 126.56706237793, Country = "China", Name = "Jilin" }, + new WorldCity { Cap = false, Pop = 1.040, Lat = 43.7826652526855, Lon = 87.5865173339844, Country = "China", Name = "Urumqi" }, + new WorldCity { Cap = false, Pop = 0.640, Lat = 43.7815742492676, Lon = 11.207745552063, Country = "Italy", Name = "Firenze" }, + new WorldCity { Cap = false, Pop = 3.427, Lat = 43.7207679748535, Lon = -79.4126358032227, Country = "Canada", Name = "Toronto" }, + new WorldCity { Cap = false, Pop = 0.541, Lat = 43.5999603271484, Lon = 1.43798303604126, Country = "France", Name = "Toulouse" }, + new WorldCity { Cap = false, Pop = 0.985, Lat = 43.2821578979492, Lon = -2.97378325462341, Country = "Spain", Name = "Bilbao" }, + new WorldCity { Cap = true, Pop = 1.190, Lat = 43.2550621032715, Lon = 76.9126281738281, Country = "Kazakhstan", Name = "Almaty" }, + new WorldCity { Cap = false, Pop = 0.816, Lat = 43.2104644775391, Lon = -77.635612487793, Country = "US", Name = "Rochester" }, + new WorldCity { Cap = false, Pop = 1.375, Lat = 43.0679473876953, Lon = -87.9907379150391, Country = "US", Name = "Milwaukee" }, + new WorldCity { Cap = false, Pop = 1.900, Lat = 43.0552520751953, Lon = 141.345474243164, Country = "Japan", Name = "Sapporo" }, + new WorldCity { Cap = false, Pop = 1.483, Lat = 42.8986625671387, Lon = -78.8484344482422, Country = "US", Name = "Buffalo" }, + new WorldCity { Cap = true, Pop = 1.205, Lat = 42.7072639465332, Lon = 23.3318710327148, Country = "Bulgaria", Name = "Sofia" }, + new WorldCity { Cap = false, Pop = 4.692, Lat = 42.3943138122559, Lon = -83.0789260864258, Country = "US", Name = "Detroit" }, + new WorldCity { Cap = false, Pop = 3.972, Lat = 42.3752975463867, Lon = -71.1025848388672, Country = "US", Name = "Boston" }, + new WorldCity { Cap = false, Pop = 1.270, Lat = 41.8591575622559, Lon = 123.905570983887, Country = "China", Name = "Fushun" }, + new WorldCity { Cap = false, Pop = 7.717, Lat = 41.826545715332, Lon = -87.6413040161133, Country = "US", Name = "Chicago" }, + new WorldCity { Cap = false, Pop = 3.840, Lat = 41.8021621704102, Lon = 123.383056640625, Country = "China", Name = "Shenyang" }, + new WorldCity { Cap = true, Pop = 1.460, Lat = 41.721809387207, Lon = 44.7831268310547, Country = "Georgia", Name = "Tbilisi" }, + new WorldCity { Cap = false, Pop = 0.575, Lat = 41.6512641906738, Lon = -0.878205060958862, Country = "Spain", Name = "Zaragoza" }, + new WorldCity { Cap = false, Pop = 2.218, Lat = 41.3907165527344, Lon = -81.7275085449219, Country = "US", Name = "Cleveland" }, + new WorldCity { Cap = true, Pop = 0.211, Lat = 41.3316535949707, Lon = 19.8318042755127, Country = "Albania", Name = "Tirane" }, + new WorldCity { Cap = false, Pop = 1.300, Lat = 41.1152458190918, Lon = 122.977012634277, Country = "China", Name = "Anshan" }, + new WorldCity { Cap = false, Pop = 5.750, Lat = 41.0659561157227, Lon = 29.0060691833496, Country = "Turkey", Name = "Istanbul" }, + new WorldCity { Cap = false, Pop = 0.682, Lat = 40.693920135498, Lon = -111.89217376709, Country = "US", Name = "Salt Lake City" }, + new WorldCity { Cap = false, Pop = 2.219, Lat = 40.4972038269043, Lon = -79.9970855712891, Country = "US", Name = "Pittsburgh" }, + new WorldCity { Cap = true, Pop = 4.650, Lat = 40.4422187805176, Lon = -3.69096946716309, Country = "Spain", Name = "Madrid" }, + new WorldCity { Cap = true, Pop = 2.020, Lat = 40.3242988586426, Lon = 49.8162384033203, Country = "Azerbaijan", Name = "Baku" }, + new WorldCity { Cap = true, Pop = 1.315, Lat = 40.2080230712891, Lon = 44.5326690673828, Country = "Armenia", Name = "Yerevan" }, + new WorldCity { Cap = false, Pop = 0.964, Lat = 40.0446434020996, Lon = -82.9927062988281, Country = "US", Name = "Columbus" }, + new WorldCity { Cap = true, Pop = 2.400, Lat = 39.929328918457, Lon = 32.853271484375, Country = "Turkey", Name = "Ankara" }, + new WorldCity { Cap = false, Pop = 5.209, Lat = 39.9275512695313, Lon = -75.2182235717773, Country = "US", Name = "Philadelphia" }, + new WorldCity { Cap = true, Pop = 6.450, Lat = 39.906192779541, Lon = 116.388038635254, Country = "China", Name = "Beijing" }, + new WorldCity { Cap = false, Pop = 0.246, Lat = 39.9044532775879, Lon = 41.2918243408203, Country = "Turkey", Name = "Erzurum" }, + new WorldCity { Cap = false, Pop = 0.366, Lat = 39.6575813293457, Lon = 66.9476013183594, Country = "Uzbekistan", Name = "Samarkand" }, + new WorldCity { Cap = false, Pop = 1.060, Lat = 39.6154441833496, Lon = 118.180213928223, Country = "China", Name = "Tangshan" }, + new WorldCity { Cap = false, Pop = 1.270, Lat = 39.4709167480469, Lon = -0.367400944232941, Country = "Spain", Name = "Valencia" }, + new WorldCity { Cap = false, Pop = 1.960, Lat = 39.3218841552734, Lon = -76.6183776855469, Country = "US", Name = "Baltimore" }, + new WorldCity { Cap = false, Pop = 0.305, Lat = 39.2251434326172, Lon = 9.10890960693359, Country = "Italy", Name = "Cagliari" }, + new WorldCity { Cap = false, Pop = 1.480, Lat = 39.1480102539063, Lon = -84.4770202636719, Country = "US", Name = "Cincinnati" }, + new WorldCity { Cap = false, Pop = 4.880, Lat = 39.1284141540527, Lon = 117.18522644043, Country = "China", Name = "Tianjin" }, + new WorldCity { Cap = true, Pop = 1.600, Lat = 39.0285148620605, Lon = 125.757514953613, Country = "Korea D P Rp", Name = "Pyongyang" }, + new WorldCity { Cap = false, Pop = 1.272, Lat = 38.9941177368164, Lon = -94.6265640258789, Country = "US", Name = "Kansas City" }, + new WorldCity { Cap = true, Pop = 3.221, Lat = 38.8909111022949, Lon = -76.9538345336914, Country = "US", Name = "Washington D.C." }, + new WorldCity { Cap = false, Pop = 2.203, Lat = 38.6388854980469, Lon = -90.3419799804688, Country = "US", Name = "St. Louis" }, + new WorldCity { Cap = false, Pop = 0.866, Lat = 38.5670166015625, Lon = -121.422706604004, Country = "US", Name = "Sacramento" }, + new WorldCity { Cap = false, Pop = 0.971, Lat = 38.0809783935547, Lon = 46.2901191711426, Country = "Iran", Name = "Tabriz" }, + new WorldCity { Cap = false, Pop = 1.190, Lat = 38.0770950317383, Lon = 114.559707641602, Country = "China", Name = "Shijiazhuang" }, + new WorldCity { Cap = true, Pop = 0.398, Lat = 37.9504203796387, Lon = 58.3901329040527, Country = "Turkmenistan", Name = "Ashkhabad" }, + new WorldCity { Cap = false, Pop = 1.660, Lat = 37.8930549621582, Lon = 112.551704406738, Country = "China", Name = "Taiyuan" }, + new WorldCity { Cap = true, Pop = 15.850, Lat = 37.542350769043, Lon = 126.935249328613, Country = "Korea Rep", Name = "Seoul" }, + new WorldCity { Cap = false, Pop = 0.945, Lat = 37.3726463317871, Lon = -5.97083187103271, Country = "Spain", Name = "Sevilla" }, + new WorldCity { Cap = false, Pop = 0.778, Lat = 36.9999809265137, Lon = 35.3243637084961, Country = "Turkey", Name = "Adana" }, + new WorldCity { Cap = false, Pop = 0.796, Lat = 36.8792915344238, Lon = -76.2685699462891, Country = "US", Name = "Norfolk" }, + new WorldCity { Cap = true, Pop = 1.225, Lat = 36.8188133239746, Lon = 10.1659603118896, Country = "Tunisia", Name = "Tunis" }, + new WorldCity { Cap = false, Pop = 0.830, Lat = 36.7914962768555, Lon = 118.062042236328, Country = "China", Name = "Zibo" }, + new WorldCity { Cap = false, Pop = 1.460, Lat = 36.6555366516113, Lon = 116.967056274414, Country = "China", Name = "Jinan" }, + new WorldCity { Cap = false, Pop = 0.571, Lat = 36.3355674743652, Lon = 43.1371269226074, Country = "Iraq", Name = "Mosul" }, + new WorldCity { Cap = false, Pop = 1.464, Lat = 36.2900695800781, Lon = 59.596851348877, Country = "Iran", Name = "Mashhad" }, + new WorldCity { Cap = false, Pop = 1.216, Lat = 36.2155456542969, Lon = 37.1592826843262, Country = "Syria", Name = "Aleppo" }, + new WorldCity { Cap = false, Pop = 1.270, Lat = 36.1134300231934, Lon = 103.599594116211, Country = "China", Name = "Lanzhou" }, + new WorldCity { Cap = false, Pop = 2.206, Lat = 35.8635368347168, Lon = 128.591384887695, Country = "Korea Rep", Name = "Taegu" }, + new WorldCity { Cap = true, Pop = 6.400, Lat = 35.7744750976563, Lon = 51.4476509094238, Country = "Iran", Name = "Tehran" }, + new WorldCity { Cap = true, Pop = 23.620, Lat = 35.6830558776855, Lon = 139.809188842773, Country = "Japan", Name = "Tokyo" }, + new WorldCity { Cap = false, Pop = 1.089, Lat = 35.5045700073242, Lon = 139.72721862793, Country = "Japan", Name = "Kawasaki" }, + new WorldCity { Cap = false, Pop = 0.742, Lat = 35.4895896911621, Lon = -97.5302963256836, Country = "US", Name = "Oklahoma City" }, + new WorldCity { Cap = false, Pop = 2.993, Lat = 35.437385559082, Lon = 139.619659423828, Country = "Japan", Name = "Yokohama" }, + new WorldCity { Cap = false, Pop = 0.479, Lat = 35.2058143615723, Lon = -80.8356857299805, Country = "US", Name = "Charlotte" }, + new WorldCity { Cap = false, Pop = 3.800, Lat = 35.1578674316406, Lon = 129.0546875, Country = "Korea Rep", Name = "Pusan" }, + new WorldCity { Cap = false, Pop = 4.800, Lat = 35.1549224853516, Lon = 136.920593261719, Country = "Japan", Name = "Nagoya" }, + new WorldCity { Cap = false, Pop = 0.853, Lat = 35.1147270202637, Lon = -90.0003280639648, Country = "US", Name = "Memphis" }, + new WorldCity { Cap = false, Pop = 1.479, Lat = 35.0091285705566, Lon = 135.754821777344, Country = "Japan", Name = "Kyoto" }, + new WorldCity { Cap = false, Pop = 1.170, Lat = 34.757682800293, Lon = 113.641777038574, Country = "China", Name = "Zhengzhou" }, + new WorldCity { Cap = false, Pop = 0.431, Lat = 34.7338752746582, Lon = 36.7181739807129, Country = "Syria", Name = "Homs" }, + new WorldCity { Cap = false, Pop = 0.740, Lat = 34.6713485717773, Lon = 112.361236572266, Country = "China", Name = "Luoyang" }, + new WorldCity { Cap = false, Pop = 15.040, Lat = 34.6355285644531, Lon = 135.519119262695, Country = "Japan", Name = "Osaka" }, + new WorldCity { Cap = true, Pop = 1.179, Lat = 34.5309066772461, Lon = 69.1367568969727, Country = "Afghanistan", Name = "Kabul" }, + new WorldCity { Cap = false, Pop = 1.575, Lat = 34.377555847168, Lon = 132.444778442383, Country = "Japan", Name = "Hiroshima" }, + new WorldCity { Cap = false, Pop = 2.050, Lat = 34.265697479248, Lon = 108.883361816406, Country = "China", Name = "Xian" }, + new WorldCity { Cap = false, Pop = 0.535, Lat = 34.0435676574707, Lon = -4.99554777145386, Country = "Morocco", Name = "Fes" }, + new WorldCity { Cap = false, Pop = 1.963, Lat = 33.7957000732422, Lon = -84.3492279052734, Country = "US", Name = "Atlanta" }, + new WorldCity { Cap = true, Pop = 0.204, Lat = 33.7181510925293, Lon = 73.060546875, Country = "Pakistan", Name = "Islamabad" }, + new WorldCity { Cap = false, Pop = 0.836, Lat = 33.6058044433594, Lon = 73.0437469482422, Country = "Pakistan", Name = "Rawalpindi" }, + new WorldCity { Cap = true, Pop = 1.850, Lat = 33.5193023681641, Lon = 36.3134536743164, Country = "Syria", Name = "Damascus" }, + new WorldCity { Cap = false, Pop = 1.482, Lat = 33.5090217590332, Lon = -112.110260009766, Country = "US", Name = "Phoenix" }, + new WorldCity { Cap = true, Pop = 3.841, Lat = 33.3340377807617, Lon = 44.397834777832, Country = "Iraq", Name = "Baghdad" }, + new WorldCity { Cap = false, Pop = 2.727, Lat = 32.763729095459, Lon = -96.663688659668, Country = "US", Name = "Dallas" }, + new WorldCity { Cap = false, Pop = 0.987, Lat = 32.6513900756836, Lon = 51.6791877746582, Country = "Iran", Name = "Esfahan" }, + new WorldCity { Cap = false, Pop = 2.290, Lat = 32.0483665466309, Lon = 118.768905639648, Country = "China", Name = "Nanjing" }, + new WorldCity { Cap = true, Pop = 1.250, Lat = 31.9493827819824, Lon = 35.9329071044922, Country = "Jordan", Name = "Amman" }, + new WorldCity { Cap = false, Pop = 0.595, Lat = 31.6308898925781, Lon = 74.8715515136719, Country = "India", Name = "Amritsar" }, + new WorldCity { Cap = false, Pop = 3.025, Lat = 31.5450534820557, Lon = 74.3406753540039, Country = "Pakistan", Name = "Lahore" }, + new WorldCity { Cap = false, Pop = 1.104, Lat = 31.4089508056641, Lon = 73.0834579467773, Country = "Pakistan", Name = "Faisalabad" }, + new WorldCity { Cap = false, Pop = 9.300, Lat = 31.2478694915771, Lon = 121.47265625, Country = "China", Name = "Shanghai" }, + new WorldCity { Cap = false, Pop = 1.810, Lat = 30.6700687408447, Lon = 104.071273803711, Country = "China", Name = "Chengdu" }, + new WorldCity { Cap = false, Pop = 3.490, Lat = 30.5724983215332, Lon = 114.279220581055, Country = "China", Name = "Wuhan" }, + new WorldCity { Cap = false, Pop = 0.617, Lat = 30.503490447998, Lon = 47.7608642578125, Country = "Iraq", Name = "Al Basra" }, + new WorldCity { Cap = false, Pop = 1.270, Lat = 30.2526245117188, Lon = 120.165077209473, Country = "China", Name = "Hangzhou" }, + new WorldCity { Cap = true, Pop = 9.300, Lat = 30.0779113769531, Lon = 31.2507972717285, Country = "Egypt", Name = "Cairo" }, + new WorldCity { Cap = false, Pop = 1.185, Lat = 29.9563789367676, Lon = -90.0986862182617, Country = "US", Name = "New Orleans" }, + new WorldCity { Cap = false, Pop = 2.755, Lat = 29.7718296051025, Lon = -95.407112121582, Country = "US", Name = "Houston" }, + new WorldCity { Cap = false, Pop = 0.084, Lat = 29.6507034301758, Lon = 91.1320877075195, Country = "China", Name = "Lhasa" }, + new WorldCity { Cap = false, Pop = 2.450, Lat = 29.5441036224365, Lon = 106.522689819336, Country = "China", Name = "Chongqing" }, + new WorldCity { Cap = false, Pop = 0.968, Lat = 29.4299221038818, Lon = -98.5245742797852, Country = "US", Name = "San Antonio" }, + new WorldCity { Cap = false, Pop = 1.030, Lat = 28.6712398529053, Lon = 115.88941192627, Country = "China", Name = "Nanchang" }, + new WorldCity { Cap = true, Pop = 0.273, Lat = 28.5687255859375, Lon = 77.2167510986328, Country = "India", Name = "New Delhi" }, + new WorldCity { Cap = false, Pop = 7.200, Lat = 28.5264587402344, Lon = 77.2243728637695, Country = "India", Name = "Delhi" }, + new WorldCity { Cap = false, Pop = 1.190, Lat = 28.1976413726807, Lon = 112.968482971191, Country = "China", Name = "Changsha" }, + new WorldCity { Cap = true, Pop = 0.320, Lat = 27.7120170593262, Lon = 85.3129501342773, Country = "Nepal", Name = "Kathmandu" }, + new WorldCity { Cap = true, Pop = 0.012, Lat = 27.44260597229, Lon = 89.6673278808594, Country = "Bhutan", Name = "Thimbu" }, + new WorldCity { Cap = false, Pop = 1.025, Lat = 26.9051132202148, Lon = 75.8012771606445, Country = "India", Name = "Jaipur" }, + new WorldCity { Cap = false, Pop = 1.060, Lat = 26.8494281768799, Lon = 80.9197235107422, Country = "India", Name = "Lucknow" }, + new WorldCity { Cap = false, Pop = 1.010, Lat = 26.5719413757324, Lon = 106.700302124023, Country = "China", Name = "Guiyang" }, + new WorldCity { Cap = false, Pop = 1.875, Lat = 26.4578304290771, Lon = 80.3178634643555, Country = "India", Name = "Kanpur" }, + new WorldCity { Cap = false, Pop = 0.890, Lat = 26.0710163116455, Lon = 119.303520202637, Country = "China", Name = "Fuzhou" }, + new WorldCity { Cap = false, Pop = 2.827, Lat = 25.8321304321289, Lon = -80.2702178955078, Country = "US", Name = "Miami" }, + new WorldCity { Cap = false, Pop = 2.015, Lat = 25.6773529052734, Lon = -100.317085266113, Country = "Mexico", Name = "Monterrey" }, + new WorldCity { Cap = false, Pop = 1.025, Lat = 25.6138973236084, Lon = 85.1353454589844, Country = "India", Name = "Patna" }, + new WorldCity { Cap = false, Pop = 0.800, Lat = 25.3801860809326, Lon = 68.3664703369141, Country = "Pakistan", Name = "Hyderabad" }, + new WorldCity { Cap = false, Pop = 0.925, Lat = 25.2820110321045, Lon = 82.9563369750977, Country = "India", Name = "Benares" }, + new WorldCity { Cap = true, Pop = 0.310, Lat = 25.2036418914795, Lon = 51.4972343444824, Country = "Qatar", Name = "Doha" }, + new WorldCity { Cap = false, Pop = 1.280, Lat = 25.0510330200195, Lon = 102.702125549316, Country = "China", Name = "Kunming" }, + new WorldCity { Cap = true, Pop = 6.130, Lat = 25.0350914001465, Lon = 121.506729125977, Country = "Taiwan", Name = "Taipei" }, + new WorldCity { Cap = false, Pop = 0.715, Lat = 24.1436424255371, Lon = 120.670280456543, Country = "Taiwan", Name = "T`ai-chung" }, + new WorldCity { Cap = true, Pop = 3.430, Lat = 23.7099189758301, Lon = 90.4071426391602, Country = "Bangladesh", Name = "Dhaka" }, + new WorldCity { Cap = false, Pop = 3.050, Lat = 23.0961952209473, Lon = 113.293609619141, Country = "China", Name = "Guangzhou" }, + new WorldCity { Cap = false, Pop = 2.400, Lat = 23.0397911071777, Lon = 72.5668640136719, Country = "India", Name = "Ahmadabad" }, + new WorldCity { Cap = false, Pop = 0.648, Lat = 22.8426475524902, Lon = 89.5582427978516, Country = "Bangladesh", Name = "Khulna" }, + new WorldCity { Cap = false, Pop = 11.100, Lat = 22.5435371398926, Lon = 88.3342208862305, Country = "India", Name = "Calcutta" }, + new WorldCity { Cap = false, Pop = 0.435, Lat = 22.2432346343994, Lon = -97.8426284790039, Country = "Mexico", Name = "Tampico" }, + new WorldCity { Cap = false, Pop = 0.533, Lat = 21.975944519043, Lon = 96.0841522216797, Country = "Burma", Name = "Mandalay" }, + new WorldCity { Cap = false, Pop = 0.550, Lat = 21.4273815155029, Lon = 39.8148384094238, Country = "Saudi Arabia", Name = "Mecca" }, + new WorldCity { Cap = false, Pop = 1.302, Lat = 21.1557579040527, Lon = 79.089111328125, Country = "India", Name = "Nagpur" }, + new WorldCity { Cap = true, Pop = 1.500, Lat = 21.0319480895996, Lon = 105.81990814209, Country = "Vietnam", Name = "Hanoi" }, + new WorldCity { Cap = false, Pop = 0.385, Lat = 20.8613586425781, Lon = 106.679794311523, Country = "Vietnam", Name = "Haiphong" }, + new WorldCity { Cap = false, Pop = 0.400, Lat = 20.8218688964844, Lon = -89.552864074707, Country = "Mexico", Name = "Merida" }, + new WorldCity { Cap = false, Pop = 2.325, Lat = 20.6735916137695, Lon = -103.343795776367, Country = "Mexico", Name = "Guadalajara" }, + new WorldCity { Cap = false, Pop = 0.207, Lat = 19.6157131195068, Lon = 37.2196884155273, Country = "Sudan", Name = "Bur Sudan" }, + new WorldCity { Cap = true, Pop = 14.100, Lat = 19.4270458221436, Lon = -99.127571105957, Country = "Mexico", Name = "Mexico City" }, + new WorldCity { Cap = false, Pop = 1.055, Lat = 19.0486316680908, Lon = -98.1929473876953, Country = "Mexico", Name = "Puebla de Zaragoza" }, + new WorldCity { Cap = false, Pop = 1.775, Lat = 18.5357475280762, Lon = 73.8522720336914, Country = "India", Name = "Pune" }, + new WorldCity { Cap = true, Pop = 0.880, Lat = 18.5266170501709, Lon = -72.3431091308594, Country = "Haiti", Name = "Port-au-Prince" }, + new WorldCity { Cap = true, Pop = 1.775, Lat = 18.4006156921387, Lon = -66.0817565917969, Country = "Puerto Rico", Name = "San Juan" }, + new WorldCity { Cap = true, Pop = 0.770, Lat = 18.0157127380371, Lon = -76.7973022460938, Country = "Jamaica", Name = "Kingston" }, + new WorldCity { Cap = false, Pop = 2.750, Lat = 17.3945465087891, Lon = 78.4850311279297, Country = "India", Name = "Hyderabad" }, + new WorldCity { Cap = true, Pop = 2.800, Lat = 16.8722229003906, Lon = 96.1248931884766, Country = "Burma", Name = "Rangoon" }, + new WorldCity { Cap = true, Pop = 0.427, Lat = 15.3614444732666, Lon = 44.2095031738281, Country = "Yemen", Name = "Sanaa" }, + new WorldCity { Cap = true, Pop = 1.400, Lat = 14.6180076599121, Lon = -90.52490234375, Country = "Guatemala", Name = "Guatemala" }, + new WorldCity { Cap = true, Pop = 0.552, Lat = 14.0990505218506, Lon = -87.2030944824219, Country = "Honduras", Name = "Tegucigalpa" }, + new WorldCity { Cap = true, Pop = 6.450, Lat = 13.7455711364746, Lon = 100.552665710449, Country = "Thailand", Name = "Bangkok" }, + new WorldCity { Cap = true, Pop = 0.920, Lat = 13.7014122009277, Lon = -89.2002334594727, Country = "El Salvador", Name = "San Salvador" }, + new WorldCity { Cap = true, Pop = 0.398, Lat = 13.6045436859131, Lon = 2.08344984054565, Country = "Niger", Name = "Niamey" }, + new WorldCity { Cap = false, Pop = 4.475, Lat = 13.0615034103394, Lon = 80.2478256225586, Country = "India", Name = "Madras" }, + new WorldCity { Cap = false, Pop = 2.950, Lat = 12.9747505187988, Lon = 77.5877304077148, Country = "India", Name = "Bangalore" }, + new WorldCity { Cap = true, Pop = 0.646, Lat = 12.6529502868652, Lon = -7.98648166656494, Country = "Mali", Name = "Bamako" }, + new WorldCity { Cap = true, Pop = 0.682, Lat = 12.1514730453491, Lon = -86.2730331420898, Country = "Nicaragua", Name = "Managua" }, + new WorldCity { Cap = true, Pop = 0.700, Lat = 11.564736366272, Lon = 104.913192749023, Country = "Cambodia", Name = "Phnom Penh" }, + new WorldCity { Cap = false, Pop = 3.100, Lat = 10.7591819763184, Lon = 106.662452697754, Country = "Vietnam", Name = "Ho Chi Minh City" }, + new WorldCity { Cap = false, Pop = 0.891, Lat = 10.6450433731079, Lon = -71.6371459960938, Country = "Venezuela", Name = "Maracaibo" }, + new WorldCity { Cap = true, Pop = 3.600, Lat = 10.4960489273071, Lon = -66.8982849121094, Country = "Venezuela", Name = "Caracas" }, + new WorldCity { Cap = false, Pop = 0.498, Lat = 10.0656652450562, Lon = -69.3391952514648, Country = "Venezuela", Name = "Barquisimeto" }, + new WorldCity { Cap = true, Pop = 0.670, Lat = 9.93047618865967, Lon = -84.07861328125, Country = "Costa Rica", Name = "San Jose" }, + new WorldCity { Cap = false, Pop = 0.960, Lat = 9.91398620605469, Lon = 78.1217269897461, Country = "India", Name = "Madurai" }, + new WorldCity { Cap = false, Pop = 1.144, Lat = 7.37884044647217, Lon = 3.8952784538269, Country = "Nigeria", Name = "Ibadan" }, + new WorldCity { Cap = false, Pop = 0.409, Lat = 7.08008003234863, Lon = 125.613677978516, Country = "Philippines", Name = "Davao" }, + new WorldCity { Cap = false, Pop = 0.253, Lat = 6.45053863525391, Lon = 7.4920802116394, Country = "Nigeria", Name = "Enugu" }, + new WorldCity { Cap = false, Pop = 2.095, Lat = 6.24114656448364, Lon = -75.5920333862305, Country = "Colombia", Name = "Medellin" }, + new WorldCity { Cap = true, Pop = 1.250, Lat = 5.55856275558472, Lon = -0.200923636555672, Country = "Ghana", Name = "Accra" }, + new WorldCity { Cap = true, Pop = 1.950, Lat = 5.32485723495483, Lon = -4.02188682556152, Country = "Ivory Coast", Name = "Abidjan" }, + new WorldCity { Cap = true, Pop = 4.260, Lat = 4.63021993637085, Lon = -74.0805130004883, Country = "Colombia", Name = "Bogota" }, + new WorldCity { Cap = true, Pop = 0.474, Lat = 4.3658561706543, Lon = 18.5623416900635, Country = "Cent Af Rep", Name = "Bangui" }, + new WorldCity { Cap = true, Pop = 0.654, Lat = 3.86512303352356, Lon = 11.5136413574219, Country = "Cameroon", Name = "Yaounde" }, + new WorldCity { Cap = false, Pop = 1.374, Lat = 3.58524203300476, Lon = 98.6755981445313, Country = "Indonesia", Name = "Medan" }, + new WorldCity { Cap = false, Pop = 1.400, Lat = 3.45685529708862, Lon = -76.5224380493164, Country = "Colombia", Name = "Cali" }, + new WorldCity { Cap = true, Pop = 1.475, Lat = 3.1502103805542, Lon = 101.707672119141, Country = "Malaysia", Name = "Kuala Lumpur" }, + new WorldCity { Cap = true, Pop = 0.600, Lat = 2.04117751121521, Lon = 45.3441429138184, Country = "Somalia", Name = "Muqdisho" }, + new WorldCity { Cap = false, Pop = 0.283, Lat = 0.519284904003143, Lon = 25.1961479187012, Country = "Zaire", Name = "Kisangani" }, + new WorldCity { Cap = true, Pop = 1.050, Lat = -0.229498133063316, Lon = -78.524284362793, Country = "Ecuador", Name = "Quito" }, + new WorldCity { Cap = false, Pop = 0.179, Lat = -3.75289535522461, Lon = -73.1914901733398, Country = "Peru", Name = "Iquitos" }, + new WorldCity { Cap = false, Pop = 1.825, Lat = -3.78332185745239, Lon = -38.5889015197754, Country = "Brazil", Name = "Fortaleza" }, + new WorldCity { Cap = true, Pop = 0.586, Lat = -4.28518676757813, Lon = 15.2851486206055, Country = "Congo", Name = "Brazzaville" }, + new WorldCity { Cap = false, Pop = 0.291, Lat = -5.89221096038818, Lon = 22.4027786254883, Country = "Zaire", Name = "Kananga" }, + new WorldCity { Cap = true, Pop = 1.300, Lat = -6.81735897064209, Lon = 39.2533493041992, Country = "Tanzania", Name = "Dar es Salaam" }, + new WorldCity { Cap = false, Pop = 1.800, Lat = -6.91243028640747, Lon = 107.606903076172, Country = "Indonesia", Name = "Bandung" }, + new WorldCity { Cap = false, Pop = 2.625, Lat = -8.08516788482666, Lon = -34.9146385192871, Country = "Brazil", Name = "Recife" }, + new WorldCity { Cap = false, Pop = 0.155, Lat = -12.7177352905273, Lon = 13.464879989624, Country = "Angola", Name = "Benguela" }, + new WorldCity { Cap = true, Pop = 1.568, Lat = -15.7921094894409, Lon = -47.8977470397949, Country = "Brazil", Name = "Brasilia" }, + new WorldCity { Cap = false, Pop = 0.447, Lat = -16.3975391387939, Lon = -71.5227432250977, Country = "Peru", Name = "Arequipa" }, + new WorldCity { Cap = true, Pop = 0.993, Lat = -16.4990062713623, Lon = -68.1462478637695, Country = "Bolivia", Name = "La Paz" }, + new WorldCity { Cap = false, Pop = 0.990, Lat = -16.7266998291016, Lon = -49.254810333252, Country = "Brazil", Name = "Goiania" }, + new WorldCity { Cap = false, Pop = 0.442, Lat = -17.7887916564941, Lon = -63.1974182128906, Country = "Bolivia", Name = "Santa Cruz de La Sierra" }, + new WorldCity { Cap = false, Pop = 0.087, Lat = -19.0421352386475, Lon = -65.2558822631836, Country = "Bolivia", Name = "Sucre" }, + new WorldCity { Cap = false, Pop = 2.950, Lat = -19.8517208099365, Lon = -43.9090690612793, Country = "Brazil", Name = "Belo Horizonte" }, + new WorldCity { Cap = false, Pop = 10.150, Lat = -22.7215728759766, Lon = -43.4551773071289, Country = "Brazil", Name = "Rio de Janeiro" }, + new WorldCity { Cap = false, Pop = 15.175, Lat = -23.5813045501709, Lon = -46.6228981018066, Country = "Brazil", Name = "Sao Paulo" }, + new WorldCity { Cap = false, Pop = 1.065, Lat = -23.9547004699707, Lon = -46.3094940185547, Country = "Brazil", Name = "Santos" }, + new WorldCity { Cap = true, Pop = 0.095, Lat = -24.6614418029785, Lon = 25.7948017120361, Country = "Botswana", Name = "Gaborone" }, + new WorldCity { Cap = false, Pop = 1.700, Lat = -25.4304790496826, Lon = -49.2845077514648, Country = "Brazil", Name = "Curitiba" }, + new WorldCity { Cap = true, Pop = 0.960, Lat = -25.7313461303711, Lon = 28.2183723449707, Country = "South Africa", Name = "Pretoria" }, + new WorldCity { Cap = true, Pop = 1.070, Lat = -25.9621543884277, Lon = 32.5736923217773, Country = "Mozambique", Name = "Maputo" }, + new WorldCity { Cap = false, Pop = 3.650, Lat = -26.1789569854736, Lon = 28.0043087005615, Country = "South Africa", Name = "Johannesburg" }, + new WorldCity { Cap = false, Pop = 1.149, Lat = -27.4539127349854, Lon = 153.026489257813, Country = "Australia", Name = "Brisbane" }, + new WorldCity { Cap = false, Pop = 1.550, Lat = -29.8363723754883, Lon = 30.9421882629395, Country = "South Africa", Name = "Durban" }, + new WorldCity { Cap = false, Pop = 2.600, Lat = -30.0395336151123, Lon = -51.2079887390137, Country = "Brazil", Name = "Porto Alegre" }, + new WorldCity { Cap = false, Pop = 1.070, Lat = -31.3162784576416, Lon = -64.1798553466797, Country = "Argentina", Name = "Cordoba" }, + new WorldCity { Cap = false, Pop = 0.292, Lat = -31.6168975830078, Lon = -60.6978416442871, Country = "Argentina", Name = "Santa Fe" }, + new WorldCity { Cap = false, Pop = 0.650, Lat = -32.8974380493164, Lon = -68.8297348022461, Country = "Argentina", Name = "Mendoza" }, + new WorldCity { Cap = false, Pop = 1.045, Lat = -32.9377365112305, Lon = -60.6639404296875, Country = "Argentina", Name = "Rosario" }, + new WorldCity { Cap = true, Pop = 4.100, Lat = -33.475025177002, Lon = -70.6475143432617, Country = "Chile", Name = "Santiago" }, + new WorldCity { Cap = false, Pop = 0.690, Lat = -33.8815765380859, Lon = 25.4842987060547, Country = "South Africa", Name = "Port Elizabeth" }, + new WorldCity { Cap = false, Pop = 3.365, Lat = -33.8897743225098, Lon = 151.028198242188, Country = "Australia", Name = "Sydney" }, + new WorldCity { Cap = true, Pop = 10.750, Lat = -34.6654014587402, Lon = -58.4095916748047, Country = "Argentina", Name = "Buenos Aires" }, + new WorldCity { Cap = true, Pop = 0.271, Lat = -35.349925994873, Lon = 149.041625976563, Country = "Australia", Name = "Canberra" }, + new WorldCity { Cap = false, Pop = 0.850, Lat = -36.893253326416, Lon = 174.801055908203, Country = "New Zealand", Name = "Auckland" }, + new WorldCity { Cap = false, Pop = 2.833, Lat = -37.8529586791992, Lon = 145.075103759766, Country = "Australia", Name = "Melbourne" }, + new WorldCity { Cap = false, Pop = 0.224, Lat = -38.7252731323242, Lon = -62.2740669250488, Country = "Argentina", Name = "Bahia Blanca" }, + new WorldCity { Cap = false, Pop = 0.320, Lat = -43.5489158630371, Lon = 172.683654785156, Country = "New Zealand", Name = "Christchurch" }, + new WorldCity { Cap = true, Pop = 0.900, Lat = 60.1964225769043, Lon = 24.9766998291016, Country = "Finland", Name = "Helsinki" }, + new WorldCity { Cap = false, Pop = 0.310, Lat = 34.745231628418, Lon = 10.7592582702637, Country = "Tunisia", Name = "Sfax" }, + new WorldCity { Cap = false, Pop = 1.411, Lat = 34.6638412475586, Lon = 135.181838989258, Country = "Japan", Name = "Kobe" }, + new WorldCity { Cap = false, Pop = 0.490, Lat = 31.7737464904785, Lon = 35.2252197265625, Country = "Israel", Name = "Jerusalem" }, + new WorldCity { Cap = false, Pop = 0.616, Lat = 10.1782207489014, Lon = -68.0031127929688, Country = "Venezuela", Name = "Valencia" }, + new WorldCity { Cap = false, Pop = 1.255, Lat = -2.20381617546082, Lon = -79.9093933105469, Country = "Ecuador", Name = "Guayaquil" }, + new WorldCity { Cap = false, Pop = 4.054, Lat = 37.7275123596191, Lon = -122.308815002441, Country = "US", Name = "San Francisco" }, + new WorldCity { Cap = false, Pop = 0.630, Lat = 55.8752517700195, Lon = -3.29878330230713, Country = "UK", Name = "Edinburgh" }, + new WorldCity { Cap = false, Pop = 0.239, Lat = 45.7002830505371, Lon = 13.9328374862671, Country = "Italy", Name = "Trieste" }, + new WorldCity { Cap = false, Pop = 1.750, Lat = 33.3099060058594, Lon = 130.317184448242, Country = "Japan", Name = "Fukuoka" }, + new WorldCity { Cap = false, Pop = 1.525, Lat = 33.6818656921387, Lon = 130.797454833984, Country = "Japan", Name = "Kita Kyushu" }, + new WorldCity { Cap = true, Pop = 0.303, Lat = 12.1041393280029, Lon = 15.2408237457275, Country = "Chad", Name = "N'Djamena" }, + new WorldCity { Cap = true, Pop = 0.991, Lat = 32.7516174316406, Lon = 13.2118225097656, Country = "Libya", Name = "Tripoli" }, + new WorldCity { Cap = false, Pop = 1.550, Lat = 38.4389190673828, Lon = 27.2057685852051, Country = "Turkey", Name = "Izmir" }, + new WorldCity { Cap = true, Pop = 3.000, Lat = -4.38867473602295, Lon = 15.4692935943604, Country = "Zaire", Name = "Kinshasa" }, + new WorldCity { Cap = false, Pop = 0.978, Lat = -34.9185371398926, Lon = 138.870681762695, Country = "Australia", Name = "Adelaide" }, + new WorldCity { Cap = true, Pop = 8.600, Lat = -6.29390430450439, Lon = 106.762466430664, Country = "Indonesia", Name = "Jakarta" }, + new WorldCity { Cap = false, Pop = 1.025, Lat = -7.02784442901611, Lon = 110.444259643555, Country = "Indonesia", Name = "Semarang" }, + new WorldCity { Cap = false, Pop = 0.264, Lat = -12.0435400009155, Lon = -76.8356323242188, Country = "Peru", Name = "Callao" }, + new WorldCity { Cap = false, Pop = 1.200, Lat = -1.60532903671265, Lon = -48.316276550293, Country = "Brazil", Name = "Belem" }, + new WorldCity { Cap = false, Pop = 1.270, Lat = 36.1483535766602, Lon = 120.434127807617, Country = "China", Name = "Qingdao" }, + new WorldCity { Cap = true, Pop = 0.377, Lat = 18.0017318725586, Lon = 102.680236816406, Country = "Laos", Name = "Vientiane" }, + new WorldCity { Cap = false, Pop = 0.220, Lat = 47.8011703491211, Lon = 13.0908985137939, Country = "Austria", Name = "Salzburg" }, + new WorldCity { Cap = true, Pop = 0.698, Lat = 45.8070755004883, Lon = 15.9643859863281, Country = "Croatia", Name = "Zagreb" }, + new WorldCity { Cap = true, Pop = 0.273, Lat = -3.26908373832703, Lon = 29.5335865020752, Country = "Burundi", Name = "Bujumbura" }, + new WorldCity { Cap = true, Pop = 0.185, Lat = 35.1650695800781, Lon = 33.3851623535156, Country = "Cyprus", Name = "Nicosia" }, + new WorldCity { Cap = true, Pop = 0.182, Lat = -2.11793518066406, Lon = 29.9914855957031, Country = "Rwanda", Name = "Kigali" }, + new WorldCity { Cap = true, Pop = 0.233, Lat = 46.068302154541, Lon = 14.639612197876, Country = "Slovenia", Name = "Ljubljana" }, + new WorldCity { Cap = true, Pop = 0.109, Lat = -29.2567100524902, Lon = 27.8903884887695, Country = "Lesotho", Name = "Maseru" }, + new WorldCity { Cap = true, Pop = 0.133, Lat = 49.740406036377, Lon = 6.27325582504272, Country = "Luxembourg", Name = "Luxembourg" }, + new WorldCity { Cap = false, Pop = 0.770, Lat = 51.903621673584, Lon = 4.30062437057495, Country = "Netherlands", Name = "The Hague" }, + new WorldCity { Cap = true, Pop = 0.435, Lat = 48.2745094299316, Lon = 17.2698059082031, Country = "Slovakia", Name = "Bratislava" }, + new WorldCity { Cap = false, Pop = 0.201, Lat = 52.1100006103516, Lon = -106.629997253418, Country = "Canada", Name = "Saskatoon" }, + new WorldCity { Cap = false, Pop = 0.187, Lat = 50.4099998474121, Lon = -104.650001525879, Country = "Canada", Name = "Regina" }, + new WorldCity { Cap = false, Pop = 1.038, Lat = 31.7800006866455, Lon = -106.449996948242, Country = "US", Name = "El Paso" }, + new WorldCity { Cap = false, Pop = 0.636, Lat = 30.3299999237061, Lon = -81.6600036621094, Country = "US", Name = "Jacksonville" }, + new WorldCity { Cap = false, Pop = 0.002, Lat = 51.3300018310547, Lon = -80.7300033569336, Country = "Canada", Name = "Moosonee" }, + new WorldCity { Cap = false, Pop = 0.002, Lat = 54.8600006103516, Lon = -67.0100021362305, Country = "Canada", Name = "Schefferville" }, + new WorldCity { Cap = false, Pop = 0.008, Lat = 53.310001373291, Lon = -60.5499992370605, Country = "Canada", Name = "Goose Bay" }, + new WorldCity { Cap = false, Pop = 0.202, Lat = -8.75, Lon = -63.9000015258789, Country = "Brazil", Name = "Porto Velho" }, + new WorldCity { Cap = false, Pop = 0.185, Lat = -13.6000003814697, Lon = -71.8600006103516, Country = "Peru", Name = "Cuzco" }, + new WorldCity { Cap = false, Pop = 0.280, Lat = -15.5500001907349, Lon = -56.0499992370605, Country = "Brazil", Name = "Cuiaba" }, + new WorldCity { Cap = false, Pop = 0.220, Lat = -27.3999996185303, Lon = -58.9000015258789, Country = "Argentina", Name = "Resistencia" }, + new WorldCity { Cap = false, Pop = 0.032, Lat = 16.7600002288818, Lon = -3.00999999046326, Country = "Mali", Name = "Tombouctoo" }, + new WorldCity { Cap = false, Pop = 0.255, Lat = 11.8800001144409, Lon = 13.2600002288818, Country = "Niger", Name = "Maiduguri" }, + new WorldCity { Cap = false, Pop = 0.145, Lat = -5.80999994277954, Lon = 13.4499998092651, Country = "Zaire", Name = "Matadi" }, + new WorldCity { Cap = false, Pop = 0.203, Lat = -12.7299995422363, Lon = 15.7799997329712, Country = "Angola", Name = "Huambo" }, + new WorldCity { Cap = false, Pop = 0.145, Lat = -28.6599998474121, Lon = 24.8299999237061, Country = "South Africa", Name = "Kimberley" }, + new WorldCity { Cap = false, Pop = 0.320, Lat = -33.0299987792969, Lon = 27.8999996185303, Country = "South Africa", Name = "East london" }, + new WorldCity { Cap = false, Pop = 0.247, Lat = -7.32999992370605, Lon = 19, Country = "Zaire", Name = "Kahemba" }, + new WorldCity { Cap = false, Pop = 0.054, Lat = -6.17999982833862, Lon = 35.75, Country = "Tanzania", Name = "Dodoma" }, + new WorldCity { Cap = false, Pop = 0.019, Lat = 68.3499984741211, Lon = 17.2999992370605, Country = "Norway", Name = "Narvik" }, + new WorldCity { Cap = false, Pop = 0.160, Lat = 34.4599990844727, Lon = 62.2099990844727, Country = "Afghanistan", Name = "Herat" }, + new WorldCity { Cap = false, Pop = 0.006, Lat = 55.8800010681152, Lon = 37.75, Country = "Russia", Name = "Druzba" }, + new WorldCity { Cap = false, Pop = 0.146, Lat = 39.4799995422363, Lon = 76, Country = "China", Name = "Kashi" }, + new WorldCity { Cap = false, Pop = 9.415, Lat = 24.9799995422363, Lon = 121.529998779297, Country = "Taiwan", Name = "Chingmei" }, + new WorldCity { Cap = false, Pop = 0.166, Lat = 16.4599990844727, Lon = 107.699996948242, Country = "Vietnam", Name = "Hue" }, + new WorldCity { Cap = false, Pop = 0.073, Lat = 1.5, Lon = 110.430000305176, Country = "Malaysia", Name = "Kuching" }, + new WorldCity { Cap = false, Pop = 0.208, Lat = -1.21000003814697, Lon = 116.860000610352, Country = "Indonesia", Name = "Balikpapan" }, + new WorldCity { Cap = false, Pop = 0.168, Lat = 50.3300018310547, Lon = 110.75, Country = "Russia", Name = "Chatanga" }, + new WorldCity { Cap = false, Pop = 0.006, Lat = 52.0499992370605, Lon = 113.580001831055, Country = "Russia", Name = "Chita" }, + new WorldCity { Cap = false, Pop = 0.001, Lat = 67.5800018310547, Lon = 133.410003662109, Country = "Russia", Name = "Verkhoyansk" }, + new WorldCity { Cap = false, Pop = 0.187, Lat = 62.0099983215332, Lon = 129.830001831055, Country = "Russia", Name = "Yakutsk" }, + new WorldCity { Cap = false, Pop = 0.006, Lat = 59.3300018310547, Lon = 143.25, Country = "Russia", Name = "Okhotsk" }, + new WorldCity { Cap = false, Pop = 0.000, Lat = 50.0800018310547, Lon = 45.5299987792969, Country = "Russia", Name = "Nikolayevsk" }, + new WorldCity { Cap = false, Pop = 0.000, Lat = 46.9599990844727, Lon = 142.75, Country = "Russia", Name = "Yuzhno-Sakhalinsk" }, + new WorldCity { Cap = false, Pop = 0.000, Lat = -23.6299991607666, Lon = 133.929992675781, Country = "Australia", Name = "Alice Springs" }, + new WorldCity { Cap = false, Pop = 0.039, Lat = -16.8500003814697, Lon = 145.710006713867, Country = "Australia", Name = "Cairns" }, + new WorldCity { Cap = false, Pop = 0.106, Lat = -19.2999992370605, Lon = 146.830001831055, Country = "Australia", Name = "Townsville" }, + new WorldCity { Cap = false, Pop = 0.059, Lat = -23.4300003051758, Lon = 150.479995727539, Country = "Australia", Name = "Rockhampton" }, + new WorldCity { Cap = false, Pop = 0.405, Lat = -33, Lon = 151.910003662109, Country = "Australia", Name = "Newcastle" }, + new WorldCity { Cap = false, Pop = 0.175, Lat = -43, Lon = 147.5, Country = "Australia", Name = "Hobart" }, + new WorldCity { Cap = false, Pop = 0.109, Lat = -45.8600006103516, Lon = 170.5, Country = "New Zealand", Name = "Dunedin" }, + new WorldCity { Cap = false, Pop = 0.256, Lat = 48.6545677185059, Lon = -123.569107055664, Country = "Canada", Name = "Victoria" }, + new WorldCity { Cap = true, Pop = 0.164, Lat = 6.60109615325928, Lon = 2.63250279426575, Country = "Benin", Name = "Porto Novo" }, + new WorldCity { Cap = false, Pop = 1.030, Lat = 4.13665008544922, Lon = 9.706374168396, Country = "Cameroon", Name = "Douala" }, + new WorldCity { Cap = false, Pop = 0.708, Lat = -5.19043016433716, Lon = 119.722793579102, Country = "Indonesia", Name = "Vjuag Padang" }, + new WorldCity { Cap = false, Pop = 0.112, Lat = -3.3865532875061, Lon = 129.312927246094, Country = "Indonesia", Name = "Ambon" }, + new WorldCity { Cap = false, Pop = 1.604, Lat = 37.5894508361816, Lon = 126.767440795898, Country = "Korea Rep", Name = "Inch`on" }, + new WorldCity { Cap = false, Pop = 1.680, Lat = 39.0317153930664, Lon = 121.598197937012, Country = "China", Name = "Dalian" }, + new WorldCity { Cap = false, Pop = 1.227, Lat = 45.4421310424805, Lon = -122.641677856445, Country = "US", Name = "Portland" }, + new WorldCity { Cap = false, Pop = 0.810, Lat = -3.12230491638184, Lon = -60.0146179199219, Country = "Brazil", Name = "Manaus" }, + new WorldCity { Cap = false, Pop = 0.227, Lat = -2.46000003814697, Lon = -54.6100006103516, Country = "Brazil", Name = "Santarem" }, + new WorldCity { Cap = false, Pop = 0.053, Lat = -46.4099998474121, Lon = 168.449996948242, Country = "New Zealand", Name = "Invercargill" }, + new WorldCity { Cap = false, Pop = 0.049, Lat = -10.2600002288818, Lon = 40.1800003051758, Country = "Tanzania", Name = "Mtwara" }, + new WorldCity { Cap = false, Pop = 0.100, Lat = -18.2299995422363, Lon = 49.4099998474121, Country = "Madagascar", Name = "Toamasina" }, + new WorldCity { Cap = false, Pop = 0.235, Lat = -29.1499996185303, Lon = 26.2600002288818, Country = "South Africa", Name = "Bloemfontein" }, + new WorldCity { Cap = false, Pop = 0.414, Lat = -20.2000007629395, Lon = 28.7099990844727, Country = "Zimbabwe", Name = "Bulawayo" }, + new WorldCity { Cap = false, Pop = 0.061, Lat = -17.8299999237061, Lon = 25.8799991607666, Country = "Zambia", Name = "Livingstone" }, + new WorldCity { Cap = false, Pop = 0.290, Lat = 24.4300003051758, Lon = 39.7000007629395, Country = "Saudi Arabia", Name = "Al Madinah" }, + new WorldCity { Cap = false, Pop = 0.000, Lat = 21.7600002288818, Lon = 31.2800006866455, Country = "Sudan", Name = "Wadi Halfa" }, + new WorldCity { Cap = false, Pop = 0.191, Lat = 24.0799999237061, Lon = 32.9500007629395, Country = "Egypt", Name = "Aswan" }, + new WorldCity { Cap = false, Pop = 0.000, Lat = 25.9099998474121, Lon = 13.9099998474121, Country = "Libya", Name = "Murzuq" }, + new WorldCity { Cap = false, Pop = 0.000, Lat = 27.7000007629395, Lon = -8.15999984741211, Country = "Algeria", Name = "Tindouf" }, + new WorldCity { Cap = false, Pop = 0.050, Lat = 16.9599990844727, Lon = 7.98000001907349, Country = "Niger", Name = "Agadez" }, + new WorldCity { Cap = false, Pop = 0.140, Lat = 13.1800003051758, Lon = 30.1599998474121, Country = "Sudan", Name = "El Obeid" }, + new WorldCity { Cap = false, Pop = 0.125, Lat = 0.0500000007450581, Lon = 18.4599990844727, Country = "Zaire", Name = "Mbandaka" }, + new WorldCity { Cap = false, Pop = 0.015, Lat = 60.6500015258789, Lon = -135.009994506836, Country = "Canada", Name = "Whitehorse" }, + new WorldCity { Cap = false, Pop = 0.095, Lat = -53.1500015258789, Lon = -70.8000030517578, Country = "Chile", Name = "Punte Arenas" }, + new WorldCity { Cap = false, Pop = 0.084, Lat = -41.4799995422363, Lon = -73, Country = "Chile", Name = "Puerto Montt" }, + new WorldCity { Cap = false, Pop = 0.000, Lat = -51.7099990844727, Lon = -69.4100036621094, Country = "Argentina", Name = "Rio Gallegos" }, + new WorldCity { Cap = false, Pop = 0.097, Lat = -45.8300018310547, Lon = -67.5, Country = "Argentina", Name = "Comodoro Rivadavia" }, + new WorldCity { Cap = false, Pop = 0.327, Lat = 29.9599990844727, Lon = 32.560001373291, Country = "Egypt", Name = "Suez" }, + new WorldCity { Cap = false, Pop = 3.350, Lat = 31.0746040344238, Lon = 29.9778099060059, Country = "Egypt", Name = "Alexandria" }, + new WorldCity { Cap = false, Pop = 0.000, Lat = -15.0500001907349, Lon = 40.7000007629395, Country = "Mozambique", Name = "Mocambique" }, + new WorldCity { Cap = false, Pop = 9.950, Lat = 19.0453472137451, Lon = 73.1723480224609, Country = "India", Name = "Bombay" }, + new WorldCity { Cap = true, Pop = 2.548, Lat = 36.596492767334, Lon = 2.99369311332703, Country = "Algeria", Name = "Algiers" }, + new WorldCity { Cap = false, Pop = 1.940, Lat = 49.989673614502, Lon = 36.2083129882813, Country = "Ukraine", Name = "Kharkov" }, + new WorldCity { Cap = false, Pop = 1.600, Lat = 48.4228897094727, Lon = 35.1378936767578, Country = "Ukraine", Name = "Dnepropetrovsk" }, + new WorldCity { Cap = true, Pop = 0.482, Lat = 59.2775726318359, Lon = 24.7520561218262, Country = "Estonia", Name = "Tallinn" }, + new WorldCity { Cap = false, Pop = 0.000, Lat = 47.810001373291, Lon = 97, Country = "Mongolia", Name = "Uliastay" }, + new WorldCity { Cap = true, Pop = 1.313, Lat = 18.4997291564941, Lon = -69.9104919433594, Country = "Dominican Rp", Name = "Santo Domingo" }, + new WorldCity { Cap = true, Pop = 0.064, Lat = 4.93300008773804, Lon = 114.967002868652, Country = "Brunei", Name = "Bandar Seri Begawan" }, + new WorldCity { Cap = true, Pop = 0.095, Lat = 13.4452724456787, Lon = -16.4946155548096, Country = "Gambia", Name = "Banjul" }, + new WorldCity { Cap = true, Pop = 0.370, Lat = 10.6397342681885, Lon = -61.490062713623, Country = "Trinidad", Name = "Port of Spain" }, + new WorldCity { Cap = false, Pop = 0.302, Lat = 16.97438621521, Lon = -99.9314956665039, Country = "Mexico", Name = "Acapulco" }, + new WorldCity { Cap = false, Pop = 0.000, Lat = 64.4001617431641, Lon = 177.130187988281, Country = "Russia", Name = "Anadyr" }, + new WorldCity { Cap = false, Pop = 0.003, Lat = 65.6699981689453, Lon = -37.3118667602539, Country = "Greenland", Name = "Angmagssalik" }, + new WorldCity { Cap = false, Pop = 0.185, Lat = -23.8325366973877, Lon = -70.2254486083984, Country = "Chile", Name = "Antofagasta" }, + new WorldCity { Cap = false, Pop = 0.294, Lat = 40.75, Lon = 140.669998168945, Country = "Japan", Name = "Aomori" }, + new WorldCity { Cap = false, Pop = 0.436, Lat = 32.0430526733398, Lon = 20.3086757659912, Country = "Libya", Name = "Banghazi" }, + new WorldCity { Cap = false, Pop = 0.000, Lat = -15.75, Lon = 133.220001220703, Country = "Australia", Name = "Birdum" }, + new WorldCity { Cap = false, Pop = 0.000, Lat = 2.75, Lon = -60.5, Country = "Brazil", Name = "Boa Vista" }, + new WorldCity { Cap = false, Pop = 0.280, Lat = -6.61999988555908, Lon = -79.8300018310547, Country = "Peru", Name = "Chiclayo" }, + new WorldCity { Cap = false, Pop = 0.223, Lat = -8.930100440979, Lon = -78.4531478881836, Country = "Peru", Name = "Chimbote" }, + new WorldCity { Cap = false, Pop = 0.001, Lat = 58.710765838623, Lon = -94.1800003051758, Country = "Canada", Name = "Churchill" }, + new WorldCity { Cap = false, Pop = 0.686, Lat = 9.98798847198486, Lon = 76.5217819213867, Country = "India", Name = "Cochin" }, + new WorldCity { Cap = false, Pop = 0.675, Lat = -36.8832969665527, Lon = -72.8516387939453, Country = "Chile", Name = "Concepcion" }, + new WorldCity { Cap = false, Pop = 0.062, Lat = -31, Lon = -71.0199966430664, Country = "Chile", Name = "Coquimbo" }, + new WorldCity { Cap = false, Pop = 0.073, Lat = -12.7014999389648, Lon = 130.994552612305, Country = "Australia", Name = "Darwin" }, + new WorldCity { Cap = true, Pop = 0.120, Lat = 11.5, Lon = 43.0999984741211, Country = "Djibouti", Name = "Djibouti" }, + new WorldCity { Cap = false, Pop = 0.022, Lat = -32.0441665649414, Lon = 115.9345703125, Country = "Australia", Name = "Fremantle" }, + new WorldCity { Cap = false, Pop = 0.495, Lat = 5.34999990463257, Lon = 100.547142028809, Country = "Malaysia", Name = "George Town" }, + new WorldCity { Cap = false, Pop = 0.001, Lat = 69.3831405639648, Lon = -53.6300010681152, Country = "Greenland", Name = "Godhavn" }, + new WorldCity { Cap = true, Pop = 0.012, Lat = 64.2711868286133, Lon = -51.5800018310547, Country = "Greenland", Name = "Godthab" }, + new WorldCity { Cap = false, Pop = 0.296, Lat = 44.6300010681152, Lon = -63.5800018310547, Country = "Canada", Name = "Halifax" }, + new WorldCity { Cap = false, Pop = 0.007, Lat = 70.3913269042969, Lon = 23.9063415527344, Country = "Norway", Name = "Hammerfest" }, + new WorldCity { Cap = false, Pop = 0.000, Lat = 67.3499984741211, Lon = 86.5500030517578, Country = "Russia", Name = "Igarka" }, + new WorldCity { Cap = false, Pop = 0.019, Lat = 27.2000007629395, Lon = 2.52999997138977, Country = "Algeria", Name = "In Salah" }, + new WorldCity { Cap = false, Pop = 0.003, Lat = 68.2699966430664, Lon = -133.669998168945, Country = "Canada", Name = "Inuvik" }, + new WorldCity { Cap = false, Pop = 0.050, Lat = -4.94999980926514, Lon = 30, Country = "Tanzania", Name = "Kigoma" }, + new WorldCity { Cap = false, Pop = 0.069, Lat = 61.1500015258789, Lon = 47, Country = "Russia", Name = "Kotlas" }, + new WorldCity { Cap = false, Pop = 0.094, Lat = 27, Lon = -13.1800003051758, Country = "W Sahara", Name = "Laayoune" }, + new WorldCity { Cap = false, Pop = 0.217, Lat = 1.420086145401, Lon = 124.884239196777, Country = "Indonesia", Name = "Manado" }, + new WorldCity { Cap = false, Pop = 0.306, Lat = 12.9499998092651, Lon = 75.1608810424805, Country = "India", Name = "Mangalore" }, + new WorldCity { Cap = false, Pop = 0.535, Lat = 31.1499996185303, Lon = -8, Country = "Morocco", Name = "Marrakech" }, + new WorldCity { Cap = true, Pop = 0.038, Lat = -26.3033809661865, Lon = 31.1912975311279, Country = "Swaziland", Name = "Mbabne" }, + new WorldCity { Cap = false, Pop = 0.449, Lat = 32.8827476501465, Lon = 129.857467651367, Country = "Japan", Name = "Nagasaki" }, + new WorldCity { Cap = false, Pop = 0.510, Lat = -5.78000020980835, Lon = -35.25, Country = "Brazil", Name = "Natal" }, + new WorldCity { Cap = false, Pop = 0.033, Lat = -41.2999992370605, Lon = 173.270004272461, Country = "New Zealand", Name = "Nelson" }, + new WorldCity { Cap = false, Pop = 0.004, Lat = 64.5862808227539, Lon = -165.270004272461, Country = "US", Name = "Nome" }, + new WorldCity { Cap = false, Pop = 0.174, Lat = 69.3300018310547, Lon = 88.0999984741211, Country = "Russia", Name = "Noril`sk" }, + new WorldCity { Cap = false, Pop = 0.022, Lat = 20.8999996185303, Lon = -16.825647354126, Country = "Mauritania", Name = "Nouadnibou" }, + new WorldCity { Cap = false, Pop = 0.600, Lat = 53.7000007629395, Lon = 87.1699981689453, Country = "Russia", Name = "Novokuznetsk" }, + new WorldCity { Cap = false, Pop = 0.097, Lat = 46.9199981689453, Lon = -122.879997253418, Country = "US", Name = "Olympia" }, + new WorldCity { Cap = false, Pop = 0.297, Lat = -0.917578816413879, Lon = 100.475059509277, Country = "Indonesia", Name = "Padang" }, + new WorldCity { Cap = false, Pop = 0.787, Lat = -3, Lon = 104.830001831055, Country = "Indonesia", Name = "Palembang" }, + new WorldCity { Cap = false, Pop = 0.155, Lat = 38.1412391662598, Lon = 21.8831691741943, Country = "Greece", Name = "Patras" }, + new WorldCity { Cap = false, Pop = 0.269, Lat = 53.2000007629395, Lon = 158.720001220703, Country = "Russia", Name = "Petropavloski-Kamchatskiy" }, + new WorldCity { Cap = true, Pop = 0.083, Lat = 42.5, Lon = 19.3999996185303, Country = "Montenegro", Name = "Podgorica" }, + new WorldCity { Cap = false, Pop = 0.294, Lat = -4.63870811462402, Lon = 12.0580930709839, Country = "Congo", Name = "Pointe Noire" }, + new WorldCity { Cap = false, Pop = 0.124, Lat = -0.819999992847443, Lon = 9.15334415435791, Country = "Gabon", Name = "Port Gentil" }, + new WorldCity { Cap = false, Pop = 0.016, Lat = 54.420280456543, Lon = -130.048080444336, Country = "Canada", Name = "Prince Rupert" }, + new WorldCity { Cap = false, Pop = 0.121, Lat = 45.338134765625, Lon = -65.6499481201172, Country = "Canada", Name = "Saint John" }, + new WorldCity { Cap = false, Pop = 0.091, Lat = 15.9512100219727, Lon = -16.2978382110596, Country = "Senegal", Name = "Saint Louis" }, + new WorldCity { Cap = false, Pop = 0.000, Lat = 66.5699996948242, Lon = 66.5800018310547, Country = "Russia", Name = "Salekhard" }, + new WorldCity { Cap = false, Pop = 0.241, Lat = 41.3199996948242, Lon = 36.3699989318848, Country = "Turkey", Name = "Samsun" }, + new WorldCity { Cap = false, Pop = 0.600, Lat = -2.5, Lon = -44.4300575256348, Country = "Brazil", Name = "Sao Luis" }, + new WorldCity { Cap = true, Pop = 0.341, Lat = 43.8699989318848, Lon = 18.4300003051758, Country = "Bosnia/Herz", Name = "Sarajevo" }, + new WorldCity { Cap = false, Pop = 0.000, Lat = 70.5285720825195, Lon = -22.9963226318359, Country = "Greenland", Name = "Scoresbyund" }, + new WorldCity { Cap = false, Pop = 0.029, Lat = 50.2825469970703, Lon = -66.4025421142578, Country = "Canada", Name = "Sept-Iles" }, + new WorldCity { Cap = false, Pop = 0.003, Lat = 60.1199989318848, Lon = -149.449996948242, Country = "US", Name = "Seward" }, + new WorldCity { Cap = true, Pop = 0.445, Lat = 42, Lon = 21.5300006866455, Country = "Macedonia", Name = "Skopje" }, + new WorldCity { Cap = false, Pop = 0.000, Lat = 22.8299999237061, Lon = 5.55000019073486, Country = "Algeria", Name = "Tamanrasset" }, + new WorldCity { Cap = false, Pop = 0.000, Lat = 77.6699981689453, Lon = -69, Country = "Greenland", Name = "Thule" }, + new WorldCity { Cap = false, Pop = 0.000, Lat = 71.6999969482422, Lon = 128.75, Country = "Russia", Name = "Tiksi" }, + new WorldCity { Cap = false, Pop = 0.055, Lat = -23.2901554107666, Lon = 44.0190925598145, Country = "Madagascar", Name = "Toliara" }, + new WorldCity { Cap = false, Pop = 0.354, Lat = -7.92999982833862, Lon = -79, Country = "Peru", Name = "Trujillo" }, + new WorldCity { Cap = false, Pop = 0.604, Lat = 17.75, Lon = 83.3300018310547, Country = "India", Name = "Vishakhapatnam" }, + new WorldCity { Cap = false, Pop = 0.116, Lat = 67.8000030517578, Lon = 64.3300018310547, Country = "Russia", Name = "Vorkuta" }, + new WorldCity { Cap = false, Pop = 0.230, Lat = 31.9699993133545, Lon = 54.4500007629395, Country = "Iran", Name = "Yazd" }, + new WorldCity { Cap = false, Pop = 0.282, Lat = 29.6000003814697, Lon = 60.8300018310547, Country = "Iran", Name = "Zahedan" }, + new WorldCity { Cap = false, Pop = 0.318, Lat = 12.861159324646, Lon = 45.1800003051758, Country = "Yemen", Name = "Aden" }, + new WorldCity { Cap = true, Pop = 1.500, Lat = 9.02999973297119, Lon = 38.7000007629395, Country = "Ethiopia", Name = "Adis Abeba" }, + new WorldCity { Cap = true, Pop = 1.375, Lat = 29.1949901580811, Lon = 48.0027770996094, Country = "Kuwait", Name = "Al Kuwayt" }, + new WorldCity { Cap = true, Pop = 0.663, Lat = -18.8700008392334, Lon = 47.5, Country = "Madagascar", Name = "Antananarivo" }, + new WorldCity { Cap = true, Pop = 1.250, Lat = 24.6499996185303, Lon = 46.7700004577637, Country = "Saudi Arabia", Name = "Ar Riyad" }, + new WorldCity { Cap = true, Pop = 0.275, Lat = 15.3299999237061, Lon = 38.9700012207031, Country = "Eritrea", Name = "Asmara" }, + new WorldCity { Cap = true, Pop = 0.700, Lat = -25.2199993133545, Lon = -57.6699981689453, Country = "Paraguay", Name = "Asuncion" }, + new WorldCity { Cap = true, Pop = 3.027, Lat = 38.1216011047363, Lon = 23.6548633575439, Country = "Greece", Name = "Athens" }, + new WorldCity { Cap = false, Pop = 1.120, Lat = 40.6500015258789, Lon = 109.980003356934, Country = "China", Name = "Baotou" }, + new WorldCity { Cap = false, Pop = 4.040, Lat = 41.5299987792969, Lon = 2.17000007629395, Country = "Spain", Name = "Barcelona" }, + new WorldCity { Cap = false, Pop = 1.140, Lat = 11.0142946243286, Lon = -74.6800003051758, Country = "Colombia", Name = "Barranquilla" }, + new WorldCity { Cap = false, Pop = 0.292, Lat = -19.7692832946777, Lon = 35.0231704711914, Country = "Mozambique", Name = "Beira" }, + new WorldCity { Cap = true, Pop = 1.675, Lat = 33.7799987792969, Lon = 35.6579437255859, Country = "Lebanon", Name = "Beirut" }, + new WorldCity { Cap = true, Pop = 0.005, Lat = 17.1200008392334, Lon = -88.8000030517578, Country = "Belize", Name = "Belmopan" }, + new WorldCity { Cap = false, Pop = 0.239, Lat = 60.3499984741211, Lon = 5.49067831039429, Country = "Norway", Name = "Bergen" }, + new WorldCity { Cap = true, Pop = 0.109, Lat = 11.9109897613525, Lon = -15.6499996185303, Country = "GuineaBissau", Name = "Bissau" }, + new WorldCity { Cap = false, Pop = 1.790, Lat = -33.8040084838867, Lon = 18.6904315948486, Country = "South Africa", Name = "cape Town" }, + new WorldCity { Cap = false, Pop = 0.625, Lat = 51.5, Lon = -3.15000009536743, Country = "UK", Name = "Cardiff" }, + new WorldCity { Cap = false, Pop = 2.475, Lat = 33.5444107055664, Lon = -7.53409194946289, Country = "Morocco", Name = "Casablanca" }, + new WorldCity { Cap = true, Pop = 0.038, Lat = 4.92000007629395, Lon = -52.4000015258789, Country = "Fr Guiana", Name = "Cayenne" }, + new WorldCity { Cap = false, Pop = 1.392, Lat = 22.4799995422363, Lon = 91.8327941894531, Country = "Bangladesh", Name = "Chittagong" }, + new WorldCity { Cap = true, Pop = 2.050, Lat = 7.01999998092651, Lon = 80.0883331298828, Country = "Sri Lanka", Name = "Colombo" }, + new WorldCity { Cap = true, Pop = 0.800, Lat = 9.52000045776367, Lon = -12.8000001907349, Country = "Guinea", Name = "Conakry" }, + new WorldCity { Cap = true, Pop = 1.428, Lat = 14.6300001144409, Lon = -16.8480949401855, Country = "Senegal", Name = "Dakar" }, + new WorldCity { Cap = false, Pop = 1.405, Lat = 39.75, Lon = -105.069999694824, Country = "US", Name = "Denver" }, + new WorldCity { Cap = true, Pop = 0.595, Lat = 38.6300010681152, Lon = 68.9000015258789, Country = "Tajikistan", Name = "Dushanfe" }, + new WorldCity { Cap = false, Pop = 0.785, Lat = 53.5699996948242, Lon = -113.269996643066, Country = "Canada", Name = "Edmonton" }, + new WorldCity { Cap = false, Pop = 1.871, Lat = 30.4699993133545, Lon = 30.8500003814697, Country = "Egypt", Name = "Giza" }, + new WorldCity { Cap = true, Pop = 0.525, Lat = 8.38277053833008, Lon = -12.9102764129639, Country = "Sierra Leone", Name = "Freetown" }, + new WorldCity { Cap = true, Pop = 0.616, Lat = 42.8800010681152, Lon = 74.7699966430664, Country = "Kyrgyzstan", Name = "Frunze" }, + new WorldCity { Cap = false, Pop = 0.805, Lat = 44.4550895690918, Lon = 8.92229557037354, Country = "Italy", Name = "Genova" }, + new WorldCity { Cap = true, Pop = 0.188, Lat = 6.76999998092651, Lon = -58.1699981689453, Country = "Guyana", Name = "Georgetown" }, + new WorldCity { Cap = false, Pop = 0.711, Lat = 57.75, Lon = 12, Country = "Sweden", Name = "Goteborg" }, + new WorldCity { Cap = true, Pop = 0.890, Lat = -17.8299999237061, Lon = 31.0200004577637, Country = "Zimbabwe", Name = "Harare" }, + new WorldCity { Cap = true, Pop = 2.125, Lat = 23.0489521026611, Lon = -82.4164505004883, Country = "Cuba", Name = "Havana" }, + new WorldCity { Cap = false, Pop = 1.300, Lat = 21.6200008392334, Lon = 39.3733062744141, Country = "Saudi Arabia", Name = "Jiddah" }, + new WorldCity { Cap = true, Pop = 0.460, Lat = 0.319999992847443, Lon = 32.5800018310547, Country = "Uganda", Name = "Kampala" }, + new WorldCity { Cap = false, Pop = 0.538, Lat = 11.9200000762939, Lon = 8.52000045776367, Country = "Nigeria", Name = "Kano" }, + new WorldCity { Cap = false, Pop = 1.845, Lat = 22.6734161376953, Lon = 120.341484069824, Country = "Taiwan", Name = "Kao-Hsiung" }, + new WorldCity { Cap = false, Pop = 5.300, Lat = 24.8500003814697, Lon = 67.0299987792969, Country = "Pakistan", Name = "Karachi" }, + new WorldCity { Cap = false, Pop = 0.601, Lat = 48.5299987792969, Lon = 135.070007324219, Country = "Russia", Name = "Khabarovsk" }, + new WorldCity { Cap = true, Pop = 0.924, Lat = 15.5500001907349, Lon = 32.5299987792969, Country = "Sudan", Name = "Khartoum" }, + new WorldCity { Cap = true, Pop = 0.665, Lat = 47, Lon = 28.8299999237061, Country = "Moldova", Name = "Kishinev" }, + new WorldCity { Cap = true, Pop = 1.685, Lat = 55.7200012207031, Lon = 12.5500001907349, Country = "Denmark", Name = "Kobenhavn" }, + new WorldCity { Cap = true, Pop = 3.800, Lat = 6.44999980926514, Lon = 3.29999995231628, Country = "Nigeria", Name = "Lagos" }, + new WorldCity { Cap = false, Pop = 0.255, Lat = 49.3240203857422, Lon = 0.219999998807907, Country = "France", Name = "Le Havre" }, + new WorldCity { Cap = true, Pop = 0.236, Lat = -0.504144549369812, Lon = 9.49045658111572, Country = "Gabon", Name = "Libreville" }, + new WorldCity { Cap = true, Pop = 0.234, Lat = -13.9200000762939, Lon = 33.8199996948242, Country = "Malawi", Name = "Lilongwe" }, + new WorldCity { Cap = true, Pop = 4.344, Lat = -12.0679960250854, Lon = -76.8235549926758, Country = "Peru", Name = "Lima" }, + new WorldCity { Cap = true, Pop = 2.250, Lat = 38.7299995422363, Lon = -9.13000011444092, Country = "Portugal", Name = "Lisboa" }, + new WorldCity { Cap = false, Pop = 1.525, Lat = 53.4226875305176, Lon = -2.76683640480042, Country = "UK", Name = "Liverpool" }, + new WorldCity { Cap = true, Pop = 0.400, Lat = 6.28000020980835, Lon = 1.35000002384186, Country = "Togo", Name = "Lome" }, + new WorldCity { Cap = false, Pop = 9.764, Lat = 34, Lon = -118.25, Country = "US", Name = "Los Angeles" }, + new WorldCity { Cap = true, Pop = 1.460, Lat = -9, Lon = 13.4617786407471, Country = "Angola", Name = "Luanda" }, + new WorldCity { Cap = false, Pop = 0.543, Lat = -11.6800003051758, Lon = 27.5499992370605, Country = "Zaire", Name = "Lumumbashi" }, + new WorldCity { Cap = true, Pop = 0.536, Lat = -15.4300003051758, Lon = 28.1700000762939, Country = "Zambia", Name = "Lusaka" }, + new WorldCity { Cap = true, Pop = 0.031, Lat = 3.64468479156494, Lon = 8.81999969482422, Country = "Eq Guinea", Name = "Malabo" }, + new WorldCity { Cap = true, Pop = 5.474, Lat = 14.5500001907349, Lon = 121.173408508301, Country = "Philippines", Name = "Manila" }, + new WorldCity { Cap = false, Pop = 1.225, Lat = 43.2999992370605, Lon = 5.38000011444092, Country = "France", Name = "Marseille" }, + new WorldCity { Cap = true, Pop = 0.050, Lat = 23.5166397094727, Lon = 58.6274795532227, Country = "Oman", Name = "Masqat" }, + new WorldCity { Cap = false, Pop = 0.200, Lat = 23.3615112304688, Lon = -106.269996643066, Country = "Mexico", Name = "Mazatlan" }, + new WorldCity { Cap = false, Pop = 0.442, Lat = -4.01999998092651, Lon = 39.6699981689453, Country = "Kenya", Name = "Mombasa" }, + new WorldCity { Cap = true, Pop = 0.465, Lat = 6.51743936538696, Lon = -10.7700004577637, Country = "Liberia", Name = "Monrovia" }, + new WorldCity { Cap = true, Pop = 1.550, Lat = -34.9199981689453, Lon = -56.1699981689453, Country = "Uruguay", Name = "Montevideo" }, + new WorldCity { Cap = true, Pop = 13.100, Lat = 55.75, Lon = 37.7000007629395, Country = "Russia", Name = "Moscow" }, + new WorldCity { Cap = true, Pop = 1.286, Lat = -1.16999995708466, Lon = 36.8300018310547, Country = "Kenya", Name = "Nairobi" }, + new WorldCity { Cap = false, Pop = 2.875, Lat = 40.8300018310547, Lon = 14.2700004577637, Country = "Italy", Name = "Napoli" }, + new WorldCity { Cap = false, Pop = 16.472, Lat = 40.75, Lon = -74.0999984741211, Country = "US", Name = "New York" }, + new WorldCity { Cap = false, Pop = 0.329, Lat = 40.7200012207031, Lon = -74.1999969482422, Country = "US", Name = "Newark" }, + new WorldCity { Cap = true, Pop = 0.285, Lat = 18.0300006866455, Lon = -15.7828607559204, Country = "Mauritania", Name = "Nouakchott" }, + new WorldCity { Cap = false, Pop = 0.138, Lat = 55.574535369873, Lon = 9.90299892425537, Country = "Denmark", Name = "Odense" }, + new WorldCity { Cap = false, Pop = 0.526, Lat = 15.6199998855591, Lon = 32.4799995422363, Country = "Sudan", Name = "Omdurman" }, + new WorldCity { Cap = false, Pop = 0.629, Lat = 35.75, Lon = -0.519999980926514, Country = "Algeria", Name = "Oran" }, + new WorldCity { Cap = true, Pop = 0.720, Lat = 59.9300003051758, Lon = 10.7200002670288, Country = "Norway", Name = "Oslo" }, + new WorldCity { Cap = true, Pop = 0.442, Lat = 12.4799995422363, Lon = -1.66999995708466, Country = "Burkina Faso", Name = "Ouagadouou" }, + new WorldCity { Cap = false, Pop = 0.724, Lat = 38.1300010681152, Lon = 13.3999996185303, Country = "Italy", Name = "Palermo" }, + new WorldCity { Cap = true, Pop = 0.625, Lat = 8.94999980926514, Lon = -79.4000015258789, Country = "Panama", Name = "Panama" }, + new WorldCity { Cap = true, Pop = 0.241, Lat = 5.92999982833862, Lon = -55.2299995422363, Country = "Suriname", Name = "Paramaribo" }, + new WorldCity { Cap = false, Pop = 0.994, Lat = -31.9758644104004, Lon = 115.923370361328, Country = "Australia", Name = "Perth" }, + new WorldCity { Cap = true, Pop = 0.152, Lat = -9.55000019073486, Lon = 147.414520263672, Country = "Papua N Guin", Name = "Port Moresby" }, + new WorldCity { Cap = false, Pop = 1.225, Lat = 41.1500015258789, Lon = -8.48794841766357, Country = "Portugal", Name = "Porto" }, + new WorldCity { Cap = false, Pop = 0.203, Lat = 31.6000003814697, Lon = 65.5, Country = "Afghanistan", Name = "Qandahar" }, + new WorldCity { Cap = false, Pop = 1.326, Lat = 14.6499996185303, Lon = 121.029998779297, Country = "Philippines", Name = "Quezon City" }, + new WorldCity { Cap = true, Pop = 0.980, Lat = 33.9201965332031, Lon = -6.74804067611694, Country = "Morocco", Name = "Rabat" }, + new WorldCity { Cap = true, Pop = 0.138, Lat = 64.3132629394531, Lon = -21.336820602417, Country = "Iceland", Name = "Reykjavik" }, + new WorldCity { Cap = true, Pop = 1.005, Lat = 56.8800010681152, Lon = 24.0499992370605, Country = "latvia", Name = "Riga" }, + new WorldCity { Cap = true, Pop = 3.175, Lat = 41.8800010681152, Lon = 12.5200004577637, Country = "Italy", Name = "Roma" }, + new WorldCity { Cap = false, Pop = 2.050, Lat = -12.6002569198608, Lon = -38.4799995422363, Country = "Brazil", Name = "Salvador" }, + new WorldCity { Cap = false, Pop = 0.848, Lat = 29.6299991607666, Lon = 52.5699996948242, Country = "Iran", Name = "Shiraz" }, + new WorldCity { Cap = true, Pop = 1.450, Lat = 59.2446327209473, Lon = 18.0842685699463, Country = "Sweden", Name = "Stockholm" }, + new WorldCity { Cap = false, Pop = 2.028, Lat = -7.40000009536743, Lon = 112.684371948242, Country = "Indonesia", Name = "Surabaja" }, + new WorldCity { Cap = false, Pop = 0.657, Lat = 23.1700000762939, Lon = 120.230003356934, Country = "Taiwan", Name = "T`ai-nan" }, + new WorldCity { Cap = false, Pop = 0.595, Lat = 27.9973583221436, Lon = -82.5930252075195, Country = "US", Name = "Tampa" }, + new WorldCity { Cap = true, Pop = 1.670, Lat = 31.9171981811523, Lon = 34.8568344116211, Country = "Israel", Name = "Tel Aviv-Yafo" }, + new WorldCity { Cap = false, Pop = 0.706, Lat = 40.6300010681152, Lon = 22.7999992370605, Country = "Greece", Name = "Thessaloniki" }, + new WorldCity { Cap = true, Pop = 2.325, Lat = 41.247932434082, Lon = 69.3498687744141, Country = "Uzbekistan", Name = "Toshkent" }, + new WorldCity { Cap = false, Pop = 0.198, Lat = 34.3437576293945, Lon = 36.0070686340332, Country = "Lebanon", Name = "Tripoli" }, + new WorldCity { Cap = false, Pop = 0.675, Lat = -32.9000015258789, Lon = -71.2993392944336, Country = "Chile", Name = "Valparaiso" }, + new WorldCity { Cap = false, Pop = 1.381, Lat = 49.274299621582, Lon = -122.963066101074, Country = "Canada", Name = "Vancouver" }, + new WorldCity { Cap = false, Pop = 0.648, Lat = 43.1300010681152, Lon = 131.960433959961, Country = "Russia", Name = "Vladivostok" }, + new WorldCity { Cap = false, Pop = 0.017, Lat = -23.1018676757813, Lon = 14.6171045303345, Country = "Namibia", Name = "Walvis Bay" }, + new WorldCity { Cap = true, Pop = 0.115, Lat = -22.5699996948242, Lon = 17.1000003814697, Country = "Namibia", Name = "Windhoek" }, + new WorldCity { Cap = true, Pop = 0.350, Lat = -41.2103958129883, Lon = 175.144943237305, Country = "New Zealand", Name = "Wellington" }, + new WorldCity { Cap = false, Pop = 2.077, Lat = 47.5885543823242, Lon = -122.316650390625, Country = "US", Name = "Seattle" }, + new WorldCity { Cap = false, Pop = 2.099, Lat = 32.7614593505859, Lon = -117.125495910645, Country = "US", Name = "San Diego" }, + new WorldCity { Cap = false, Pop = 0.110, Lat = -20.2600002288818, Lon = -69.9132614135742, Country = "Chile", Name = "Iquique" }, + new WorldCity { Cap = true, Pop = 0.243, Lat = 24.2360076904297, Lon = 54.619270324707, Country = "Untd Arab Em", Name = "Abu Zaby" }, + new WorldCity { Cap = false, Pop = 0.199, Lat = 7.57660102844238, Lon = -72.0054550170898, Country = "Venezuela", Name = "San Cristobal" }, + new WorldCity { Cap = false, Pop = 0.509, Lat = 46.25, Lon = 48, Country = "Russia", Name = "Astrakhan" }, + new WorldCity { Cap = false, Pop = 0.000, Lat = 30.1386032104492, Lon = 9.81835079193115, Country = "Libya", Name = "Ghadamis" }, + new WorldCity { Cap = false, Pop = 0.077, Lat = -31.3051528930664, Lon = -57.7087745666504, Country = "Uruguay", Name = "Salto" }, + new WorldCity { Cap = false, Pop = 0.012, Lat = 62.5206146240234, Lon = -114.061363220215, Country = "Canada", Name = "Yellowknife" }, + new WorldCity { Cap = false, Pop = 0.043, Lat = 19.7148151397705, Lon = -155.067291259766, Country = "US", Name = "Hilo" }, + new WorldCity { Cap = false, Pop = 0.763, Lat = 21.3211765289307, Lon = -157.806182861328, Country = "US", Name = "Honolulu" }, + new WorldCity { Cap = false, Pop = 0.184, Lat = 61.188648223877, Lon = -149.172973632813, Country = "US", Name = "Anchorage" }, + new WorldCity { Cap = false, Pop = 0.040, Lat = 64.8387451171875, Lon = -147.651184082031, Country = "US", Name = "Fairbanks" }, + new WorldCity { Cap = false, Pop = 0.020, Lat = 58.3910064697266, Lon = -134.132476806641, Country = "US", Name = "Juneau" }, + new WorldCity { Cap = false, Pop = 0.629, Lat = 37.30810546875, Lon = -121.847457885742, Country = "US", Name = "San Jose" }, + new WorldCity { Cap = false, Pop = 0.386, Lat = 28.5581398010254, Lon = -105.966636657715, Country = "Mexico", Name = "Chihuaha" }, + new WorldCity { Cap = false, Pop = 0.385, Lat = 19.0096759796143, Lon = -96.0840606689453, Country = "Mexico", Name = "Veracruz" }, + new WorldCity { Cap = false, Pop = 0.154, Lat = 16.9209060668945, Lon = -96.9420394897461, Country = "Mexico", Name = "Oaxaca" }, + new WorldCity { Cap = false, Pop = 0.000, Lat = 78.1999969482422, Lon = 15.6599998474121, Country = "Norway", Name = "longyearbyen" }, + new WorldCity { Cap = true, Pop = 5.396, Lat = 22.4284057617188, Lon = 114.145706176758, Country = "UK", Name = "Hong Kong" }, + new WorldCity { Cap = false, Pop = 0.775, Lat = 22.3798961639404, Lon = 114.230117797852, Country = "UK", Name = "Kowloon" }, + new WorldCity { Cap = false, Pop = 3.025, Lat = 1.22979354858398, Lon = 104.177116394043, Country = "Singapore", Name = "Singapore" }, + }; + + return cities; + } + } +} diff --git a/samples/maps/geo-map/custom-tooltips/Services/WorldUtils.cs b/samples/maps/geo-map/custom-tooltips/Services/WorldUtils.cs new file mode 100644 index 0000000000..f489b0d4fd --- /dev/null +++ b/samples/maps/geo-map/custom-tooltips/Services/WorldUtils.cs @@ -0,0 +1,224 @@ +using IgniteUI.Blazor.Controls; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Runtime.CompilerServices; +using System.Threading.Tasks; + +namespace Infragistics.Samples +{ + public static class WorldUtils + { + public static List> CalcPaths(GeoLocation origin, GeoLocation dest) + { + int interval = 200; + var paths = new List>() { new List() }; + int pathID = 0; + double distance = WorldUtils.CalcDistance(origin, dest); + + if (distance <= interval) + { + paths[pathID].Add(new Point() { X = dest.Lon, Y = dest.Lat }); + } + else + { + GeoLocation current = origin; + GeoLocation previous = origin; + + for(int dist = interval; dist <= distance; dist += interval) + { + previous = current; + + paths[pathID].Add(new Point() { X = current.Lon, Y = current.Lat }); + + double bearing = WorldUtils.CalcBearing(current, dest); + current = WorldUtils.CalcDestination(current, bearing, interval); + + if (previous.Lon > 150 && current.Lon < -150) + { + paths[pathID].Add(new Point() { X = 180, Y = current.Lat }); + paths.Add(new List()); + pathID++; + current = new GeoLocation() { Lon = -180, Lat = current.Lat }; + } + else if(previous.Lon < -150 && current.Lon > 150) + { + paths[pathID].Add(new Point() { X = -180, Y = current.Lat }); + paths.Add(new List()); + pathID++; + current = new GeoLocation() { Lon = 180, Lat = current.Lat }; + } + } + + paths[pathID].Add(new Point() { X = dest.Lon, Y = dest.Lat }); + + } + + return paths; + + } + + public static double CalcBearing(GeoLocation origin, GeoLocation dest) + { + origin = WorldUtils.ToRadianLocation(origin); + dest = WorldUtils.ToRadianLocation(dest); + + double range = (dest.Lon - origin.Lon); + + double y = Math.Sin(range) * Math.Cos(dest.Lat); + double x = Math.Cos(origin.Lat) * Math.Sin(dest.Lat) - Math.Sin(origin.Lat) * Math.Cos(dest.Lat) * Math.Cos(range); + double angle = Math.Atan2(y, x); + + return WorldUtils.ToDegreesNormalized(angle); + } + + public static GeoLocation CalcDestination(GeoLocation origin, double bearing, double distance) + { + double radius = 6371.0; + + origin = WorldUtils.ToRadianLocation(origin); + bearing = WorldUtils.ToRadians(bearing); + + distance = distance / radius; + + double lat = Math.Asin(Math.Sin(origin.Lat) * Math.Cos(distance) + + Math.Cos(origin.Lat) * Math.Sin(distance) * Math.Cos(bearing)); + double x = Math.Sin(bearing) * Math.Sin(distance) * Math.Cos(origin.Lat); + double y = Math.Cos(distance) - Math.Sin(origin.Lat) * Math.Sin(origin.Lat); + double lon = origin.Lon + Math.Atan2(x, y); + // normalize lon to coordinate between -180º and +180º + lon = (lon + 3 * Math.PI) % (2 * Math.PI) - Math.PI; + + lon = WorldUtils.ToDegrees(lon); + lat = WorldUtils.ToDegrees(lat); + + return new GeoLocation() { Lat = lat, Lon = lon }; + } + + public static double CalcDistance(GeoLocation origin, GeoLocation dest) + { + origin = WorldUtils.ToRadianLocation(origin); + dest = WorldUtils.ToRadianLocation(dest); + + double sinProd = Math.Sin(origin.Lat) * Math.Sin(dest.Lat); + double cosProd = Math.Cos(origin.Lat) * Math.Cos(dest.Lat); + double lonDelta = (dest.Lon - origin.Lon); + + double angle = Math.Acos(sinProd + cosProd * Math.Cos(lonDelta)); + double distance = angle * 6371.0; + return distance; + } + + public static GeoLocation ToRadianLocation(GeoLocation geoPoint) + { + double x = WorldUtils.ToRadians(geoPoint.Lon); + double y = WorldUtils.ToRadians(geoPoint.Lat); + + return new GeoLocation() { Lon = x, Lat = y }; + } + + public static double ToRadians(double degrees) + { + return degrees * Math.PI / 180; + } + + public static double ToDegrees(double radians) + { + return (radians * 180.0 / Math.PI); + } + + public static double ToDegreesNormalized(double radians) + { + double degrees = WorldUtils.ToDegrees(radians); + degrees = (degrees + 360) % 360; + return degrees; + } + + public static string ToStringLat(double latitude) + { + string str = Math.Abs(latitude) + "°"; + return latitude > 0 ? str + "N" : str + "S"; + } + + public static string ToStringLon(double coordinate) + { + double val = Math.Abs(coordinate); + string str = val.ToString(); + return coordinate > 0 ? str + "°E" : str + "°W"; + } + + public static string ToStringAbbr(double value) + { + if (value > 1000000000000) + { + return (value / 1000000000000).ToString("N1") + " T"; + } + else if (value > 1000000000) + { + return (value / 1000000000).ToString("N1") + " B"; + } + else if (value > 1000000) + { + return (value / 1000000).ToString("N1") + " M"; + } + else if (value > 1000) + { + return (value / 1000).ToString("N1") + " K"; + } + return value.ToString("N0"); + } + + public static double GetLongitude(GeoLocation location) + { + return location.Lon; + } + + public static double GetLatitude(GeoLocation location) + { + return location.Lat; + } + + public static Rect GetBounds(List locations) + { + double minLat = 90; + double maxLat = -90; + double minLon = 180; + double maxLon = -180; + + foreach(GeoLocation gl in locations) + { + double curLon = WorldUtils.GetLongitude(gl); + double curLat = WorldUtils.GetLatitude(gl); + + if (!double.IsNaN(curLon)) + { + minLon = Math.Min(minLon, curLon); + maxLon = Math.Max(maxLon, curLon); + } + + if (!double.IsNaN(curLat)) + { + minLat = Math.Min(minLat, curLat); + maxLat = Math.Min(maxLat, curLat); + } + } + + Rect geoBounds = new Rect(minLon, minLat, Math.Abs(maxLon - minLon), Math.Abs(maxLat - minLat)); + return geoBounds; + } + + public static List GetNightShapes() + { + List line = new List(); + + for(int lon = -180; lon <= 180; lon += 1) + { + double x = lon; + double y = 75 * Math.Cos(lon * Math.PI / 180); + line.Add(new Point(x, y)); + } + + return line; + } + } +} From c9b5edfd39f9a2f069429e2d58c8ff494aed33a7 Mon Sep 17 00:00:00 2001 From: mtrela Date: Fri, 16 May 2025 15:05:43 -0400 Subject: [PATCH 2/8] Update App.razor --- samples/charts/data-chart/bar-chart-styling/App.razor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/charts/data-chart/bar-chart-styling/App.razor b/samples/charts/data-chart/bar-chart-styling/App.razor index e3aa1731ac..68f7e987e5 100644 --- a/samples/charts/data-chart/bar-chart-styling/App.razor +++ b/samples/charts/data-chart/bar-chart-styling/App.razor @@ -43,7 +43,7 @@ ShowDefaultTooltip="true" IsTransitionInEnabled="true" IsHighlightingEnabled="true" - Brush="#a586068a" + Brush="#c938cf" Outline="#85068a" Thickness="2" AreaFillOpacity="0.5" From 1de9b27cfd20effda2e0b75c3fb4f802002b342c Mon Sep 17 00:00:00 2001 From: Damyan Petev Date: Wed, 28 May 2025 09:34:14 +0300 Subject: [PATCH 3/8] refactor: update renamed enums --- samples/grids/list/overview/App.razor | 2 +- .../inputs/button-group/alignment/App.razor | 2 +- .../inputs/button-group/selection/App.razor | 2 +- samples/inputs/button-group/styling/App.razor | 2 +- samples/inputs/button/size/App.razor | 8 +-- samples/inputs/checkbox/label/App.razor | 2 +- samples/inputs/dropdown/position/App.razor | 50 +++++++++---------- samples/inputs/input/size/App.razor | 8 +-- samples/inputs/radio/alignment/App.razor | 2 +- samples/inputs/radio/label/App.razor | 4 +- samples/inputs/slider/tick-labels/App.razor | 2 +- samples/inputs/switches/label/App.razor | 2 +- .../textarea/form-integration/App.razor | 2 +- samples/layouts/carousel/animations/App.razor | 8 +-- samples/layouts/carousel/thumbnail/App.razor | 2 +- samples/layouts/stepper/animations/App.razor | 2 +- samples/layouts/stepper/orientation/App.razor | 4 +- samples/layouts/stepper/steptypes/App.razor | 2 +- samples/layouts/tabs/alignment/App.razor | 2 +- .../nav-drawer/add-positions-navbar/App.razor | 10 ++-- .../banner/banner-advanced-sample/App.razor | 2 +- .../banner/banner-styling/App.razor | 2 +- .../dialog/closing-variations/App.razor | 4 +- .../scheduling/calendar/formatting/App.razor | 2 +- samples/scheduling/calendar/header/App.razor | 2 +- .../calendar/multiple-selection/App.razor | 2 +- .../calendar/range-selection/App.razor | 2 +- samples/scheduling/calendar/size/App.razor | 2 +- .../date-picker/dialog-mode/App.razor | 2 +- .../scheduling/date-picker/styling/App.razor | 2 +- 30 files changed, 70 insertions(+), 70 deletions(-) diff --git a/samples/grids/list/overview/App.razor b/samples/grids/list/overview/App.razor index ef6726c9e3..e92fb3091e 100644 --- a/samples/grids/list/overview/App.razor +++ b/samples/grids/list/overview/App.razor @@ -2,7 +2,7 @@
- + Small Medium Large diff --git a/samples/inputs/button-group/alignment/App.razor b/samples/inputs/button-group/alignment/App.razor index b3002d66ef..4e5421b20f 100644 --- a/samples/inputs/button-group/alignment/App.razor +++ b/samples/inputs/button-group/alignment/App.razor @@ -11,7 +11,7 @@
- + Sofia diff --git a/samples/inputs/button-group/selection/App.razor b/samples/inputs/button-group/selection/App.razor index a3f7d87cf9..5ac26a52f4 100644 --- a/samples/inputs/button-group/selection/App.razor +++ b/samples/inputs/button-group/selection/App.razor @@ -22,7 +22,7 @@
- + Single Single-Required Multiple diff --git a/samples/inputs/button-group/styling/App.razor b/samples/inputs/button-group/styling/App.razor index 144e2dab3c..8889c3da7c 100644 --- a/samples/inputs/button-group/styling/App.razor +++ b/samples/inputs/button-group/styling/App.razor @@ -31,7 +31,7 @@
- + Sofia diff --git a/samples/inputs/button/size/App.razor b/samples/inputs/button/size/App.razor index 52f88cb97e..80dec87ecb 100644 --- a/samples/inputs/button/size/App.razor +++ b/samples/inputs/button/size/App.razor @@ -16,10 +16,10 @@
- - Small - Medium - Large + + Small + Medium + Large
diff --git a/samples/inputs/checkbox/label/App.razor b/samples/inputs/checkbox/label/App.razor index 4841f0d89e..e926e7407f 100644 --- a/samples/inputs/checkbox/label/App.razor +++ b/samples/inputs/checkbox/label/App.razor @@ -11,7 +11,7 @@
Label - +
diff --git a/samples/inputs/dropdown/position/App.razor b/samples/inputs/dropdown/position/App.razor index ddf890fc72..8955c5a3d0 100644 --- a/samples/inputs/dropdown/position/App.razor +++ b/samples/inputs/dropdown/position/App.razor @@ -15,25 +15,25 @@
Option - @DropdownPlacement.Top - @DropdownPlacement.TopStart - @DropdownPlacement.TopEnd - @DropdownPlacement.Bottom - @DropdownPlacement.BottomStart - @DropdownPlacement.BottomEnd - @DropdownPlacement.Left - @DropdownPlacement.LeftStart - @DropdownPlacement.LeftEnd - @DropdownPlacement.Right - @DropdownPlacement.RightStart - @DropdownPlacement.RightEnd + @PopoverPlacement.Top + @PopoverPlacement.TopStart + @PopoverPlacement.TopEnd + @PopoverPlacement.Bottom + @PopoverPlacement.BottomStart + @PopoverPlacement.BottomEnd + @PopoverPlacement.Left + @PopoverPlacement.LeftStart + @PopoverPlacement.LeftEnd + @PopoverPlacement.Right + @PopoverPlacement.RightStart + @PopoverPlacement.RightEnd
@code { IgbDropdown DropDownRef { get; set; } - DropdownPlacement placement { get; set; } + PopoverPlacement placement { get; set; } private void OnChange(IgbDropdownItemComponentEventArgs e) { @@ -42,40 +42,40 @@ switch (e.Detail.Value) { case "Top": - placement = DropdownPlacement.Top; + placement = PopoverPlacement.Top; break; case "TopStart": - placement = DropdownPlacement.TopStart; + placement = PopoverPlacement.TopStart; break; case "TopEnd": - placement = DropdownPlacement.TopEnd; + placement = PopoverPlacement.TopEnd; break; case "Bottom": - placement = DropdownPlacement.Bottom; + placement = PopoverPlacement.Bottom; break; case "BottomStart": - placement = DropdownPlacement.BottomStart; + placement = PopoverPlacement.BottomStart; break; case "BottomEnd": - placement = DropdownPlacement.BottomEnd; + placement = PopoverPlacement.BottomEnd; break; case "Left": - placement = DropdownPlacement.Left; + placement = PopoverPlacement.Left; break; case "LeftStart": - placement = DropdownPlacement.LeftStart; + placement = PopoverPlacement.LeftStart; break; case "LeftEnd": - placement = DropdownPlacement.LeftEnd; + placement = PopoverPlacement.LeftEnd; break; case "Right": - placement = DropdownPlacement.Right; + placement = PopoverPlacement.Right; break; case "RightStart": - placement = DropdownPlacement.RightStart; + placement = PopoverPlacement.RightStart; break; case "RightEnd": - placement = DropdownPlacement.RightEnd; + placement = PopoverPlacement.RightEnd; break; default: Console.WriteLine("Unknown placement value"); diff --git a/samples/inputs/input/size/App.razor b/samples/inputs/input/size/App.razor index 15aaa5bbac..358005ded2 100644 --- a/samples/inputs/input/size/App.razor +++ b/samples/inputs/input/size/App.razor @@ -11,10 +11,10 @@ } - - Small - Medium - Large + + Small + Medium + Large diff --git a/samples/inputs/radio/alignment/App.razor b/samples/inputs/radio/alignment/App.razor index fc88a59e1f..eec89b2406 100644 --- a/samples/inputs/radio/alignment/App.razor +++ b/samples/inputs/radio/alignment/App.razor @@ -3,7 +3,7 @@
- + Apple Banana Mango diff --git a/samples/inputs/radio/label/App.razor b/samples/inputs/radio/label/App.razor index bbbdf07ea3..42e75c947c 100644 --- a/samples/inputs/radio/label/App.razor +++ b/samples/inputs/radio/label/App.razor @@ -4,10 +4,10 @@
- Apple + Apple
Label -
diff --git a/samples/inputs/slider/tick-labels/App.razor b/samples/inputs/slider/tick-labels/App.razor index 3196bdf624..c24708c94b 100644 --- a/samples/inputs/slider/tick-labels/App.razor +++ b/samples/inputs/slider/tick-labels/App.razor @@ -13,7 +13,7 @@
diff --git a/samples/inputs/switches/label/App.razor b/samples/inputs/switches/label/App.razor index da32eba4e5..417b408925 100644 --- a/samples/inputs/switches/label/App.razor +++ b/samples/inputs/switches/label/App.razor @@ -4,7 +4,7 @@
Label - +
diff --git a/samples/inputs/textarea/form-integration/App.razor b/samples/inputs/textarea/form-integration/App.razor index 209ae3e438..ae586f63b5 100644 --- a/samples/inputs/textarea/form-integration/App.razor +++ b/samples/inputs/textarea/form-integration/App.razor @@ -13,7 +13,7 @@ Submit review Reset
- Your review was submitted + Your review was submitted
diff --git a/samples/layouts/carousel/animations/App.razor b/samples/layouts/carousel/animations/App.razor index 8dc91d4285..5031257d66 100644 --- a/samples/layouts/carousel/animations/App.razor +++ b/samples/layouts/carousel/animations/App.razor @@ -60,7 +60,7 @@ igc-card-header {
- Vertical alignment + Vertical alignment
@@ -136,13 +136,13 @@ igc-card-header { switch (args.Detail.Value) { case "slide": - this.carouselRef.AnimationType = CarouselAnimationType.Slide; + this.carouselRef.AnimationType = HorizontalTransitionAnimation.Slide; break; case "fade": - this.carouselRef.AnimationType = CarouselAnimationType.Fade; + this.carouselRef.AnimationType = HorizontalTransitionAnimation.Fade; break; default: - this.carouselRef.AnimationType = CarouselAnimationType.None; + this.carouselRef.AnimationType = HorizontalTransitionAnimation.None; break; } } diff --git a/samples/layouts/carousel/thumbnail/App.razor b/samples/layouts/carousel/thumbnail/App.razor index 0ae90859e6..50c3cace53 100644 --- a/samples/layouts/carousel/thumbnail/App.razor +++ b/samples/layouts/carousel/thumbnail/App.razor @@ -21,7 +21,7 @@ HideNavigation="true" Interval="2000" Vertical="true" - AnimationType="@CarouselAnimationType.Fade"> + AnimationType="@HorizontalTransitionAnimation.Fade"> (args.Detail.Value); + HorizontalTransitionAnimation animation = Enum.Parse(args.Detail.Value); this.stepper.HorizontalAnimation = animation; } diff --git a/samples/layouts/stepper/orientation/App.razor b/samples/layouts/stepper/orientation/App.razor index d250cc0eae..a7bde0fdba 100644 --- a/samples/layouts/stepper/orientation/App.razor +++ b/samples/layouts/stepper/orientation/App.razor @@ -6,7 +6,7 @@
- + Top Bottom Start @@ -19,7 +19,7 @@
- + Horizontal Vertical diff --git a/samples/layouts/stepper/steptypes/App.razor b/samples/layouts/stepper/steptypes/App.razor index 713798f653..aab6ddeb10 100644 --- a/samples/layouts/stepper/steptypes/App.razor +++ b/samples/layouts/stepper/steptypes/App.razor @@ -4,7 +4,7 @@
- + Indicator Title Full diff --git a/samples/layouts/tabs/alignment/App.razor b/samples/layouts/tabs/alignment/App.razor index 5623c35326..19ca3a8d4e 100644 --- a/samples/layouts/tabs/alignment/App.razor +++ b/samples/layouts/tabs/alignment/App.razor @@ -3,7 +3,7 @@
- + Start Center End diff --git a/samples/menus/nav-drawer/add-positions-navbar/App.razor b/samples/menus/nav-drawer/add-positions-navbar/App.razor index dfd061c1f1..fd40f97e3a 100644 --- a/samples/menus/nav-drawer/add-positions-navbar/App.razor +++ b/samples/menus/nav-drawer/add-positions-navbar/App.razor @@ -19,11 +19,11 @@
- - Start - End - Top - Bottom + + Start + End + Top + Bottom diff --git a/samples/notifications/banner/banner-advanced-sample/App.razor b/samples/notifications/banner/banner-advanced-sample/App.razor index 41c4e0316d..291f6bce37 100644 --- a/samples/notifications/banner/banner-advanced-sample/App.razor +++ b/samples/notifications/banner/banner-advanced-sample/App.razor @@ -66,7 +66,7 @@
- @message + @message
diff --git a/samples/notifications/banner/banner-styling/App.razor b/samples/notifications/banner/banner-styling/App.razor index ed8664db0a..c61dde4ff2 100644 --- a/samples/notifications/banner/banner-styling/App.razor +++ b/samples/notifications/banner/banner-styling/App.razor @@ -75,7 +75,7 @@
- @message + @message
diff --git a/samples/notifications/dialog/closing-variations/App.razor b/samples/notifications/dialog/closing-variations/App.razor index 84f3de8048..1a496e3c8e 100644 --- a/samples/notifications/dialog/closing-variations/App.razor +++ b/samples/notifications/dialog/closing-variations/App.razor @@ -1,8 +1,8 @@ @using IgniteUI.Blazor.Controls
- KeepOpenOnEscape - CloseOnOutsideClick + KeepOpenOnEscape + CloseOnOutsideClick Show Dialog diff --git a/samples/scheduling/calendar/formatting/App.razor b/samples/scheduling/calendar/formatting/App.razor index 46ac4fc6d5..ffe6d3f755 100644 --- a/samples/scheduling/calendar/formatting/App.razor +++ b/samples/scheduling/calendar/formatting/App.razor @@ -2,7 +2,7 @@
- + EN DE FR diff --git a/samples/scheduling/calendar/header/App.razor b/samples/scheduling/calendar/header/App.razor index c0b4eb35b8..4fe233e175 100644 --- a/samples/scheduling/calendar/header/App.razor +++ b/samples/scheduling/calendar/header/App.razor @@ -3,7 +3,7 @@
- + Trip dates
diff --git a/samples/scheduling/calendar/multiple-selection/App.razor b/samples/scheduling/calendar/multiple-selection/App.razor index 8ea42e0a05..546765a00b 100644 --- a/samples/scheduling/calendar/multiple-selection/App.razor +++ b/samples/scheduling/calendar/multiple-selection/App.razor @@ -3,7 +3,7 @@
- +
diff --git a/samples/scheduling/calendar/range-selection/App.razor b/samples/scheduling/calendar/range-selection/App.razor index cc5e215174..064a0106f5 100644 --- a/samples/scheduling/calendar/range-selection/App.razor +++ b/samples/scheduling/calendar/range-selection/App.razor @@ -3,7 +3,7 @@
- +
diff --git a/samples/scheduling/calendar/size/App.razor b/samples/scheduling/calendar/size/App.razor index 0dfe8e8b6d..fbf362966d 100644 --- a/samples/scheduling/calendar/size/App.razor +++ b/samples/scheduling/calendar/size/App.razor @@ -2,7 +2,7 @@
- + Small Medium Large diff --git a/samples/scheduling/date-picker/dialog-mode/App.razor b/samples/scheduling/date-picker/dialog-mode/App.razor index 2e79d12f45..de9dd42fcf 100644 --- a/samples/scheduling/date-picker/dialog-mode/App.razor +++ b/samples/scheduling/date-picker/dialog-mode/App.razor @@ -3,7 +3,7 @@
- +
diff --git a/samples/scheduling/date-picker/styling/App.razor b/samples/scheduling/date-picker/styling/App.razor index 2e79d12f45..de9dd42fcf 100644 --- a/samples/scheduling/date-picker/styling/App.razor +++ b/samples/scheduling/date-picker/styling/App.razor @@ -3,7 +3,7 @@
- +
From 50a984ebde465f80cdddd4c29d63bbb392d78ec0 Mon Sep 17 00:00:00 2001 From: Damyan Petev Date: Wed, 28 May 2025 10:32:39 +0300 Subject: [PATCH 4/8] refactor: update tab samples --- samples/layouts/tabs/alignment/App.razor | 20 ++++++++++++-------- samples/layouts/tabs/overview/App.razor | 18 +++++++++--------- samples/layouts/tabs/prefix-suffix/App.razor | 18 +++++++++--------- samples/layouts/tabs/scrolling/App.razor | 6 ++---- 4 files changed, 32 insertions(+), 30 deletions(-) diff --git a/samples/layouts/tabs/alignment/App.razor b/samples/layouts/tabs/alignment/App.razor index 19ca3a8d4e..6192d7cf81 100644 --- a/samples/layouts/tabs/alignment/App.razor +++ b/samples/layouts/tabs/alignment/App.razor @@ -11,14 +11,18 @@
- Basics - Details - Custom" - Disabled - Basics tab panel - Details tab panel - Custom tab panel - Disabled tab panel + + Basics tab content + + + Details tab content + + + Custom tab content + + + Disabled tab content will not be displayed +
diff --git a/samples/layouts/tabs/overview/App.razor b/samples/layouts/tabs/overview/App.razor index eeeca40c9c..a1ece4cd36 100644 --- a/samples/layouts/tabs/overview/App.razor +++ b/samples/layouts/tabs/overview/App.razor @@ -3,18 +3,18 @@
- - + + + Home tab panel - - + + + Search tab panel - - + + + Favorite tab panel - Home tab panel - Search tab panel - Favorite tab panel
diff --git a/samples/layouts/tabs/prefix-suffix/App.razor b/samples/layouts/tabs/prefix-suffix/App.razor index 4fd8a7de0c..ffbbbf7de4 100644 --- a/samples/layouts/tabs/prefix-suffix/App.razor +++ b/samples/layouts/tabs/prefix-suffix/App.razor @@ -3,24 +3,24 @@
- + - Home + Home + Home tab content - + - Search + Search + Search tab content - + - Favorite + Favorite + Favorite tab content - Home tab panel - Search tab panel - Favorite tab panel
diff --git a/samples/layouts/tabs/scrolling/App.razor b/samples/layouts/tabs/scrolling/App.razor index 6de765519f..c7621d14ec 100644 --- a/samples/layouts/tabs/scrolling/App.razor +++ b/samples/layouts/tabs/scrolling/App.razor @@ -6,11 +6,9 @@ @for(int i=1; i<=20; i++) { string tabName = "Tab " + i.ToString(); - string panelName = "Panel" + i.ToString(); - string panelContent = "Tab Panel " + i.ToString(); + string tabContent = "Tab Content " + i.ToString(); - @tabName - @panelContent + @tabContent }
From 646c12133198d6a264577cc918af0f33883f5bbc Mon Sep 17 00:00:00 2001 From: Damyan Petev Date: Thu, 29 May 2025 09:31:00 +0300 Subject: [PATCH 5/8] chore: update package version --- azure-pipelines/build-pipeline-client.yml | 2 +- azure-pipelines/build-pipeline-server.yml | 2 +- .../IgBlazorSamples.Client/IgBlazorSamples.Client.csproj | 6 +++--- browser/IgBlazorSamples.Gulp/tasks/gulp-samples.js | 6 +++--- .../IgBlazorSamples.Server/IgBlazorSamples.Server.csproj | 6 +++--- .../category-chart/annotations-all/BlazorClientApp.csproj | 2 +- .../annotations-callouts/BlazorClientApp.csproj | 2 +- .../annotations-crosshairs/BlazorClientApp.csproj | 2 +- .../annotations-custom/BlazorClientApp.csproj | 2 +- .../annotations-final-value/BlazorClientApp.csproj | 2 +- .../annotations-highlighting/BlazorClientApp.csproj | 2 +- .../category-chart/annotations/BlazorClientApp.csproj | 2 +- .../area-chart-multiple-sources/BlazorClientApp.csproj | 2 +- .../area-chart-single-source/BlazorClientApp.csproj | 2 +- .../area-chart-styling/BlazorClientApp.csproj | 2 +- .../charts/category-chart/axis-gap/BlazorClientApp.csproj | 2 +- .../category-chart/axis-gridlines/BlazorClientApp.csproj | 2 +- .../category-chart/axis-inverted/BlazorClientApp.csproj | 2 +- .../category-chart/axis-labels/BlazorClientApp.csproj | 2 +- .../category-chart/axis-locations/BlazorClientApp.csproj | 2 +- .../category-chart/axis-options/BlazorClientApp.csproj | 2 +- .../category-chart/axis-overlap/BlazorClientApp.csproj | 2 +- .../charts/category-chart/axis-range/BlazorClientApp.csproj | 2 +- .../category-chart/axis-tickmarks/BlazorClientApp.csproj | 2 +- .../category-chart/axis-titles/BlazorClientApp.csproj | 2 +- .../chart-highlight-filter/BlazorClientApp.csproj | 2 +- .../column-chart-multiple-sources/BlazorClientApp.csproj | 2 +- .../column-chart-single-source/BlazorClientApp.csproj | 2 +- .../column-chart-styling/BlazorClientApp.csproj | 2 +- .../column-chart-with-highlighting/BlazorClientApp.csproj | 2 +- .../column-chart-with-tooltips/BlazorClientApp.csproj | 2 +- .../category-chart/custom-selection/BlazorClientApp.csproj | 2 +- .../category-chart/data-aggregations/BlazorClientApp.csproj | 2 +- .../category-chart/data-filter/BlazorClientApp.csproj | 2 +- .../data-legend-formatting-decimals/BlazorClientApp.csproj | 2 +- .../category-chart/data-legend/BlazorClientApp.csproj | 2 +- .../data-tooltip-formatting-decimals/BlazorClientApp.csproj | 2 +- .../data-tooltip-positioning/BlazorClientApp.csproj | 2 +- .../category-chart/data-tooltip/BlazorClientApp.csproj | 2 +- .../category-chart/format-specifiers/BlazorClientApp.csproj | 2 +- .../category-chart/high-frequency/BlazorClientApp.csproj | 2 +- .../category-chart/high-volume/BlazorClientApp.csproj | 2 +- .../highlighting-behavior/BlazorClientApp.csproj | 2 +- .../category-chart/highlighting-mode/BlazorClientApp.csproj | 2 +- .../category-chart/highlighting/BlazorClientApp.csproj | 2 +- .../legend-highlighting/BlazorClientApp.csproj | 2 +- .../line-chart-multiple-sources/BlazorClientApp.csproj | 2 +- .../line-chart-single-source/BlazorClientApp.csproj | 2 +- .../line-chart-styling/BlazorClientApp.csproj | 2 +- .../line-chart-with-animations/BlazorClientApp.csproj | 2 +- .../line-chart-with-annotations/BlazorClientApp.csproj | 2 +- .../category-chart/marker-options/BlazorClientApp.csproj | 2 +- .../category-chart/marker-templates/BlazorClientApp.csproj | 2 +- .../charts/category-chart/overview/BlazorClientApp.csproj | 2 +- .../point-chart-multiple-sources/BlazorClientApp.csproj | 2 +- .../point-chart-single-source/BlazorClientApp.csproj | 2 +- .../point-chart-styling/BlazorClientApp.csproj | 2 +- .../category-chart/selection-matcher/BlazorClientApp.csproj | 2 +- .../category-chart/selection-modes/BlazorClientApp.csproj | 2 +- .../selection-multiple-modes/BlazorClientApp.csproj | 2 +- .../spline-area-multiple-sources/BlazorClientApp.csproj | 2 +- .../spline-area-single-source/BlazorClientApp.csproj | 2 +- .../spline-area-styling/BlazorClientApp.csproj | 2 +- .../spline-multiple-sources/BlazorClientApp.csproj | 2 +- .../spline-single-source/BlazorClientApp.csproj | 2 +- .../category-chart/spline-styling/BlazorClientApp.csproj | 2 +- .../category-chart/stack-columns/BlazorClientApp.csproj | 2 +- .../step-area-multiple-sources/BlazorClientApp.csproj | 2 +- .../step-area-single-source/BlazorClientApp.csproj | 2 +- .../category-chart/step-area-styling/BlazorClientApp.csproj | 2 +- .../step-line-multiple-sources/BlazorClientApp.csproj | 2 +- .../step-line-single-source/BlazorClientApp.csproj | 2 +- .../category-chart/step-line-styling/BlazorClientApp.csproj | 2 +- .../category-chart/tooltip-template/BlazorClientApp.csproj | 2 +- .../category-chart/tooltip-types/BlazorClientApp.csproj | 2 +- .../charts/category-chart/trendline/BlazorClientApp.csproj | 2 +- .../category-chart/value-lines/BlazorClientApp.csproj | 2 +- .../dashboard-tile/chart-dashboard/BlazorClientApp.csproj | 2 +- .../financial-dashboard/BlazorClientApp.csproj | 2 +- .../dashboard-tile/gauge-dashboard/BlazorClientApp.csproj | 2 +- .../dashboard-tile/map-dashboard/BlazorClientApp.csproj | 2 +- .../dashboard-tile/pie-dashboard/BlazorClientApp.csproj | 2 +- .../data-chart/annotations-custom/BlazorClientApp.csproj | 2 +- .../axis-annotations-corner-radius/BlazorClientApp.csproj | 2 +- .../data-chart/axis-annotations/BlazorClientApp.csproj | 2 +- .../charts/data-chart/axis-crossing/BlazorClientApp.csproj | 2 +- .../data-chart/axis-label-rotation/BlazorClientApp.csproj | 2 +- .../charts/data-chart/axis-locations/BlazorClientApp.csproj | 2 +- .../data-chart/axis-min-max-gap/BlazorClientApp.csproj | 2 +- .../charts/data-chart/axis-scales/BlazorClientApp.csproj | 2 +- .../charts/data-chart/axis-settings/BlazorClientApp.csproj | 2 +- .../charts/data-chart/axis-sharing/BlazorClientApp.csproj | 2 +- .../charts/data-chart/axis-stacking/BlazorClientApp.csproj | 2 +- samples/charts/data-chart/axis-types/BlazorClientApp.csproj | 2 +- .../bar-chart-multiple-sources/BlazorClientApp.csproj | 2 +- .../data-chart/bar-chart-overlapping/BlazorClientApp.csproj | 2 +- .../bar-chart-single-source/BlazorClientApp.csproj | 2 +- .../data-chart/bar-chart-styling/BlazorClientApp.csproj | 2 +- .../data-chart/callout-layer-styling/BlazorClientApp.csproj | 2 +- .../data-chart/category-series/BlazorClientApp.csproj | 2 +- .../BlazorClientApp.csproj | 2 +- .../BlazorClientApp.csproj | 2 +- .../chart-highlight-filter/BlazorClientApp.csproj | 2 +- .../data-chart/chart-navigation/BlazorClientApp.csproj | 2 +- .../charts/data-chart/chart-overview/BlazorClientApp.csproj | 2 +- .../data-chart/chart-performance/BlazorClientApp.csproj | 2 +- .../data-chart/chart-synchronization/BlazorClientApp.csproj | 2 +- .../charts/data-chart/chart-titles/BlazorClientApp.csproj | 2 +- .../data-chart/column-chart-styling/BlazorClientApp.csproj | 2 +- .../data-chart/composite-chart/BlazorClientApp.csproj | 2 +- .../crosshair-layer-styling/BlazorClientApp.csproj | 2 +- .../custom-drawing-annotations/BlazorClientApp.csproj | 2 +- .../data-chart/custom-editing-data/BlazorClientApp.csproj | 2 +- .../data-chart/dash-array-axes/BlazorClientApp.csproj | 2 +- .../data-chart/dash-array-series/BlazorClientApp.csproj | 2 +- .../data-chart/dash-array-tickmarks/BlazorClientApp.csproj | 2 +- .../data-chart/dash-array-trendline/BlazorClientApp.csproj | 2 +- .../BlazorClientApp.csproj | 2 +- .../data-chart/data-legend-grouping/BlazorClientApp.csproj | 2 +- .../data-chart/data-legend-styling/BlazorClientApp.csproj | 2 +- .../charts/data-chart/data-legend/BlazorClientApp.csproj | 2 +- .../BlazorClientApp.csproj | 2 +- .../data-chart/data-tooltip-grouping/BlazorClientApp.csproj | 2 +- .../data-chart/data-tooltip-styling/BlazorClientApp.csproj | 2 +- .../charts/data-chart/data-tooltip/BlazorClientApp.csproj | 2 +- .../final-value-layer-styling/BlazorClientApp.csproj | 2 +- .../financial-price-series/BlazorClientApp.csproj | 2 +- .../data-chart/financial-series/BlazorClientApp.csproj | 2 +- .../data-chart/format-specifiers/BlazorClientApp.csproj | 2 +- .../charts/data-chart/gantt-chart/BlazorClientApp.csproj | 2 +- .../data-chart/itemized-bar-chart/BlazorClientApp.csproj | 2 +- .../data-chart/itemized-column-chart/BlazorClientApp.csproj | 2 +- .../itemized-stacked-bar-chart/BlazorClientApp.csproj | 2 +- .../itemized-stacked-column-chart/BlazorClientApp.csproj | 2 +- .../data-chart/legend-interactions/BlazorClientApp.csproj | 2 +- samples/charts/data-chart/legends/BlazorClientApp.csproj | 2 +- .../data-chart/network-polar-chart/BlazorClientApp.csproj | 2 +- .../data-chart/network-scatter-chart/BlazorClientApp.csproj | 2 +- .../polar-area-chart-styling/BlazorClientApp.csproj | 2 +- .../data-chart/polar-area-chart/BlazorClientApp.csproj | 2 +- .../data-chart/polar-chart-types/BlazorClientApp.csproj | 2 +- .../data-chart/polar-line-chart/BlazorClientApp.csproj | 2 +- .../data-chart/polar-scatter-chart/BlazorClientApp.csproj | 2 +- .../polar-spline-area-chart/BlazorClientApp.csproj | 2 +- .../data-chart/polar-spline-chart/BlazorClientApp.csproj | 2 +- .../charts/data-chart/pyramid-chart/BlazorClientApp.csproj | 2 +- .../radial-area-chart-styling/BlazorClientApp.csproj | 2 +- .../data-chart/radial-area-chart/BlazorClientApp.csproj | 2 +- .../data-chart/radial-chart-types/BlazorClientApp.csproj | 2 +- .../radial-column-chart-selection/BlazorClientApp.csproj | 2 +- .../data-chart/radial-column-chart/BlazorClientApp.csproj | 2 +- .../data-chart/radial-label-mode/BlazorClientApp.csproj | 2 +- .../data-chart/radial-line-chart/BlazorClientApp.csproj | 2 +- .../data-chart/radial-pie-chart/BlazorClientApp.csproj | 2 +- .../BlazorClientApp.csproj | 2 +- .../BlazorClientApp.csproj | 2 +- .../data-chart/range-area-chart/BlazorClientApp.csproj | 2 +- .../data-chart/range-column-chart/BlazorClientApp.csproj | 2 +- .../charts/data-chart/range-series/BlazorClientApp.csproj | 2 +- .../scatter-bubble-chart-fill-scale/BlazorClientApp.csproj | 2 +- .../BlazorClientApp.csproj | 2 +- .../BlazorClientApp.csproj | 2 +- .../scatter-bubble-chart-styling/BlazorClientApp.csproj | 2 +- .../scatter-bubble-chart-tooltip/BlazorClientApp.csproj | 2 +- .../data-chart/scatter-line-chart/BlazorClientApp.csproj | 2 +- .../data-chart/scatter-point-chart/BlazorClientApp.csproj | 2 +- .../charts/data-chart/scatter-series/BlazorClientApp.csproj | 2 +- .../data-chart/scatter-spline-chart/BlazorClientApp.csproj | 2 +- .../data-chart/selection-matcher/BlazorClientApp.csproj | 2 +- .../data-chart/series-annotations/BlazorClientApp.csproj | 2 +- .../data-chart/series-highlighting/BlazorClientApp.csproj | 2 +- .../series-marker-template/BlazorClientApp.csproj | 2 +- .../charts/data-chart/series-markers/BlazorClientApp.csproj | 2 +- .../data-chart/series-tooltips/BlazorClientApp.csproj | 2 +- .../data-chart/series-trendlines/BlazorClientApp.csproj | 2 +- .../data-chart/series-value-overlay/BlazorClientApp.csproj | 2 +- .../stacked-100-area-chart/BlazorClientApp.csproj | 2 +- .../data-chart/stacked-100-bar-chart/BlazorClientApp.csproj | 2 +- .../stacked-100-column-chart/BlazorClientApp.csproj | 2 +- .../stacked-100-line-chart/BlazorClientApp.csproj | 2 +- .../stacked-100-spline-area-chart/BlazorClientApp.csproj | 2 +- .../stacked-100-spline-chart/BlazorClientApp.csproj | 2 +- .../data-chart/stacked-area-chart/BlazorClientApp.csproj | 2 +- .../data-chart/stacked-bar-chart/BlazorClientApp.csproj | 2 +- .../data-chart/stacked-chart-types/BlazorClientApp.csproj | 2 +- .../data-chart/stacked-column-chart/BlazorClientApp.csproj | 2 +- .../data-chart/stacked-line-chart/BlazorClientApp.csproj | 2 +- .../stacked-spline-area-chart/BlazorClientApp.csproj | 2 +- .../data-chart/stacked-spline-chart/BlazorClientApp.csproj | 2 +- .../data-chart/timeline-axis-type/BlazorClientApp.csproj | 2 +- .../data-chart/tooltip-template/BlazorClientApp.csproj | 2 +- .../data-chart/transition-event/BlazorClientApp.csproj | 2 +- .../BlazorClientApp.csproj | 2 +- .../type-financial-indicators-column/BlazorClientApp.csproj | 2 +- .../type-financial-indicators-line/BlazorClientApp.csproj | 2 +- .../type-financial-ohlc-series/BlazorClientApp.csproj | 2 +- .../type-financial-overlays/BlazorClientApp.csproj | 2 +- .../type-range-area-series/BlazorClientApp.csproj | 2 +- .../type-range-column-series/BlazorClientApp.csproj | 2 +- .../type-scatter-area-series/BlazorClientApp.csproj | 2 +- .../type-scatter-bubble-series/BlazorClientApp.csproj | 2 +- .../type-scatter-contour-series/BlazorClientApp.csproj | 2 +- .../type-scatter-hd-series/BlazorClientApp.csproj | 2 +- .../type-scatter-polygon-series/BlazorClientApp.csproj | 2 +- .../type-scatter-polyline-series/BlazorClientApp.csproj | 2 +- .../type-scatter-spline-series/BlazorClientApp.csproj | 2 +- .../data-chart/waterfall-chart/BlazorClientApp.csproj | 2 +- .../data-pie-chart/animation-replay/BlazorClientApp.csproj | 2 +- .../charts/data-pie-chart/animation/BlazorClientApp.csproj | 2 +- .../data-pie-chart/highlight-filter/BlazorClientApp.csproj | 2 +- .../data-pie-chart/highlighting/BlazorClientApp.csproj | 2 +- samples/charts/data-pie-chart/legend/BlazorClientApp.csproj | 2 +- samples/charts/data-pie-chart/others/BlazorClientApp.csproj | 2 +- .../charts/data-pie-chart/overview/BlazorClientApp.csproj | 2 +- .../charts/data-pie-chart/selection/BlazorClientApp.csproj | 2 +- .../charts/doughnut-chart/animation/BlazorClientApp.csproj | 2 +- .../charts/doughnut-chart/explosion/BlazorClientApp.csproj | 2 +- samples/charts/doughnut-chart/legend/BlazorClientApp.csproj | 2 +- .../charts/doughnut-chart/overview/BlazorClientApp.csproj | 2 +- samples/charts/doughnut-chart/rings/BlazorClientApp.csproj | 2 +- .../charts/doughnut-chart/selection/BlazorClientApp.csproj | 2 +- .../financial-chart/annotations/BlazorClientApp.csproj | 2 +- .../financial-chart/axis-types/BlazorClientApp.csproj | 2 +- .../data-legend-formatting-currency/BlazorClientApp.csproj | 2 +- .../data-legend-styling-props/BlazorClientApp.csproj | 2 +- .../financial-chart/data-legend/BlazorClientApp.csproj | 2 +- .../data-tooltip-formatting-currency/BlazorClientApp.csproj | 2 +- .../data-tooltip-styling-props/BlazorClientApp.csproj | 2 +- .../financial-chart/data-tooltip/BlazorClientApp.csproj | 2 +- .../format-specifiers/BlazorClientApp.csproj | 2 +- .../financial-chart/high-frequency/BlazorClientApp.csproj | 2 +- .../financial-chart/high-volume/BlazorClientApp.csproj | 2 +- .../indicator-customization/BlazorClientApp.csproj | 2 +- .../financial-chart/indicator-types/BlazorClientApp.csproj | 2 +- .../financial-chart/multiple-data/BlazorClientApp.csproj | 2 +- .../charts/financial-chart/overview/BlazorClientApp.csproj | 2 +- samples/charts/financial-chart/panes/BlazorClientApp.csproj | 2 +- .../financial-chart/performance/BlazorClientApp.csproj | 2 +- .../financial-chart/scrollbars/BlazorClientApp.csproj | 2 +- .../stock-index-chart/BlazorClientApp.csproj | 2 +- .../charts/financial-chart/styling/BlazorClientApp.csproj | 2 +- .../charts/financial-chart/titles/BlazorClientApp.csproj | 2 +- .../financial-chart/tooltip-types/BlazorClientApp.csproj | 2 +- .../financial-chart/trendlines/BlazorClientApp.csproj | 2 +- .../financial-chart/volume-types/BlazorClientApp.csproj | 2 +- samples/charts/pie-chart/animation/BlazorClientApp.csproj | 2 +- samples/charts/pie-chart/explosion/BlazorClientApp.csproj | 2 +- samples/charts/pie-chart/legend/BlazorClientApp.csproj | 2 +- samples/charts/pie-chart/others/BlazorClientApp.csproj | 2 +- samples/charts/pie-chart/overview/BlazorClientApp.csproj | 2 +- samples/charts/pie-chart/selection/BlazorClientApp.csproj | 2 +- samples/charts/pie-chart/styling/BlazorClientApp.csproj | 2 +- .../charts/sparkline/display-area/BlazorClientApp.csproj | 2 +- .../charts/sparkline/display-column/BlazorClientApp.csproj | 2 +- .../charts/sparkline/display-lines/BlazorClientApp.csproj | 2 +- .../charts/sparkline/display-types/BlazorClientApp.csproj | 2 +- .../charts/sparkline/display-winloss/BlazorClientApp.csproj | 2 +- samples/charts/sparkline/grid/BlazorClientApp.csproj | 2 +- samples/charts/sparkline/markers/BlazorClientApp.csproj | 2 +- .../charts/sparkline/normal-range/BlazorClientApp.csproj | 2 +- samples/charts/sparkline/trendlines/BlazorClientApp.csproj | 2 +- .../charts/sparkline/unknown-values/BlazorClientApp.csproj | 2 +- .../actions-built-in-category-chart/BlazorClientApp.csproj | 2 +- .../actions-built-in-data-chart/BlazorClientApp.csproj | 2 +- .../toolbar/color-editor-support/BlazorClientApp.csproj | 2 +- samples/charts/toolbar/custom-tool/BlazorClientApp.csproj | 2 +- .../download-data-chart-as-image/BlazorClientApp.csproj | 2 +- .../layout-actions-for-data-chart/BlazorClientApp.csproj | 2 +- .../layout-in-vertical-orientation/BlazorClientApp.csproj | 2 +- samples/charts/toolbar/theming/BlazorClientApp.csproj | 2 +- samples/charts/tree-map/events/BlazorClientApp.csproj | 2 +- .../highlighting-percent-based/BlazorClientApp.csproj | 2 +- samples/charts/tree-map/highlighting/BlazorClientApp.csproj | 2 +- samples/charts/tree-map/layout/BlazorClientApp.csproj | 2 +- samples/charts/tree-map/overview/BlazorClientApp.csproj | 2 +- samples/charts/tree-map/styling/BlazorClientApp.csproj | 2 +- samples/charts/zoomslider/overview/BlazorClientApp.csproj | 2 +- .../editors/date-picker/date-limits/BlazorClientApp.csproj | 2 +- samples/editors/date-picker/editing/BlazorClientApp.csproj | 2 +- samples/editors/date-picker/format/BlazorClientApp.csproj | 2 +- samples/editors/date-picker/overview/BlazorClientApp.csproj | 2 +- samples/editors/date-picker/range/BlazorClientApp.csproj | 2 +- .../multi-column-combobox/binding/BlazorClientApp.csproj | 2 +- .../multi-column-combobox/overview/BlazorClientApp.csproj | 2 +- .../x-date-picker/date-limits/BlazorClientApp.csproj | 2 +- .../editors/x-date-picker/editing/BlazorClientApp.csproj | 2 +- samples/editors/x-date-picker/format/BlazorClientApp.csproj | 2 +- .../editors/x-date-picker/overview/BlazorClientApp.csproj | 2 +- samples/editors/x-date-picker/range/BlazorClientApp.csproj | 2 +- .../operations-on-workbooks/BlazorClientApp.csproj | 4 ++-- .../operations-on-worksheets/BlazorClientApp.csproj | 4 ++-- samples/excel/excel-library/overview/BlazorClientApp.csproj | 4 ++-- .../excel-library/working-with-cells/BlazorClientApp.csproj | 6 +++--- .../working-with-charts/BlazorClientApp.csproj | 4 ++-- .../working-with-sparklines/BlazorClientApp.csproj | 4 ++-- .../gauges/bullet-graph/animation/BlazorClientApp.csproj | 2 +- .../gauges/bullet-graph/background/BlazorClientApp.csproj | 2 +- .../bullet-graph/highlight-needle/BlazorClientApp.csproj | 2 +- samples/gauges/bullet-graph/labels/BlazorClientApp.csproj | 2 +- samples/gauges/bullet-graph/measures/BlazorClientApp.csproj | 2 +- samples/gauges/bullet-graph/ranges/BlazorClientApp.csproj | 2 +- samples/gauges/bullet-graph/scale/BlazorClientApp.csproj | 2 +- .../gauges/bullet-graph/tickmarks/BlazorClientApp.csproj | 2 +- .../gauges/bullet-graph/type-filled/BlazorClientApp.csproj | 2 +- .../bullet-graph/type-horizontal/BlazorClientApp.csproj | 2 +- .../bullet-graph/type-reversed/BlazorClientApp.csproj | 2 +- .../bullet-graph/type-segmented/BlazorClientApp.csproj | 2 +- .../bullet-graph/type-vertical/BlazorClientApp.csproj | 2 +- .../gauges/linear-gauge/animation/BlazorClientApp.csproj | 2 +- samples/gauges/linear-gauge/backing/BlazorClientApp.csproj | 2 +- .../linear-gauge/highlight-needle/BlazorClientApp.csproj | 2 +- samples/gauges/linear-gauge/labels/BlazorClientApp.csproj | 2 +- samples/gauges/linear-gauge/needle/BlazorClientApp.csproj | 2 +- samples/gauges/linear-gauge/ranges/BlazorClientApp.csproj | 2 +- samples/gauges/linear-gauge/scale/BlazorClientApp.csproj | 2 +- .../gauges/linear-gauge/tickmarks/BlazorClientApp.csproj | 2 +- .../gauges/linear-gauge/type-curved/BlazorClientApp.csproj | 2 +- .../gauges/linear-gauge/type-filled/BlazorClientApp.csproj | 2 +- .../linear-gauge/type-horizontal/BlazorClientApp.csproj | 2 +- .../linear-gauge/type-multi-range/BlazorClientApp.csproj | 2 +- .../linear-gauge/type-multi-scale/BlazorClientApp.csproj | 2 +- .../linear-gauge/type-segmented/BlazorClientApp.csproj | 2 +- .../linear-gauge/type-vertical/BlazorClientApp.csproj | 2 +- .../gauges/radial-gauge/animation/BlazorClientApp.csproj | 2 +- samples/gauges/radial-gauge/backing/BlazorClientApp.csproj | 2 +- .../radial-gauge/highlight-needle/BlazorClientApp.csproj | 2 +- samples/gauges/radial-gauge/labels/BlazorClientApp.csproj | 2 +- samples/gauges/radial-gauge/needle/BlazorClientApp.csproj | 2 +- .../radial-gauge/optical-scaling/BlazorClientApp.csproj | 2 +- samples/gauges/radial-gauge/ranges/BlazorClientApp.csproj | 2 +- samples/gauges/radial-gauge/scale/BlazorClientApp.csproj | 2 +- .../gauges/radial-gauge/tickmarks/BlazorClientApp.csproj | 2 +- .../gauges/radial-gauge/type-column/BlazorClientApp.csproj | 2 +- .../gauges/radial-gauge/type-curved/BlazorClientApp.csproj | 2 +- .../radial-gauge/type-direction/BlazorClientApp.csproj | 2 +- .../gauges/radial-gauge/type-full/BlazorClientApp.csproj | 2 +- .../gauges/radial-gauge/type-half/BlazorClientApp.csproj | 2 +- .../gauges/radial-gauge/type-quatre/BlazorClientApp.csproj | 2 +- .../gauges/radial-gauge/type-ring/BlazorClientApp.csproj | 2 +- .../radial-gauge/type-segmented/BlazorClientApp.csproj | 2 +- .../gauges/radial-gauge/type-semi/BlazorClientApp.csproj | 2 +- .../grids/data-grid/accessibility/BlazorClientApp.csproj | 2 +- .../data-grid/binding-data-service/BlazorClientApp.csproj | 2 +- .../data-grid/binding-live-data/BlazorClientApp.csproj | 2 +- .../data-grid/binding-local-data/BlazorClientApp.csproj | 2 +- .../data-grid/binding-remote-data/BlazorClientApp.csproj | 2 +- .../grids/data-grid/cell-activation/BlazorClientApp.csproj | 2 +- samples/grids/data-grid/cell-editing/BlazorClientApp.csproj | 2 +- samples/grids/data-grid/cell-merging/BlazorClientApp.csproj | 2 +- .../grids/data-grid/cell-selection/BlazorClientApp.csproj | 2 +- .../grids/data-grid/column-animation/BlazorClientApp.csproj | 2 +- .../data-grid/column-auto-generation/BlazorClientApp.csproj | 2 +- .../data-grid/column-chooser-picker/BlazorClientApp.csproj | 2 +- .../data-grid/column-chooser-toolbar/BlazorClientApp.csproj | 2 +- .../column-filter-expressions/BlazorClientApp.csproj | 2 +- .../data-grid/column-filter-operands/BlazorClientApp.csproj | 2 +- .../grids/data-grid/column-filtering/BlazorClientApp.csproj | 2 +- .../grids/data-grid/column-moving/BlazorClientApp.csproj | 2 +- .../grids/data-grid/column-options/BlazorClientApp.csproj | 2 +- .../data-grid/column-pinning-picker/BlazorClientApp.csproj | 2 +- .../data-grid/column-pinning-toolbar/BlazorClientApp.csproj | 2 +- .../grids/data-grid/column-resizing/BlazorClientApp.csproj | 2 +- .../grids/data-grid/column-scrolling/BlazorClientApp.csproj | 2 +- .../grids/data-grid/column-sorting/BlazorClientApp.csproj | 2 +- .../grids/data-grid/column-summaries/BlazorClientApp.csproj | 2 +- samples/grids/data-grid/column-types/BlazorClientApp.csproj | 2 +- .../grids/data-grid/load-save-layout/BlazorClientApp.csproj | 2 +- samples/grids/data-grid/localization/BlazorClientApp.csproj | 2 +- samples/grids/data-grid/overview/BlazorClientApp.csproj | 2 +- samples/grids/data-grid/pager/BlazorClientApp.csproj | 2 +- samples/grids/data-grid/performance/BlazorClientApp.csproj | 2 +- .../data-grid/row-group-descriptions/BlazorClientApp.csproj | 2 +- samples/grids/data-grid/row-grouping/BlazorClientApp.csproj | 2 +- .../grids/data-grid/row-highlighting/BlazorClientApp.csproj | 2 +- samples/grids/data-grid/row-paging/BlazorClientApp.csproj | 2 +- samples/grids/data-grid/row-pinning/BlazorClientApp.csproj | 2 +- .../grids/data-grid/row-selection/BlazorClientApp.csproj | 2 +- .../data-grid/type-comparison-table/BlazorClientApp.csproj | 2 +- .../data-grid/type-heatmap-table/BlazorClientApp.csproj | 2 +- .../data-grid/type-marketing-table/BlazorClientApp.csproj | 2 +- .../data-grid/type-matrix-table/BlazorClientApp.csproj | 2 +- .../data-grid/type-periodic-table/BlazorClientApp.csproj | 2 +- samples/grids/grid/action-strip/BlazorClientApp.csproj | 2 +- .../grid/advanced-filtering-options/BlazorClientApp.csproj | 2 +- .../grid/advanced-filtering-style/BlazorClientApp.csproj | 2 +- .../grid/binding-composite-data/BlazorClientApp.csproj | 2 +- samples/grids/grid/binding-crud-data/BlazorClientApp.csproj | 2 +- .../grids/grid/binding-nested-data-1/BlazorClientApp.csproj | 2 +- .../grids/grid/binding-remote-data/BlazorClientApp.csproj | 2 +- samples/grids/grid/cascading-combo/BlazorClientApp.csproj | 2 +- .../grids/grid/cell-editing-sample/BlazorClientApp.csproj | 2 +- .../grids/grid/cell-editing-styling/BlazorClientApp.csproj | 2 +- .../grids/grid/cell-selection-mode/BlazorClientApp.csproj | 2 +- .../grids/grid/cell-selection-style/BlazorClientApp.csproj | 2 +- .../grids/grid/change-icons-custom/BlazorClientApp.csproj | 2 +- .../grids/grid/clipboard-operations/BlazorClientApp.csproj | 2 +- .../grids/grid/column-auto-sizing/BlazorClientApp.csproj | 2 +- .../grid/column-collapsible-groups/BlazorClientApp.csproj | 2 +- samples/grids/grid/column-data-types/BlazorClientApp.csproj | 2 +- .../grids/grid/column-hiding-options/BlazorClientApp.csproj | 2 +- .../grid/column-hiding-toolbar-style/BlazorClientApp.csproj | 2 +- .../grids/grid/column-hiding-toolbar/BlazorClientApp.csproj | 2 +- .../grids/grid/column-moving-options/BlazorClientApp.csproj | 2 +- .../grids/grid/column-moving-styles/BlazorClientApp.csproj | 2 +- .../grid/column-pinning-options/BlazorClientApp.csproj | 2 +- .../grid/column-pinning-right-side/BlazorClientApp.csproj | 2 +- .../grids/grid/column-pinning-styles/BlazorClientApp.csproj | 2 +- samples/grids/grid/column-pinning/BlazorClientApp.csproj | 2 +- .../grids/grid/column-resize-styling/BlazorClientApp.csproj | 2 +- samples/grids/grid/column-resizing/BlazorClientApp.csproj | 2 +- .../grid/column-selection-group/BlazorClientApp.csproj | 2 +- .../grids/grid/column-selection-mode/BlazorClientApp.csproj | 2 +- .../grid/column-selection-styles/BlazorClientApp.csproj | 2 +- .../grid/column-sorting-indicators/BlazorClientApp.csproj | 2 +- .../grid/column-sorting-options/BlazorClientApp.csproj | 2 +- .../grids/grid/column-sorting-style/BlazorClientApp.csproj | 2 +- .../grid/conditional-cell-style-1/BlazorClientApp.csproj | 2 +- .../grid/conditional-cell-style-2/BlazorClientApp.csproj | 2 +- .../grid/conditional-row-selectors/BlazorClientApp.csproj | 2 +- .../grids/grid/custom-context-menu/BlazorClientApp.csproj | 2 +- .../grid/data-batch-editing-actions/BlazorClientApp.csproj | 2 +- .../grids/grid/data-paste-options/BlazorClientApp.csproj | 2 +- .../data-performance-virtualization/BlazorClientApp.csproj | 2 +- samples/grids/grid/data-searching/BlazorClientApp.csproj | 2 +- .../grid/data-summary-formatter/BlazorClientApp.csproj | 2 +- .../grids/grid/data-summary-options/BlazorClientApp.csproj | 2 +- .../grids/grid/data-summary-template/BlazorClientApp.csproj | 2 +- .../grids/grid/data-validation-style/BlazorClientApp.csproj | 2 +- .../BlazorClientApp.csproj | 2 +- .../data-validator-service-extended/BlazorClientApp.csproj | 2 +- .../grid/data-validator-service/BlazorClientApp.csproj | 2 +- .../grids/grid/disabled-summaries/BlazorClientApp.csproj | 2 +- samples/grids/grid/editing-columns/BlazorClientApp.csproj | 2 +- samples/grids/grid/editing-events/BlazorClientApp.csproj | 2 +- .../grid/editing-excel-style-custom/BlazorClientApp.csproj | 2 +- .../grids/grid/editing-excel-style/BlazorClientApp.csproj | 2 +- samples/grids/grid/editing-lifecycle/BlazorClientApp.csproj | 2 +- samples/grids/grid/excel-exporting/BlazorClientApp.csproj | 2 +- .../excel-style-filtering-sample-1/BlazorClientApp.csproj | 2 +- .../excel-style-filtering-sample-2/BlazorClientApp.csproj | 2 +- .../excel-style-filtering-sample-3/BlazorClientApp.csproj | 2 +- .../grid/excel-style-filtering-style/BlazorClientApp.csproj | 2 +- .../grid/external-advanced-filtering/BlazorClientApp.csproj | 2 +- samples/grids/grid/filtering-options/BlazorClientApp.csproj | 2 +- .../grids/grid/filtering-strategy/BlazorClientApp.csproj | 2 +- samples/grids/grid/filtering-style/BlazorClientApp.csproj | 2 +- .../grids/grid/filtering-template/BlazorClientApp.csproj | 2 +- samples/grids/grid/finjs/BlazorClientApp.csproj | 2 +- samples/grids/grid/groupby-custom/BlazorClientApp.csproj | 2 +- .../grids/grid/groupby-expressions/BlazorClientApp.csproj | 2 +- samples/grids/grid/groupby-paging/BlazorClientApp.csproj | 2 +- samples/grids/grid/groupby-styling/BlazorClientApp.csproj | 2 +- .../grid/groupby-summary-options/BlazorClientApp.csproj | 2 +- .../grid/groupby-summary-styling/BlazorClientApp.csproj | 2 +- samples/grids/grid/infinite-scroll/BlazorClientApp.csproj | 2 +- .../grid/keyboard-custom-navigation/BlazorClientApp.csproj | 2 +- .../grid/keyboard-mrl-navigation/BlazorClientApp.csproj | 2 +- .../grid/layout-display-density/BlazorClientApp.csproj | 2 +- samples/grids/grid/master-detail/BlazorClientApp.csproj | 2 +- .../grid/multi-cell-selection-mode/BlazorClientApp.csproj | 2 +- .../grid/multi-column-headers-export/BlazorClientApp.csproj | 2 +- .../multi-column-headers-overview/BlazorClientApp.csproj | 2 +- .../multi-column-headers-styling/BlazorClientApp.csproj | 2 +- .../multi-column-headers-template/BlazorClientApp.csproj | 2 +- .../grids/grid/multi-row-dragging/BlazorClientApp.csproj | 2 +- .../grid/multi-row-layout-options/BlazorClientApp.csproj | 2 +- .../grid/multi-row-layout-style/BlazorClientApp.csproj | 2 +- samples/grids/grid/overview-dark/BlazorClientApp.csproj | 2 +- samples/grids/grid/overview/BlazorClientApp.csproj | 2 +- samples/grids/grid/paste/BlazorClientApp.csproj | 2 +- .../grids/grid/remote-paging-data/BlazorClientApp.csproj | 2 +- .../grids/grid/remote-paging-grid/BlazorClientApp.csproj | 6 +++--- samples/grids/grid/row-adding/BlazorClientApp.csproj | 2 +- samples/grids/grid/row-classes/BlazorClientApp.csproj | 2 +- samples/grids/grid/row-drag-base/BlazorClientApp.csproj | 2 +- samples/grids/grid/row-drag-to-grid/BlazorClientApp.csproj | 2 +- .../grids/grid/row-editing-options/BlazorClientApp.csproj | 2 +- samples/grids/grid/row-editing-style/BlazorClientApp.csproj | 2 +- samples/grids/grid/row-paging-basic/BlazorClientApp.csproj | 2 +- .../grids/grid/row-paging-options/BlazorClientApp.csproj | 2 +- samples/grids/grid/row-pinning-drag/BlazorClientApp.csproj | 2 +- .../grid/row-pinning-extra-column/BlazorClientApp.csproj | 2 +- .../grids/grid/row-pinning-options/BlazorClientApp.csproj | 2 +- samples/grids/grid/row-pinning-style/BlazorClientApp.csproj | 2 +- samples/grids/grid/row-reorder/BlazorClientApp.csproj | 2 +- .../grids/grid/row-selection-mode/BlazorClientApp.csproj | 2 +- .../row-selection-template-excel/BlazorClientApp.csproj | 2 +- .../row-selection-template-numbers/BlazorClientApp.csproj | 2 +- samples/grids/grid/row-styles/BlazorClientApp.csproj | 2 +- .../grid/state-persistence-about/BlazorClientApp.csproj | 2 +- .../grid/state-persistence-main/BlazorClientApp.csproj | 2 +- .../grids/grid/styling-custom-css/BlazorClientApp.csproj | 2 +- samples/grids/grid/toolbar-sample-1/BlazorClientApp.csproj | 2 +- samples/grids/grid/toolbar-sample-2/BlazorClientApp.csproj | 2 +- samples/grids/grid/toolbar-sample-3/BlazorClientApp.csproj | 2 +- samples/grids/grid/toolbar-sample-4/BlazorClientApp.csproj | 2 +- samples/grids/grid/toolbar-style/BlazorClientApp.csproj | 2 +- .../hierarchical-grid/action-strip/BlazorClientApp.csproj | 2 +- .../advanced-filtering-options/BlazorClientApp.csproj | 2 +- .../advanced-filtering-style/BlazorClientApp.csproj | 2 +- .../cell-editing-sample/BlazorClientApp.csproj | 2 +- .../cell-editing-styling/BlazorClientApp.csproj | 2 +- .../cell-selection-mode/BlazorClientApp.csproj | 2 +- .../cell-selection-overview/BlazorClientApp.csproj | 2 +- .../cell-selection-style/BlazorClientApp.csproj | 2 +- .../cell-selection-styling/BlazorClientApp.csproj | 2 +- .../column-auto-sizing/BlazorClientApp.csproj | 2 +- .../column-collapsible-groups/BlazorClientApp.csproj | 2 +- .../column-hiding-toolbar-style/BlazorClientApp.csproj | 2 +- .../column-hiding-toolbar/BlazorClientApp.csproj | 2 +- .../column-moving-options/BlazorClientApp.csproj | 2 +- .../column-moving-styles/BlazorClientApp.csproj | 2 +- .../column-pinning-options/BlazorClientApp.csproj | 2 +- .../column-pinning-right-side/BlazorClientApp.csproj | 2 +- .../column-pinning-styles/BlazorClientApp.csproj | 2 +- .../hierarchical-grid/column-pinning/BlazorClientApp.csproj | 2 +- .../column-resize-styling/BlazorClientApp.csproj | 2 +- .../column-resizing/BlazorClientApp.csproj | 2 +- .../column-selection-group/BlazorClientApp.csproj | 2 +- .../column-selection-mode/BlazorClientApp.csproj | 2 +- .../column-selection-styles/BlazorClientApp.csproj | 2 +- .../column-sorting-indicators/BlazorClientApp.csproj | 2 +- .../column-sorting-options/BlazorClientApp.csproj | 2 +- .../column-sorting-style/BlazorClientApp.csproj | 2 +- .../complex-feature-name1/BlazorClientApp.csproj | 2 +- .../complex-feature-name2/BlazorClientApp.csproj | 2 +- .../conditional-cell-style-1/BlazorClientApp.csproj | 2 +- .../conditional-cell-style-2/BlazorClientApp.csproj | 2 +- .../conditional-row-selectors/BlazorClientApp.csproj | 2 +- .../custom-filtering/BlazorClientApp.csproj | 2 +- .../data-exporting-indicator/BlazorClientApp.csproj | 2 +- .../data-performance-virtualization/BlazorClientApp.csproj | 2 +- .../data-summary-formatter/BlazorClientApp.csproj | 2 +- .../data-summary-options-styling/BlazorClientApp.csproj | 2 +- .../data-summary-options/BlazorClientApp.csproj | 2 +- .../data-summary-template/BlazorClientApp.csproj | 2 +- .../disabled-summaries/BlazorClientApp.csproj | 2 +- .../editing-columns/BlazorClientApp.csproj | 2 +- .../hierarchical-grid/editing-events/BlazorClientApp.csproj | 2 +- .../editing-lifecycle/BlazorClientApp.csproj | 2 +- .../excel-exporting/BlazorClientApp.csproj | 2 +- .../excel-style-filtering-sample-1/BlazorClientApp.csproj | 2 +- .../excel-style-filtering-sample-2/BlazorClientApp.csproj | 2 +- .../excel-style-filtering-sample-3/BlazorClientApp.csproj | 2 +- .../excel-style-filtering-style/BlazorClientApp.csproj | 2 +- .../filtering-options/BlazorClientApp.csproj | 2 +- .../filtering-style/BlazorClientApp.csproj | 2 +- .../hierarchical-grid-options/BlazorClientApp.csproj | 2 +- .../hierarchical-grid-paging-style/BlazorClientApp.csproj | 2 +- .../hierarchical-grid-styling/BlazorClientApp.csproj | 2 +- .../layout-display-density/BlazorClientApp.csproj | 2 +- .../multi-column-headers-export/BlazorClientApp.csproj | 2 +- .../multi-column-headers-overview/BlazorClientApp.csproj | 2 +- .../multi-column-headers-styling/BlazorClientApp.csproj | 2 +- .../multi-column-headers-template/BlazorClientApp.csproj | 2 +- .../grids/hierarchical-grid/overview/BlazorClientApp.csproj | 2 +- .../remote-paging-hgrid/BlazorClientApp.csproj | 2 +- .../hierarchical-grid/row-adding/BlazorClientApp.csproj | 2 +- .../hierarchical-grid/row-classes/BlazorClientApp.csproj | 2 +- .../hierarchical-grid/row-drag-base/BlazorClientApp.csproj | 2 +- .../row-editing-options/BlazorClientApp.csproj | 2 +- .../row-editing-style/BlazorClientApp.csproj | 2 +- .../row-pinning-extra-column/BlazorClientApp.csproj | 2 +- .../row-pinning-options/BlazorClientApp.csproj | 2 +- .../row-pinning-style/BlazorClientApp.csproj | 2 +- .../hierarchical-grid/row-reorder/BlazorClientApp.csproj | 2 +- .../row-selection-mode/BlazorClientApp.csproj | 2 +- .../row-selection-template-numbers/BlazorClientApp.csproj | 2 +- .../hierarchical-grid/row-styles/BlazorClientApp.csproj | 2 +- .../state-persistence-about/BlazorClientApp.csproj | 2 +- .../state-persistence-main/BlazorClientApp.csproj | 2 +- .../toolbar-sample-3/BlazorClientApp.csproj | 2 +- .../toolbar-sample-4/BlazorClientApp.csproj | 2 +- .../hierarchical-grid/toolbar-style/BlazorClientApp.csproj | 2 +- samples/grids/list/add-list-items/BlazorClientApp.csproj | 2 +- samples/grids/list/list-item-content/BlazorClientApp.csproj | 2 +- samples/grids/list/overview/BlazorClientApp.csproj | 2 +- samples/grids/list/styling/BlazorClientApp.csproj | 2 +- .../pivot-grid/aggregate-max-sales/BlazorClientApp.csproj | 2 +- .../pivot-grid/aggregate-units-sold/BlazorClientApp.csproj | 2 +- .../grids/pivot-grid/data-selector/BlazorClientApp.csproj | 2 +- samples/grids/pivot-grid/features/BlazorClientApp.csproj | 2 +- .../state-persistence-about/BlazorClientApp.csproj | 2 +- .../state-persistence-main/BlazorClientApp.csproj | 2 +- samples/grids/tree-grid/action-strip/BlazorClientApp.csproj | 2 +- .../advanced-filtering-options/BlazorClientApp.csproj | 2 +- .../advanced-filtering-style/BlazorClientApp.csproj | 2 +- .../tree-grid/cell-editing-sample/BlazorClientApp.csproj | 2 +- .../tree-grid/cell-editing-styling/BlazorClientApp.csproj | 2 +- .../tree-grid/cell-selection-mode/BlazorClientApp.csproj | 2 +- .../tree-grid/cell-selection-style/BlazorClientApp.csproj | 2 +- .../tree-grid/clipboard-operations/BlazorClientApp.csproj | 2 +- .../tree-grid/column-auto-sizing/BlazorClientApp.csproj | 2 +- .../column-collapsible-groups/BlazorClientApp.csproj | 2 +- .../tree-grid/column-data-types/BlazorClientApp.csproj | 2 +- .../column-hiding-toolbar-style/BlazorClientApp.csproj | 2 +- .../tree-grid/column-hiding-toolbar/BlazorClientApp.csproj | 2 +- .../tree-grid/column-moving-options/BlazorClientApp.csproj | 2 +- .../tree-grid/column-moving-styles/BlazorClientApp.csproj | 2 +- .../tree-grid/column-pinning-options/BlazorClientApp.csproj | 2 +- .../column-pinning-right-side/BlazorClientApp.csproj | 2 +- .../tree-grid/column-pinning-styles/BlazorClientApp.csproj | 2 +- .../tree-grid/column-pinning-toolbar/BlazorClientApp.csproj | 2 +- .../grids/tree-grid/column-pinning/BlazorClientApp.csproj | 2 +- .../tree-grid/column-resize-styling/BlazorClientApp.csproj | 2 +- .../grids/tree-grid/column-resizing/BlazorClientApp.csproj | 2 +- .../tree-grid/column-selection-group/BlazorClientApp.csproj | 2 +- .../tree-grid/column-selection-mode/BlazorClientApp.csproj | 2 +- .../tree-grid/column-selection-style/BlazorClientApp.csproj | 2 +- .../column-selection-styles/BlazorClientApp.csproj | 2 +- .../column-sorting-indicators/BlazorClientApp.csproj | 2 +- .../tree-grid/column-sorting-options/BlazorClientApp.csproj | 2 +- .../tree-grid/column-sorting-style/BlazorClientApp.csproj | 2 +- .../conditional-cell-style-1/BlazorClientApp.csproj | 2 +- .../conditional-cell-style-2/BlazorClientApp.csproj | 2 +- .../conditional-row-selectors/BlazorClientApp.csproj | 2 +- .../data-exporting-indicator/BlazorClientApp.csproj | 2 +- .../grids/tree-grid/data-searching/BlazorClientApp.csproj | 2 +- .../tree-grid/data-summaries-custom/BlazorClientApp.csproj | 2 +- .../tree-grid/data-summary-children/BlazorClientApp.csproj | 2 +- .../data-summary-options-styling/BlazorClientApp.csproj | 2 +- .../tree-grid/data-summary-options/BlazorClientApp.csproj | 2 +- .../tree-grid/data-summary-template/BlazorClientApp.csproj | 2 +- .../tree-grid/disabled-summaries/BlazorClientApp.csproj | 2 +- .../grids/tree-grid/editing-columns/BlazorClientApp.csproj | 2 +- .../grids/tree-grid/editing-events/BlazorClientApp.csproj | 2 +- .../tree-grid/editing-lifecycle/BlazorClientApp.csproj | 2 +- .../grids/tree-grid/editing-style/BlazorClientApp.csproj | 2 +- .../grids/tree-grid/excel-exporting/BlazorClientApp.csproj | 2 +- .../excel-style-filtering-sample-1/BlazorClientApp.csproj | 2 +- .../excel-style-filtering-sample-2/BlazorClientApp.csproj | 2 +- .../excel-style-filtering-sample-3/BlazorClientApp.csproj | 2 +- .../excel-style-filtering-style/BlazorClientApp.csproj | 2 +- .../tree-grid/filtering-options/BlazorClientApp.csproj | 2 +- .../grids/tree-grid/filtering-style/BlazorClientApp.csproj | 2 +- samples/grids/tree-grid/finjs/BlazorClientApp.csproj | 2 +- .../keyboard-custom-navigation/BlazorClientApp.csproj | 2 +- .../tree-grid/layout-display-density/BlazorClientApp.csproj | 2 +- .../multi-cell-selection-mode/BlazorClientApp.csproj | 2 +- .../multi-column-headers-export/BlazorClientApp.csproj | 2 +- .../multi-column-headers-overview/BlazorClientApp.csproj | 2 +- .../multi-column-headers-styling/BlazorClientApp.csproj | 2 +- .../multi-column-headers-template/BlazorClientApp.csproj | 2 +- .../grids/tree-grid/overview-styling/BlazorClientApp.csproj | 2 +- samples/grids/tree-grid/overview/BlazorClientApp.csproj | 2 +- samples/grids/tree-grid/row-adding/BlazorClientApp.csproj | 2 +- samples/grids/tree-grid/row-classes/BlazorClientApp.csproj | 2 +- .../grids/tree-grid/row-drag-base/BlazorClientApp.csproj | 2 +- .../tree-grid/row-editing-options/BlazorClientApp.csproj | 2 +- .../tree-grid/row-editing-style/BlazorClientApp.csproj | 2 +- .../grids/tree-grid/row-paging-basic/BlazorClientApp.csproj | 2 +- .../tree-grid/row-paging-options/BlazorClientApp.csproj | 2 +- .../grids/tree-grid/row-paging-style/BlazorClientApp.csproj | 2 +- .../row-pinning-extra-column/BlazorClientApp.csproj | 2 +- .../tree-grid/row-pinning-options/BlazorClientApp.csproj | 2 +- .../tree-grid/row-pinning-style/BlazorClientApp.csproj | 2 +- samples/grids/tree-grid/row-reorder/BlazorClientApp.csproj | 2 +- .../tree-grid/row-selection-mode/BlazorClientApp.csproj | 2 +- .../row-selection-template-excel/BlazorClientApp.csproj | 2 +- .../row-selection-template-numbers/BlazorClientApp.csproj | 2 +- samples/grids/tree-grid/row-styles/BlazorClientApp.csproj | 2 +- .../state-persistence-about/BlazorClientApp.csproj | 2 +- .../tree-grid/state-persistence-main/BlazorClientApp.csproj | 2 +- .../grids/tree-grid/toolbar-sample-1/BlazorClientApp.csproj | 2 +- .../grids/tree-grid/toolbar-sample-2/BlazorClientApp.csproj | 2 +- .../grids/tree-grid/toolbar-sample-3/BlazorClientApp.csproj | 2 +- .../grids/tree-grid/toolbar-sample-4/BlazorClientApp.csproj | 2 +- .../grids/tree-grid/toolbar-style/BlazorClientApp.csproj | 2 +- .../using-primary-foreign-keys/BlazorClientApp.csproj | 2 +- samples/grids/tree/basic-example/BlazorClientApp.csproj | 2 +- samples/inputs/badge/outlined/BlazorClientApp.csproj | 2 +- samples/inputs/badge/shape/BlazorClientApp.csproj | 2 +- samples/inputs/badge/variants/BlazorClientApp.csproj | 2 +- .../inputs/button-group/alignment/BlazorClientApp.csproj | 2 +- samples/inputs/button-group/overview/BlazorClientApp.csproj | 2 +- .../inputs/button-group/selection/BlazorClientApp.csproj | 2 +- samples/inputs/button-group/size/BlazorClientApp.csproj | 2 +- samples/inputs/button-group/styling/BlazorClientApp.csproj | 2 +- samples/inputs/button/contained/BlazorClientApp.csproj | 2 +- samples/inputs/button/download/BlazorClientApp.csproj | 2 +- samples/inputs/button/fab/BlazorClientApp.csproj | 2 +- samples/inputs/button/flat/BlazorClientApp.csproj | 2 +- samples/inputs/button/outlined/BlazorClientApp.csproj | 2 +- samples/inputs/button/overview/BlazorClientApp.csproj | 2 +- samples/inputs/button/size/BlazorClientApp.csproj | 2 +- samples/inputs/button/styling/BlazorClientApp.csproj | 2 +- samples/inputs/checkbox/checking/BlazorClientApp.csproj | 2 +- samples/inputs/checkbox/disabled/BlazorClientApp.csproj | 2 +- .../inputs/checkbox/indeterminate/BlazorClientApp.csproj | 2 +- samples/inputs/checkbox/label/BlazorClientApp.csproj | 2 +- samples/inputs/checkbox/overview/BlazorClientApp.csproj | 2 +- samples/inputs/chip/multiple/BlazorClientApp.csproj | 2 +- samples/inputs/chip/overview/BlazorClientApp.csproj | 2 +- samples/inputs/chip/size/BlazorClientApp.csproj | 2 +- samples/inputs/chip/styling/BlazorClientApp.csproj | 2 +- samples/inputs/chip/variants/BlazorClientApp.csproj | 2 +- .../dynamic/BlazorClientApp.csproj | 2 +- .../indeterminate/BlazorClientApp.csproj | 2 +- .../simple/BlazorClientApp.csproj | 2 +- .../styling/BlazorClientApp.csproj | 2 +- samples/inputs/color-editor/overview/BlazorClientApp.csproj | 2 +- samples/inputs/combo/features/BlazorClientApp.csproj | 2 +- samples/inputs/combo/overview/BlazorClientApp.csproj | 2 +- samples/inputs/combo/selection/BlazorClientApp.csproj | 2 +- samples/inputs/combo/simplified/BlazorClientApp.csproj | 2 +- samples/inputs/combo/styling/BlazorClientApp.csproj | 2 +- samples/inputs/combo/templates/BlazorClientApp.csproj | 2 +- .../input-format-display-format/BlazorClientApp.csproj | 2 +- .../date-time-input/min-max-value/BlazorClientApp.csproj | 2 +- .../inputs/date-time-input/overview/BlazorClientApp.csproj | 2 +- .../date-time-input/step-up-down/BlazorClientApp.csproj | 2 +- samples/inputs/dropdown/group/BlazorClientApp.csproj | 2 +- samples/inputs/dropdown/header/BlazorClientApp.csproj | 2 +- samples/inputs/dropdown/item/BlazorClientApp.csproj | 2 +- samples/inputs/dropdown/overview/BlazorClientApp.csproj | 2 +- samples/inputs/dropdown/position/BlazorClientApp.csproj | 2 +- samples/inputs/dropdown/styling/BlazorClientApp.csproj | 2 +- samples/inputs/dropdown/target/BlazorClientApp.csproj | 2 +- samples/inputs/icon-button/size/BlazorClientApp.csproj | 2 +- samples/inputs/icon-button/styling/BlazorClientApp.csproj | 2 +- samples/inputs/icon-button/variant/BlazorClientApp.csproj | 2 +- samples/inputs/input/binding/BlazorClientApp.csproj | 2 +- samples/inputs/input/helper-text/BlazorClientApp.csproj | 2 +- samples/inputs/input/overview/BlazorClientApp.csproj | 2 +- samples/inputs/input/prefix-suffix/BlazorClientApp.csproj | 2 +- samples/inputs/input/size/BlazorClientApp.csproj | 2 +- samples/inputs/input/styling/BlazorClientApp.csproj | 2 +- .../dynamic/BlazorClientApp.csproj | 2 +- .../linear-progress-indicator/simple/BlazorClientApp.csproj | 2 +- .../striped/BlazorClientApp.csproj | 2 +- .../styling/BlazorClientApp.csproj | 2 +- .../linear-progress-indicator/types/BlazorClientApp.csproj | 2 +- samples/inputs/radio/alignment/BlazorClientApp.csproj | 2 +- samples/inputs/radio/disabled/BlazorClientApp.csproj | 2 +- samples/inputs/radio/group/BlazorClientApp.csproj | 2 +- samples/inputs/radio/invalid/BlazorClientApp.csproj | 2 +- samples/inputs/radio/label/BlazorClientApp.csproj | 2 +- samples/inputs/radio/styling/BlazorClientApp.csproj | 2 +- samples/inputs/rating/basic/BlazorClientApp.csproj | 2 +- samples/inputs/rating/custom/BlazorClientApp.csproj | 2 +- samples/inputs/rating/empty/BlazorClientApp.csproj | 2 +- .../inputs/rating/single-selection/BlazorClientApp.csproj | 2 +- samples/inputs/rating/styling/BlazorClientApp.csproj | 2 +- samples/inputs/ripple/button/BlazorClientApp.csproj | 2 +- samples/inputs/ripple/color/BlazorClientApp.csproj | 2 +- samples/inputs/select/group/BlazorClientApp.csproj | 2 +- samples/inputs/select/header/BlazorClientApp.csproj | 2 +- samples/inputs/select/item/BlazorClientApp.csproj | 2 +- samples/inputs/select/overview/BlazorClientApp.csproj | 2 +- samples/inputs/select/styling/BlazorClientApp.csproj | 2 +- samples/inputs/slider/constraints/BlazorClientApp.csproj | 2 +- samples/inputs/slider/disabled/BlazorClientApp.csproj | 2 +- samples/inputs/slider/discrete/BlazorClientApp.csproj | 2 +- samples/inputs/slider/labels/BlazorClientApp.csproj | 2 +- samples/inputs/slider/overview/BlazorClientApp.csproj | 2 +- samples/inputs/slider/styling/BlazorClientApp.csproj | 2 +- samples/inputs/slider/tick-labels/BlazorClientApp.csproj | 2 +- samples/inputs/slider/ticks/BlazorClientApp.csproj | 2 +- samples/inputs/slider/value-format/BlazorClientApp.csproj | 2 +- samples/inputs/slider/value/BlazorClientApp.csproj | 2 +- samples/inputs/switches/checking/BlazorClientApp.csproj | 2 +- samples/inputs/switches/disabled/BlazorClientApp.csproj | 2 +- samples/inputs/switches/label/BlazorClientApp.csproj | 2 +- samples/inputs/switches/overview/BlazorClientApp.csproj | 2 +- .../inputs/textarea/form-integration/BlazorClientApp.csproj | 2 +- samples/inputs/textarea/overview/BlazorClientApp.csproj | 2 +- samples/inputs/textarea/resize/BlazorClientApp.csproj | 2 +- samples/inputs/textarea/slots/BlazorClientApp.csproj | 2 +- samples/inputs/textarea/styling/BlazorClientApp.csproj | 2 +- .../layouts/accordion/customization/BlazorClientApp.csproj | 2 +- .../accordion/nested-scenario/BlazorClientApp.csproj | 2 +- samples/layouts/accordion/overview/BlazorClientApp.csproj | 2 +- samples/layouts/avatar/icon/BlazorClientApp.csproj | 2 +- samples/layouts/avatar/image/BlazorClientApp.csproj | 2 +- samples/layouts/avatar/initials/BlazorClientApp.csproj | 2 +- samples/layouts/avatar/shape/BlazorClientApp.csproj | 2 +- samples/layouts/avatar/size/BlazorClientApp.csproj | 2 +- samples/layouts/card/horizontal/BlazorClientApp.csproj | 2 +- samples/layouts/card/overview/BlazorClientApp.csproj | 2 +- samples/layouts/card/semi-horizontal/BlazorClientApp.csproj | 2 +- samples/layouts/card/styling/BlazorClientApp.csproj | 2 +- samples/layouts/carousel/animations/BlazorClientApp.csproj | 2 +- samples/layouts/carousel/components/BlazorClientApp.csproj | 2 +- samples/layouts/carousel/overview/BlazorClientApp.csproj | 2 +- samples/layouts/carousel/thumbnail/BlazorClientApp.csproj | 2 +- samples/layouts/divider/dashed/BlazorClientApp.csproj | 2 +- samples/layouts/divider/middle/BlazorClientApp.csproj | 2 +- samples/layouts/divider/overview/BlazorClientApp.csproj | 2 +- samples/layouts/divider/select/BlazorClientApp.csproj | 2 +- samples/layouts/divider/vertical/BlazorClientApp.csproj | 2 +- .../dock-manager/customize-buttons/BlazorClientApp.csproj | 2 +- .../dock-manager/embedding-frames/BlazorClientApp.csproj | 2 +- .../layouts/dock-manager/overview/BlazorClientApp.csproj | 2 +- samples/layouts/dock-manager/styling/BlazorClientApp.csproj | 2 +- .../dock-manager/updating-panes/BlazorClientApp.csproj | 2 +- .../component-customization/BlazorClientApp.csproj | 2 +- .../properties-and-events/BlazorClientApp.csproj | 2 +- .../layouts/expansion-panel/styling/BlazorClientApp.csproj | 2 +- .../layouts/expansion-panel/usage/BlazorClientApp.csproj | 2 +- samples/layouts/icon/sizing/BlazorClientApp.csproj | 2 +- samples/layouts/icon/styling/BlazorClientApp.csproj | 2 +- samples/layouts/stepper/animations/BlazorClientApp.csproj | 2 +- samples/layouts/stepper/linear/BlazorClientApp.csproj | 2 +- samples/layouts/stepper/orientation/BlazorClientApp.csproj | 2 +- samples/layouts/stepper/overview/BlazorClientApp.csproj | 2 +- samples/layouts/stepper/steptypes/BlazorClientApp.csproj | 2 +- samples/layouts/tabs/alignment/BlazorClientApp.csproj | 2 +- samples/layouts/tabs/overview/BlazorClientApp.csproj | 2 +- samples/layouts/tabs/prefix-suffix/BlazorClientApp.csproj | 2 +- samples/layouts/tabs/scrolling/BlazorClientApp.csproj | 2 +- .../maps/geo-map/binding-data-csv/BlazorClientApp.csproj | 2 +- .../geo-map/binding-data-json-points/BlazorClientApp.csproj | 2 +- .../maps/geo-map/binding-data-model/BlazorClientApp.csproj | 2 +- .../geo-map/binding-multiple-shapes/BlazorClientApp.csproj | 2 +- .../geo-map/binding-multiple-sources/BlazorClientApp.csproj | 2 +- .../maps/geo-map/binding-shp-points/BlazorClientApp.csproj | 2 +- .../geo-map/binding-shp-polygons/BlazorClientApp.csproj | 2 +- .../geo-map/binding-shp-polylines/BlazorClientApp.csproj | 2 +- samples/maps/geo-map/custom-tooltips/BlazorClientApp.csproj | 2 +- .../maps/geo-map/display-all-imagery/BlazorClientApp.csproj | 2 +- .../geo-map/display-bing-imagery/BlazorClientApp.csproj | 2 +- .../geo-map/display-esri-imagery/BlazorClientApp.csproj | 2 +- .../geo-map/display-heat-imagery/BlazorClientApp.csproj | 2 +- .../maps/geo-map/display-osm-imagery/BlazorClientApp.csproj | 2 +- samples/maps/geo-map/marker-template/BlazorClientApp.csproj | 2 +- samples/maps/geo-map/marker-type/BlazorClientApp.csproj | 2 +- samples/maps/geo-map/navigation/BlazorClientApp.csproj | 2 +- samples/maps/geo-map/overview/BlazorClientApp.csproj | 2 +- samples/maps/geo-map/shape-styling/BlazorClientApp.csproj | 2 +- samples/maps/geo-map/synchronization/BlazorClientApp.csproj | 2 +- .../geo-map/type-scatter-area-series/BlazorClientApp.csproj | 2 +- .../type-scatter-bubble-series/BlazorClientApp.csproj | 2 +- .../type-scatter-contour-series/BlazorClientApp.csproj | 2 +- .../type-scatter-density-series/BlazorClientApp.csproj | 2 +- .../type-scatter-symbol-series/BlazorClientApp.csproj | 2 +- .../type-shape-polygon-series/BlazorClientApp.csproj | 2 +- .../type-shape-polyline-series/BlazorClientApp.csproj | 2 +- samples/menus/nav-bar/overview/BlazorClientApp.csproj | 2 +- samples/menus/nav-bar/styling/BlazorClientApp.csproj | 2 +- .../nav-drawer/add-drawer-items/BlazorClientApp.csproj | 2 +- samples/menus/nav-drawer/add-mini/BlazorClientApp.csproj | 2 +- .../nav-drawer/add-positions-navbar/BlazorClientApp.csproj | 2 +- samples/menus/nav-drawer/styling/BlazorClientApp.csproj | 2 +- .../banner/banner-advanced-sample/BlazorClientApp.csproj | 2 +- .../banner/banner-sample-1/BlazorClientApp.csproj | 2 +- .../banner/banner-sample-2/BlazorClientApp.csproj | 2 +- .../banner/banner-styling/BlazorClientApp.csproj | 2 +- .../dialog/closing-variations/BlazorClientApp.csproj | 2 +- samples/notifications/dialog/form/BlazorClientApp.csproj | 2 +- .../notifications/dialog/overview/BlazorClientApp.csproj | 2 +- samples/notifications/dialog/styling/BlazorClientApp.csproj | 2 +- .../snackbar/action-text/BlazorClientApp.csproj | 2 +- .../snackbar/display-time/BlazorClientApp.csproj | 2 +- .../notifications/snackbar/overview/BlazorClientApp.csproj | 2 +- .../notifications/snackbar/styling/BlazorClientApp.csproj | 2 +- samples/notifications/toast/overview/BlazorClientApp.csproj | 2 +- .../notifications/toast/properties/BlazorClientApp.csproj | 2 +- samples/notifications/toast/styling/BlazorClientApp.csproj | 2 +- .../calendar/disabled-dates/BlazorClientApp.csproj | 2 +- .../scheduling/calendar/formatting/BlazorClientApp.csproj | 2 +- samples/scheduling/calendar/header/BlazorClientApp.csproj | 2 +- .../calendar/multiple-months/BlazorClientApp.csproj | 2 +- .../calendar/multiple-selection/BlazorClientApp.csproj | 2 +- samples/scheduling/calendar/overview/BlazorClientApp.csproj | 2 +- .../calendar/range-selection/BlazorClientApp.csproj | 2 +- samples/scheduling/calendar/size/BlazorClientApp.csproj | 2 +- .../calendar/special-dates/BlazorClientApp.csproj | 2 +- samples/scheduling/calendar/styling/BlazorClientApp.csproj | 2 +- .../scheduling/calendar/week-numbers/BlazorClientApp.csproj | 2 +- .../date-picker/dialog-mode/BlazorClientApp.csproj | 2 +- samples/scheduling/date-picker/form/BlazorClientApp.csproj | 2 +- .../scheduling/date-picker/format/BlazorClientApp.csproj | 2 +- .../scheduling/date-picker/overview/BlazorClientApp.csproj | 2 +- .../scheduling/date-picker/styling/BlazorClientApp.csproj | 2 +- 874 files changed, 889 insertions(+), 889 deletions(-) diff --git a/azure-pipelines/build-pipeline-client.yml b/azure-pipelines/build-pipeline-client.yml index 0c8a03fa98..8e1367dff1 100644 --- a/azure-pipelines/build-pipeline-client.yml +++ b/azure-pipelines/build-pipeline-client.yml @@ -38,7 +38,7 @@ stages: - template: templates/build-steps-template.yml parameters: - igVersion: '24.2.111' + igVersion: '25.1.17' igNuGetFeedUrl: $(IG_Nuget_Feed_URL) projectToBuild: Client isVerbose: ${{ parameters.isVerbose }} diff --git a/azure-pipelines/build-pipeline-server.yml b/azure-pipelines/build-pipeline-server.yml index dba8f9e878..c827b89400 100644 --- a/azure-pipelines/build-pipeline-server.yml +++ b/azure-pipelines/build-pipeline-server.yml @@ -37,7 +37,7 @@ stages: - template: templates/build-steps-template.yml parameters: - igVersion: '24.2.111' + igVersion: '25.1.17' igNuGetFeedUrl: $(IG_Nuget_Feed_URL) projectToBuild: Server isVerbose: ${{ parameters.isVerbose }} diff --git a/browser/IgBlazorSamples.Client/IgBlazorSamples.Client.csproj b/browser/IgBlazorSamples.Client/IgBlazorSamples.Client.csproj index 86418f1c37..85c15c8fd2 100644 --- a/browser/IgBlazorSamples.Client/IgBlazorSamples.Client.csproj +++ b/browser/IgBlazorSamples.Client/IgBlazorSamples.Client.csproj @@ -48,9 +48,9 @@ - - - + + + diff --git a/browser/IgBlazorSamples.Gulp/tasks/gulp-samples.js b/browser/IgBlazorSamples.Gulp/tasks/gulp-samples.js index b3d242192a..3832ff24a4 100644 --- a/browser/IgBlazorSamples.Gulp/tasks/gulp-samples.js +++ b/browser/IgBlazorSamples.Gulp/tasks/gulp-samples.js @@ -604,9 +604,9 @@ function updateIG(cb) { let packageUpgrades = [ // update version of IG packages and change to Trial or non-trial - { version: "24.2.111", name: "IgniteUI.Blazor" }, - { version: "24.2.111", name: "IgniteUI.Blazor.Documents.Core" }, - { version: "24.2.111", name: "IgniteUI.Blazor.Documents.Excel" }, + { version: "25.1.17", name: "IgniteUI.Blazor" }, + { version: "25.1.17", name: "IgniteUI.Blazor.Documents.Core" }, + { version: "25.1.17", name: "IgniteUI.Blazor.Documents.Excel" }, // these IG packages are sometimes updated: { version: "9.0.0", name: "Microsoft.AspNetCore.Components" }, { version: "9.0.0", name: "Microsoft.AspNetCore.Components.Web" }, diff --git a/browser/IgBlazorSamples.Server/IgBlazorSamples.Server.csproj b/browser/IgBlazorSamples.Server/IgBlazorSamples.Server.csproj index 4aa828363f..013ae6d454 100644 --- a/browser/IgBlazorSamples.Server/IgBlazorSamples.Server.csproj +++ b/browser/IgBlazorSamples.Server/IgBlazorSamples.Server.csproj @@ -30,9 +30,9 @@ - - - + + + diff --git a/samples/charts/category-chart/annotations-all/BlazorClientApp.csproj b/samples/charts/category-chart/annotations-all/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/annotations-all/BlazorClientApp.csproj +++ b/samples/charts/category-chart/annotations-all/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/annotations-callouts/BlazorClientApp.csproj b/samples/charts/category-chart/annotations-callouts/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/annotations-callouts/BlazorClientApp.csproj +++ b/samples/charts/category-chart/annotations-callouts/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/annotations-crosshairs/BlazorClientApp.csproj b/samples/charts/category-chart/annotations-crosshairs/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/annotations-crosshairs/BlazorClientApp.csproj +++ b/samples/charts/category-chart/annotations-crosshairs/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/annotations-custom/BlazorClientApp.csproj b/samples/charts/category-chart/annotations-custom/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/annotations-custom/BlazorClientApp.csproj +++ b/samples/charts/category-chart/annotations-custom/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/annotations-final-value/BlazorClientApp.csproj b/samples/charts/category-chart/annotations-final-value/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/annotations-final-value/BlazorClientApp.csproj +++ b/samples/charts/category-chart/annotations-final-value/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/annotations-highlighting/BlazorClientApp.csproj b/samples/charts/category-chart/annotations-highlighting/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/annotations-highlighting/BlazorClientApp.csproj +++ b/samples/charts/category-chart/annotations-highlighting/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/annotations/BlazorClientApp.csproj b/samples/charts/category-chart/annotations/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/annotations/BlazorClientApp.csproj +++ b/samples/charts/category-chart/annotations/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/area-chart-multiple-sources/BlazorClientApp.csproj b/samples/charts/category-chart/area-chart-multiple-sources/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/BlazorClientApp.csproj +++ b/samples/charts/category-chart/area-chart-multiple-sources/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/area-chart-single-source/BlazorClientApp.csproj b/samples/charts/category-chart/area-chart-single-source/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/area-chart-single-source/BlazorClientApp.csproj +++ b/samples/charts/category-chart/area-chart-single-source/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/area-chart-styling/BlazorClientApp.csproj b/samples/charts/category-chart/area-chart-styling/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/area-chart-styling/BlazorClientApp.csproj +++ b/samples/charts/category-chart/area-chart-styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/axis-gap/BlazorClientApp.csproj b/samples/charts/category-chart/axis-gap/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/axis-gap/BlazorClientApp.csproj +++ b/samples/charts/category-chart/axis-gap/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/axis-gridlines/BlazorClientApp.csproj b/samples/charts/category-chart/axis-gridlines/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/axis-gridlines/BlazorClientApp.csproj +++ b/samples/charts/category-chart/axis-gridlines/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/axis-inverted/BlazorClientApp.csproj b/samples/charts/category-chart/axis-inverted/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/axis-inverted/BlazorClientApp.csproj +++ b/samples/charts/category-chart/axis-inverted/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/axis-labels/BlazorClientApp.csproj b/samples/charts/category-chart/axis-labels/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/axis-labels/BlazorClientApp.csproj +++ b/samples/charts/category-chart/axis-labels/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/axis-locations/BlazorClientApp.csproj b/samples/charts/category-chart/axis-locations/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/axis-locations/BlazorClientApp.csproj +++ b/samples/charts/category-chart/axis-locations/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/axis-options/BlazorClientApp.csproj b/samples/charts/category-chart/axis-options/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/axis-options/BlazorClientApp.csproj +++ b/samples/charts/category-chart/axis-options/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/axis-overlap/BlazorClientApp.csproj b/samples/charts/category-chart/axis-overlap/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/axis-overlap/BlazorClientApp.csproj +++ b/samples/charts/category-chart/axis-overlap/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/axis-range/BlazorClientApp.csproj b/samples/charts/category-chart/axis-range/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/axis-range/BlazorClientApp.csproj +++ b/samples/charts/category-chart/axis-range/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/axis-tickmarks/BlazorClientApp.csproj b/samples/charts/category-chart/axis-tickmarks/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/axis-tickmarks/BlazorClientApp.csproj +++ b/samples/charts/category-chart/axis-tickmarks/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/axis-titles/BlazorClientApp.csproj b/samples/charts/category-chart/axis-titles/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/axis-titles/BlazorClientApp.csproj +++ b/samples/charts/category-chart/axis-titles/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/chart-highlight-filter/BlazorClientApp.csproj b/samples/charts/category-chart/chart-highlight-filter/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/chart-highlight-filter/BlazorClientApp.csproj +++ b/samples/charts/category-chart/chart-highlight-filter/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/column-chart-multiple-sources/BlazorClientApp.csproj b/samples/charts/category-chart/column-chart-multiple-sources/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/BlazorClientApp.csproj +++ b/samples/charts/category-chart/column-chart-multiple-sources/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/column-chart-single-source/BlazorClientApp.csproj b/samples/charts/category-chart/column-chart-single-source/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/column-chart-single-source/BlazorClientApp.csproj +++ b/samples/charts/category-chart/column-chart-single-source/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/column-chart-styling/BlazorClientApp.csproj b/samples/charts/category-chart/column-chart-styling/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/column-chart-styling/BlazorClientApp.csproj +++ b/samples/charts/category-chart/column-chart-styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/column-chart-with-highlighting/BlazorClientApp.csproj b/samples/charts/category-chart/column-chart-with-highlighting/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/BlazorClientApp.csproj +++ b/samples/charts/category-chart/column-chart-with-highlighting/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/column-chart-with-tooltips/BlazorClientApp.csproj b/samples/charts/category-chart/column-chart-with-tooltips/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/BlazorClientApp.csproj +++ b/samples/charts/category-chart/column-chart-with-tooltips/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/custom-selection/BlazorClientApp.csproj b/samples/charts/category-chart/custom-selection/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/custom-selection/BlazorClientApp.csproj +++ b/samples/charts/category-chart/custom-selection/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/data-aggregations/BlazorClientApp.csproj b/samples/charts/category-chart/data-aggregations/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/data-aggregations/BlazorClientApp.csproj +++ b/samples/charts/category-chart/data-aggregations/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/data-filter/BlazorClientApp.csproj b/samples/charts/category-chart/data-filter/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/data-filter/BlazorClientApp.csproj +++ b/samples/charts/category-chart/data-filter/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/BlazorClientApp.csproj b/samples/charts/category-chart/data-legend-formatting-decimals/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/BlazorClientApp.csproj +++ b/samples/charts/category-chart/data-legend-formatting-decimals/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/data-legend/BlazorClientApp.csproj b/samples/charts/category-chart/data-legend/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/data-legend/BlazorClientApp.csproj +++ b/samples/charts/category-chart/data-legend/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/BlazorClientApp.csproj b/samples/charts/category-chart/data-tooltip-formatting-decimals/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/BlazorClientApp.csproj +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/data-tooltip-positioning/BlazorClientApp.csproj b/samples/charts/category-chart/data-tooltip-positioning/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/BlazorClientApp.csproj +++ b/samples/charts/category-chart/data-tooltip-positioning/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/data-tooltip/BlazorClientApp.csproj b/samples/charts/category-chart/data-tooltip/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/data-tooltip/BlazorClientApp.csproj +++ b/samples/charts/category-chart/data-tooltip/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/format-specifiers/BlazorClientApp.csproj b/samples/charts/category-chart/format-specifiers/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/format-specifiers/BlazorClientApp.csproj +++ b/samples/charts/category-chart/format-specifiers/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/high-frequency/BlazorClientApp.csproj b/samples/charts/category-chart/high-frequency/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/high-frequency/BlazorClientApp.csproj +++ b/samples/charts/category-chart/high-frequency/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/high-volume/BlazorClientApp.csproj b/samples/charts/category-chart/high-volume/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/high-volume/BlazorClientApp.csproj +++ b/samples/charts/category-chart/high-volume/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/highlighting-behavior/BlazorClientApp.csproj b/samples/charts/category-chart/highlighting-behavior/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/highlighting-behavior/BlazorClientApp.csproj +++ b/samples/charts/category-chart/highlighting-behavior/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/highlighting-mode/BlazorClientApp.csproj b/samples/charts/category-chart/highlighting-mode/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/highlighting-mode/BlazorClientApp.csproj +++ b/samples/charts/category-chart/highlighting-mode/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/highlighting/BlazorClientApp.csproj b/samples/charts/category-chart/highlighting/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/highlighting/BlazorClientApp.csproj +++ b/samples/charts/category-chart/highlighting/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/legend-highlighting/BlazorClientApp.csproj b/samples/charts/category-chart/legend-highlighting/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/legend-highlighting/BlazorClientApp.csproj +++ b/samples/charts/category-chart/legend-highlighting/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/line-chart-multiple-sources/BlazorClientApp.csproj b/samples/charts/category-chart/line-chart-multiple-sources/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/BlazorClientApp.csproj +++ b/samples/charts/category-chart/line-chart-multiple-sources/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/line-chart-single-source/BlazorClientApp.csproj b/samples/charts/category-chart/line-chart-single-source/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/line-chart-single-source/BlazorClientApp.csproj +++ b/samples/charts/category-chart/line-chart-single-source/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/line-chart-styling/BlazorClientApp.csproj b/samples/charts/category-chart/line-chart-styling/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/line-chart-styling/BlazorClientApp.csproj +++ b/samples/charts/category-chart/line-chart-styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/line-chart-with-animations/BlazorClientApp.csproj b/samples/charts/category-chart/line-chart-with-animations/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/line-chart-with-animations/BlazorClientApp.csproj +++ b/samples/charts/category-chart/line-chart-with-animations/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/line-chart-with-annotations/BlazorClientApp.csproj b/samples/charts/category-chart/line-chart-with-annotations/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/BlazorClientApp.csproj +++ b/samples/charts/category-chart/line-chart-with-annotations/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/marker-options/BlazorClientApp.csproj b/samples/charts/category-chart/marker-options/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/marker-options/BlazorClientApp.csproj +++ b/samples/charts/category-chart/marker-options/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/marker-templates/BlazorClientApp.csproj b/samples/charts/category-chart/marker-templates/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/marker-templates/BlazorClientApp.csproj +++ b/samples/charts/category-chart/marker-templates/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/overview/BlazorClientApp.csproj b/samples/charts/category-chart/overview/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/overview/BlazorClientApp.csproj +++ b/samples/charts/category-chart/overview/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/point-chart-multiple-sources/BlazorClientApp.csproj b/samples/charts/category-chart/point-chart-multiple-sources/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/BlazorClientApp.csproj +++ b/samples/charts/category-chart/point-chart-multiple-sources/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/point-chart-single-source/BlazorClientApp.csproj b/samples/charts/category-chart/point-chart-single-source/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/point-chart-single-source/BlazorClientApp.csproj +++ b/samples/charts/category-chart/point-chart-single-source/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/point-chart-styling/BlazorClientApp.csproj b/samples/charts/category-chart/point-chart-styling/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/point-chart-styling/BlazorClientApp.csproj +++ b/samples/charts/category-chart/point-chart-styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/selection-matcher/BlazorClientApp.csproj b/samples/charts/category-chart/selection-matcher/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/selection-matcher/BlazorClientApp.csproj +++ b/samples/charts/category-chart/selection-matcher/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/selection-modes/BlazorClientApp.csproj b/samples/charts/category-chart/selection-modes/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/selection-modes/BlazorClientApp.csproj +++ b/samples/charts/category-chart/selection-modes/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/selection-multiple-modes/BlazorClientApp.csproj b/samples/charts/category-chart/selection-multiple-modes/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/selection-multiple-modes/BlazorClientApp.csproj +++ b/samples/charts/category-chart/selection-multiple-modes/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/spline-area-multiple-sources/BlazorClientApp.csproj b/samples/charts/category-chart/spline-area-multiple-sources/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/BlazorClientApp.csproj +++ b/samples/charts/category-chart/spline-area-multiple-sources/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/spline-area-single-source/BlazorClientApp.csproj b/samples/charts/category-chart/spline-area-single-source/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/spline-area-single-source/BlazorClientApp.csproj +++ b/samples/charts/category-chart/spline-area-single-source/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/spline-area-styling/BlazorClientApp.csproj b/samples/charts/category-chart/spline-area-styling/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/spline-area-styling/BlazorClientApp.csproj +++ b/samples/charts/category-chart/spline-area-styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/spline-multiple-sources/BlazorClientApp.csproj b/samples/charts/category-chart/spline-multiple-sources/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/spline-multiple-sources/BlazorClientApp.csproj +++ b/samples/charts/category-chart/spline-multiple-sources/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/spline-single-source/BlazorClientApp.csproj b/samples/charts/category-chart/spline-single-source/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/spline-single-source/BlazorClientApp.csproj +++ b/samples/charts/category-chart/spline-single-source/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/spline-styling/BlazorClientApp.csproj b/samples/charts/category-chart/spline-styling/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/spline-styling/BlazorClientApp.csproj +++ b/samples/charts/category-chart/spline-styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/stack-columns/BlazorClientApp.csproj b/samples/charts/category-chart/stack-columns/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/stack-columns/BlazorClientApp.csproj +++ b/samples/charts/category-chart/stack-columns/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/step-area-multiple-sources/BlazorClientApp.csproj b/samples/charts/category-chart/step-area-multiple-sources/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/BlazorClientApp.csproj +++ b/samples/charts/category-chart/step-area-multiple-sources/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/step-area-single-source/BlazorClientApp.csproj b/samples/charts/category-chart/step-area-single-source/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/step-area-single-source/BlazorClientApp.csproj +++ b/samples/charts/category-chart/step-area-single-source/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/step-area-styling/BlazorClientApp.csproj b/samples/charts/category-chart/step-area-styling/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/step-area-styling/BlazorClientApp.csproj +++ b/samples/charts/category-chart/step-area-styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/step-line-multiple-sources/BlazorClientApp.csproj b/samples/charts/category-chart/step-line-multiple-sources/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/BlazorClientApp.csproj +++ b/samples/charts/category-chart/step-line-multiple-sources/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/step-line-single-source/BlazorClientApp.csproj b/samples/charts/category-chart/step-line-single-source/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/step-line-single-source/BlazorClientApp.csproj +++ b/samples/charts/category-chart/step-line-single-source/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/step-line-styling/BlazorClientApp.csproj b/samples/charts/category-chart/step-line-styling/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/step-line-styling/BlazorClientApp.csproj +++ b/samples/charts/category-chart/step-line-styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/tooltip-template/BlazorClientApp.csproj b/samples/charts/category-chart/tooltip-template/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/tooltip-template/BlazorClientApp.csproj +++ b/samples/charts/category-chart/tooltip-template/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/tooltip-types/BlazorClientApp.csproj b/samples/charts/category-chart/tooltip-types/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/tooltip-types/BlazorClientApp.csproj +++ b/samples/charts/category-chart/tooltip-types/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/trendline/BlazorClientApp.csproj b/samples/charts/category-chart/trendline/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/trendline/BlazorClientApp.csproj +++ b/samples/charts/category-chart/trendline/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/category-chart/value-lines/BlazorClientApp.csproj b/samples/charts/category-chart/value-lines/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/category-chart/value-lines/BlazorClientApp.csproj +++ b/samples/charts/category-chart/value-lines/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/dashboard-tile/chart-dashboard/BlazorClientApp.csproj b/samples/charts/dashboard-tile/chart-dashboard/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/dashboard-tile/chart-dashboard/BlazorClientApp.csproj +++ b/samples/charts/dashboard-tile/chart-dashboard/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/dashboard-tile/financial-dashboard/BlazorClientApp.csproj b/samples/charts/dashboard-tile/financial-dashboard/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/dashboard-tile/financial-dashboard/BlazorClientApp.csproj +++ b/samples/charts/dashboard-tile/financial-dashboard/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/dashboard-tile/gauge-dashboard/BlazorClientApp.csproj b/samples/charts/dashboard-tile/gauge-dashboard/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/dashboard-tile/gauge-dashboard/BlazorClientApp.csproj +++ b/samples/charts/dashboard-tile/gauge-dashboard/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/dashboard-tile/map-dashboard/BlazorClientApp.csproj b/samples/charts/dashboard-tile/map-dashboard/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/dashboard-tile/map-dashboard/BlazorClientApp.csproj +++ b/samples/charts/dashboard-tile/map-dashboard/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/dashboard-tile/pie-dashboard/BlazorClientApp.csproj b/samples/charts/dashboard-tile/pie-dashboard/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/dashboard-tile/pie-dashboard/BlazorClientApp.csproj +++ b/samples/charts/dashboard-tile/pie-dashboard/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/annotations-custom/BlazorClientApp.csproj b/samples/charts/data-chart/annotations-custom/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/annotations-custom/BlazorClientApp.csproj +++ b/samples/charts/data-chart/annotations-custom/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/BlazorClientApp.csproj b/samples/charts/data-chart/axis-annotations-corner-radius/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/BlazorClientApp.csproj +++ b/samples/charts/data-chart/axis-annotations-corner-radius/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/axis-annotations/BlazorClientApp.csproj b/samples/charts/data-chart/axis-annotations/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/axis-annotations/BlazorClientApp.csproj +++ b/samples/charts/data-chart/axis-annotations/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/axis-crossing/BlazorClientApp.csproj b/samples/charts/data-chart/axis-crossing/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/axis-crossing/BlazorClientApp.csproj +++ b/samples/charts/data-chart/axis-crossing/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/axis-label-rotation/BlazorClientApp.csproj b/samples/charts/data-chart/axis-label-rotation/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/axis-label-rotation/BlazorClientApp.csproj +++ b/samples/charts/data-chart/axis-label-rotation/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/axis-locations/BlazorClientApp.csproj b/samples/charts/data-chart/axis-locations/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/charts/data-chart/axis-locations/BlazorClientApp.csproj +++ b/samples/charts/data-chart/axis-locations/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/axis-min-max-gap/BlazorClientApp.csproj b/samples/charts/data-chart/axis-min-max-gap/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/axis-min-max-gap/BlazorClientApp.csproj +++ b/samples/charts/data-chart/axis-min-max-gap/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/axis-scales/BlazorClientApp.csproj b/samples/charts/data-chart/axis-scales/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/axis-scales/BlazorClientApp.csproj +++ b/samples/charts/data-chart/axis-scales/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/axis-settings/BlazorClientApp.csproj b/samples/charts/data-chart/axis-settings/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/axis-settings/BlazorClientApp.csproj +++ b/samples/charts/data-chart/axis-settings/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/axis-sharing/BlazorClientApp.csproj b/samples/charts/data-chart/axis-sharing/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/axis-sharing/BlazorClientApp.csproj +++ b/samples/charts/data-chart/axis-sharing/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/axis-stacking/BlazorClientApp.csproj b/samples/charts/data-chart/axis-stacking/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/axis-stacking/BlazorClientApp.csproj +++ b/samples/charts/data-chart/axis-stacking/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/axis-types/BlazorClientApp.csproj b/samples/charts/data-chart/axis-types/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/axis-types/BlazorClientApp.csproj +++ b/samples/charts/data-chart/axis-types/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/BlazorClientApp.csproj b/samples/charts/data-chart/bar-chart-multiple-sources/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/BlazorClientApp.csproj +++ b/samples/charts/data-chart/bar-chart-multiple-sources/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/bar-chart-overlapping/BlazorClientApp.csproj b/samples/charts/data-chart/bar-chart-overlapping/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/BlazorClientApp.csproj +++ b/samples/charts/data-chart/bar-chart-overlapping/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/bar-chart-single-source/BlazorClientApp.csproj b/samples/charts/data-chart/bar-chart-single-source/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/bar-chart-single-source/BlazorClientApp.csproj +++ b/samples/charts/data-chart/bar-chart-single-source/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/bar-chart-styling/BlazorClientApp.csproj b/samples/charts/data-chart/bar-chart-styling/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/bar-chart-styling/BlazorClientApp.csproj +++ b/samples/charts/data-chart/bar-chart-styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/callout-layer-styling/BlazorClientApp.csproj b/samples/charts/data-chart/callout-layer-styling/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/callout-layer-styling/BlazorClientApp.csproj +++ b/samples/charts/data-chart/callout-layer-styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/category-series/BlazorClientApp.csproj b/samples/charts/data-chart/category-series/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/category-series/BlazorClientApp.csproj +++ b/samples/charts/data-chart/category-series/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/BlazorClientApp.csproj b/samples/charts/data-chart/chart-highlight-filter-datasource/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/BlazorClientApp.csproj +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/BlazorClientApp.csproj b/samples/charts/data-chart/chart-highlight-filter-multiple-series/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/BlazorClientApp.csproj +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/chart-highlight-filter/BlazorClientApp.csproj b/samples/charts/data-chart/chart-highlight-filter/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/chart-highlight-filter/BlazorClientApp.csproj +++ b/samples/charts/data-chart/chart-highlight-filter/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/chart-navigation/BlazorClientApp.csproj b/samples/charts/data-chart/chart-navigation/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/chart-navigation/BlazorClientApp.csproj +++ b/samples/charts/data-chart/chart-navigation/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/chart-overview/BlazorClientApp.csproj b/samples/charts/data-chart/chart-overview/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/chart-overview/BlazorClientApp.csproj +++ b/samples/charts/data-chart/chart-overview/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/chart-performance/BlazorClientApp.csproj b/samples/charts/data-chart/chart-performance/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/chart-performance/BlazorClientApp.csproj +++ b/samples/charts/data-chart/chart-performance/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/chart-synchronization/BlazorClientApp.csproj b/samples/charts/data-chart/chart-synchronization/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/chart-synchronization/BlazorClientApp.csproj +++ b/samples/charts/data-chart/chart-synchronization/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/chart-titles/BlazorClientApp.csproj b/samples/charts/data-chart/chart-titles/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/chart-titles/BlazorClientApp.csproj +++ b/samples/charts/data-chart/chart-titles/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/column-chart-styling/BlazorClientApp.csproj b/samples/charts/data-chart/column-chart-styling/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/column-chart-styling/BlazorClientApp.csproj +++ b/samples/charts/data-chart/column-chart-styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/composite-chart/BlazorClientApp.csproj b/samples/charts/data-chart/composite-chart/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/composite-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/composite-chart/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/crosshair-layer-styling/BlazorClientApp.csproj b/samples/charts/data-chart/crosshair-layer-styling/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/BlazorClientApp.csproj +++ b/samples/charts/data-chart/crosshair-layer-styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/custom-drawing-annotations/BlazorClientApp.csproj b/samples/charts/data-chart/custom-drawing-annotations/BlazorClientApp.csproj index 1f3cc93d3c..08cb3e4071 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/BlazorClientApp.csproj +++ b/samples/charts/data-chart/custom-drawing-annotations/BlazorClientApp.csproj @@ -17,7 +17,7 @@ - + diff --git a/samples/charts/data-chart/custom-editing-data/BlazorClientApp.csproj b/samples/charts/data-chart/custom-editing-data/BlazorClientApp.csproj index 44596d4f22..cb3355b6a1 100644 --- a/samples/charts/data-chart/custom-editing-data/BlazorClientApp.csproj +++ b/samples/charts/data-chart/custom-editing-data/BlazorClientApp.csproj @@ -16,7 +16,7 @@ - + diff --git a/samples/charts/data-chart/dash-array-axes/BlazorClientApp.csproj b/samples/charts/data-chart/dash-array-axes/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/dash-array-axes/BlazorClientApp.csproj +++ b/samples/charts/data-chart/dash-array-axes/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/dash-array-series/BlazorClientApp.csproj b/samples/charts/data-chart/dash-array-series/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/dash-array-series/BlazorClientApp.csproj +++ b/samples/charts/data-chart/dash-array-series/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/dash-array-tickmarks/BlazorClientApp.csproj b/samples/charts/data-chart/dash-array-tickmarks/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/BlazorClientApp.csproj +++ b/samples/charts/data-chart/dash-array-tickmarks/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/dash-array-trendline/BlazorClientApp.csproj b/samples/charts/data-chart/dash-array-trendline/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/dash-array-trendline/BlazorClientApp.csproj +++ b/samples/charts/data-chart/dash-array-trendline/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/BlazorClientApp.csproj b/samples/charts/data-chart/data-legend-grouping-and-highlighting/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/data-legend-grouping-and-highlighting/BlazorClientApp.csproj +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/data-legend-grouping/BlazorClientApp.csproj b/samples/charts/data-chart/data-legend-grouping/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/data-legend-grouping/BlazorClientApp.csproj +++ b/samples/charts/data-chart/data-legend-grouping/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/data-legend-styling/BlazorClientApp.csproj b/samples/charts/data-chart/data-legend-styling/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/data-legend-styling/BlazorClientApp.csproj +++ b/samples/charts/data-chart/data-legend-styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/data-legend/BlazorClientApp.csproj b/samples/charts/data-chart/data-legend/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/data-legend/BlazorClientApp.csproj +++ b/samples/charts/data-chart/data-legend/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/BlazorClientApp.csproj b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/BlazorClientApp.csproj +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/data-tooltip-grouping/BlazorClientApp.csproj b/samples/charts/data-chart/data-tooltip-grouping/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/data-tooltip-grouping/BlazorClientApp.csproj +++ b/samples/charts/data-chart/data-tooltip-grouping/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/data-tooltip-styling/BlazorClientApp.csproj b/samples/charts/data-chart/data-tooltip-styling/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/data-tooltip-styling/BlazorClientApp.csproj +++ b/samples/charts/data-chart/data-tooltip-styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/data-tooltip/BlazorClientApp.csproj b/samples/charts/data-chart/data-tooltip/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/data-tooltip/BlazorClientApp.csproj +++ b/samples/charts/data-chart/data-tooltip/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/final-value-layer-styling/BlazorClientApp.csproj b/samples/charts/data-chart/final-value-layer-styling/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/final-value-layer-styling/BlazorClientApp.csproj +++ b/samples/charts/data-chart/final-value-layer-styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/financial-price-series/BlazorClientApp.csproj b/samples/charts/data-chart/financial-price-series/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/financial-price-series/BlazorClientApp.csproj +++ b/samples/charts/data-chart/financial-price-series/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/financial-series/BlazorClientApp.csproj b/samples/charts/data-chart/financial-series/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/financial-series/BlazorClientApp.csproj +++ b/samples/charts/data-chart/financial-series/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/format-specifiers/BlazorClientApp.csproj b/samples/charts/data-chart/format-specifiers/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/format-specifiers/BlazorClientApp.csproj +++ b/samples/charts/data-chart/format-specifiers/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/gantt-chart/BlazorClientApp.csproj b/samples/charts/data-chart/gantt-chart/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/gantt-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/gantt-chart/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/itemized-bar-chart/BlazorClientApp.csproj b/samples/charts/data-chart/itemized-bar-chart/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/itemized-bar-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/itemized-bar-chart/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/itemized-column-chart/BlazorClientApp.csproj b/samples/charts/data-chart/itemized-column-chart/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/itemized-column-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/itemized-column-chart/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/itemized-stacked-bar-chart/BlazorClientApp.csproj b/samples/charts/data-chart/itemized-stacked-bar-chart/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/itemized-stacked-bar-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/itemized-stacked-bar-chart/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/itemized-stacked-column-chart/BlazorClientApp.csproj b/samples/charts/data-chart/itemized-stacked-column-chart/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/itemized-stacked-column-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/itemized-stacked-column-chart/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/legend-interactions/BlazorClientApp.csproj b/samples/charts/data-chart/legend-interactions/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/legend-interactions/BlazorClientApp.csproj +++ b/samples/charts/data-chart/legend-interactions/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/legends/BlazorClientApp.csproj b/samples/charts/data-chart/legends/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/legends/BlazorClientApp.csproj +++ b/samples/charts/data-chart/legends/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/network-polar-chart/BlazorClientApp.csproj b/samples/charts/data-chart/network-polar-chart/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/network-polar-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/network-polar-chart/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/network-scatter-chart/BlazorClientApp.csproj b/samples/charts/data-chart/network-scatter-chart/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/network-scatter-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/network-scatter-chart/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/polar-area-chart-styling/BlazorClientApp.csproj b/samples/charts/data-chart/polar-area-chart-styling/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/BlazorClientApp.csproj +++ b/samples/charts/data-chart/polar-area-chart-styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/polar-area-chart/BlazorClientApp.csproj b/samples/charts/data-chart/polar-area-chart/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/polar-area-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/polar-area-chart/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/polar-chart-types/BlazorClientApp.csproj b/samples/charts/data-chart/polar-chart-types/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/polar-chart-types/BlazorClientApp.csproj +++ b/samples/charts/data-chart/polar-chart-types/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/polar-line-chart/BlazorClientApp.csproj b/samples/charts/data-chart/polar-line-chart/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/polar-line-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/polar-line-chart/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/polar-scatter-chart/BlazorClientApp.csproj b/samples/charts/data-chart/polar-scatter-chart/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/polar-scatter-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/polar-scatter-chart/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/polar-spline-area-chart/BlazorClientApp.csproj b/samples/charts/data-chart/polar-spline-area-chart/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/polar-spline-area-chart/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/polar-spline-chart/BlazorClientApp.csproj b/samples/charts/data-chart/polar-spline-chart/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/polar-spline-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/polar-spline-chart/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/pyramid-chart/BlazorClientApp.csproj b/samples/charts/data-chart/pyramid-chart/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/pyramid-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/pyramid-chart/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/radial-area-chart-styling/BlazorClientApp.csproj b/samples/charts/data-chart/radial-area-chart-styling/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/BlazorClientApp.csproj +++ b/samples/charts/data-chart/radial-area-chart-styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/radial-area-chart/BlazorClientApp.csproj b/samples/charts/data-chart/radial-area-chart/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/radial-area-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/radial-area-chart/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/radial-chart-types/BlazorClientApp.csproj b/samples/charts/data-chart/radial-chart-types/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/radial-chart-types/BlazorClientApp.csproj +++ b/samples/charts/data-chart/radial-chart-types/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/radial-column-chart-selection/BlazorClientApp.csproj b/samples/charts/data-chart/radial-column-chart-selection/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/radial-column-chart-selection/BlazorClientApp.csproj +++ b/samples/charts/data-chart/radial-column-chart-selection/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/radial-column-chart/BlazorClientApp.csproj b/samples/charts/data-chart/radial-column-chart/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/radial-column-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/radial-column-chart/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/radial-label-mode/BlazorClientApp.csproj b/samples/charts/data-chart/radial-label-mode/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/radial-label-mode/BlazorClientApp.csproj +++ b/samples/charts/data-chart/radial-label-mode/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/radial-line-chart/BlazorClientApp.csproj b/samples/charts/data-chart/radial-line-chart/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/radial-line-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/radial-line-chart/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/radial-pie-chart/BlazorClientApp.csproj b/samples/charts/data-chart/radial-pie-chart/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/radial-pie-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/radial-pie-chart/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/BlazorClientApp.csproj b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/BlazorClientApp.csproj +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/BlazorClientApp.csproj b/samples/charts/data-chart/radial-proportional-radial-angle-axis/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/radial-proportional-radial-angle-axis/BlazorClientApp.csproj +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/range-area-chart/BlazorClientApp.csproj b/samples/charts/data-chart/range-area-chart/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/range-area-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/range-area-chart/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/range-column-chart/BlazorClientApp.csproj b/samples/charts/data-chart/range-column-chart/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/range-column-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/range-column-chart/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/range-series/BlazorClientApp.csproj b/samples/charts/data-chart/range-series/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/range-series/BlazorClientApp.csproj +++ b/samples/charts/data-chart/range-series/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/BlazorClientApp.csproj b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/BlazorClientApp.csproj +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/BlazorClientApp.csproj b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/BlazorClientApp.csproj +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/BlazorClientApp.csproj b/samples/charts/data-chart/scatter-bubble-chart-single-source/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/BlazorClientApp.csproj +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/BlazorClientApp.csproj b/samples/charts/data-chart/scatter-bubble-chart-styling/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/BlazorClientApp.csproj +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/scatter-bubble-chart-tooltip/BlazorClientApp.csproj b/samples/charts/data-chart/scatter-bubble-chart-tooltip/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-tooltip/BlazorClientApp.csproj +++ b/samples/charts/data-chart/scatter-bubble-chart-tooltip/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/scatter-line-chart/BlazorClientApp.csproj b/samples/charts/data-chart/scatter-line-chart/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/scatter-line-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/scatter-line-chart/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/scatter-point-chart/BlazorClientApp.csproj b/samples/charts/data-chart/scatter-point-chart/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/scatter-point-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/scatter-point-chart/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/scatter-series/BlazorClientApp.csproj b/samples/charts/data-chart/scatter-series/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/scatter-series/BlazorClientApp.csproj +++ b/samples/charts/data-chart/scatter-series/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/scatter-spline-chart/BlazorClientApp.csproj b/samples/charts/data-chart/scatter-spline-chart/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/scatter-spline-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/scatter-spline-chart/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/selection-matcher/BlazorClientApp.csproj b/samples/charts/data-chart/selection-matcher/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/selection-matcher/BlazorClientApp.csproj +++ b/samples/charts/data-chart/selection-matcher/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/series-annotations/BlazorClientApp.csproj b/samples/charts/data-chart/series-annotations/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/series-annotations/BlazorClientApp.csproj +++ b/samples/charts/data-chart/series-annotations/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/series-highlighting/BlazorClientApp.csproj b/samples/charts/data-chart/series-highlighting/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/series-highlighting/BlazorClientApp.csproj +++ b/samples/charts/data-chart/series-highlighting/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/series-marker-template/BlazorClientApp.csproj b/samples/charts/data-chart/series-marker-template/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/series-marker-template/BlazorClientApp.csproj +++ b/samples/charts/data-chart/series-marker-template/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/series-markers/BlazorClientApp.csproj b/samples/charts/data-chart/series-markers/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/series-markers/BlazorClientApp.csproj +++ b/samples/charts/data-chart/series-markers/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/series-tooltips/BlazorClientApp.csproj b/samples/charts/data-chart/series-tooltips/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/series-tooltips/BlazorClientApp.csproj +++ b/samples/charts/data-chart/series-tooltips/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/series-trendlines/BlazorClientApp.csproj b/samples/charts/data-chart/series-trendlines/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/series-trendlines/BlazorClientApp.csproj +++ b/samples/charts/data-chart/series-trendlines/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/series-value-overlay/BlazorClientApp.csproj b/samples/charts/data-chart/series-value-overlay/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/series-value-overlay/BlazorClientApp.csproj +++ b/samples/charts/data-chart/series-value-overlay/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/stacked-100-area-chart/BlazorClientApp.csproj b/samples/charts/data-chart/stacked-100-area-chart/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/stacked-100-area-chart/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/stacked-100-bar-chart/BlazorClientApp.csproj b/samples/charts/data-chart/stacked-100-bar-chart/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/stacked-100-bar-chart/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/stacked-100-column-chart/BlazorClientApp.csproj b/samples/charts/data-chart/stacked-100-column-chart/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/stacked-100-column-chart/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/stacked-100-line-chart/BlazorClientApp.csproj b/samples/charts/data-chart/stacked-100-line-chart/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/stacked-100-line-chart/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/BlazorClientApp.csproj b/samples/charts/data-chart/stacked-100-spline-area-chart/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/stacked-100-spline-chart/BlazorClientApp.csproj b/samples/charts/data-chart/stacked-100-spline-chart/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/stacked-100-spline-chart/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/stacked-area-chart/BlazorClientApp.csproj b/samples/charts/data-chart/stacked-area-chart/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/stacked-area-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/stacked-area-chart/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/stacked-bar-chart/BlazorClientApp.csproj b/samples/charts/data-chart/stacked-bar-chart/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/stacked-bar-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/stacked-bar-chart/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/stacked-chart-types/BlazorClientApp.csproj b/samples/charts/data-chart/stacked-chart-types/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/stacked-chart-types/BlazorClientApp.csproj +++ b/samples/charts/data-chart/stacked-chart-types/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/stacked-column-chart/BlazorClientApp.csproj b/samples/charts/data-chart/stacked-column-chart/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/stacked-column-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/stacked-column-chart/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/stacked-line-chart/BlazorClientApp.csproj b/samples/charts/data-chart/stacked-line-chart/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/stacked-line-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/stacked-line-chart/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/stacked-spline-area-chart/BlazorClientApp.csproj b/samples/charts/data-chart/stacked-spline-area-chart/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/stacked-spline-area-chart/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/stacked-spline-chart/BlazorClientApp.csproj b/samples/charts/data-chart/stacked-spline-chart/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/stacked-spline-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/stacked-spline-chart/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/timeline-axis-type/BlazorClientApp.csproj b/samples/charts/data-chart/timeline-axis-type/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/timeline-axis-type/BlazorClientApp.csproj +++ b/samples/charts/data-chart/timeline-axis-type/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/tooltip-template/BlazorClientApp.csproj b/samples/charts/data-chart/tooltip-template/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/tooltip-template/BlazorClientApp.csproj +++ b/samples/charts/data-chart/tooltip-template/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/transition-event/BlazorClientApp.csproj b/samples/charts/data-chart/transition-event/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/transition-event/BlazorClientApp.csproj +++ b/samples/charts/data-chart/transition-event/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/type-financial-candlestick-series/BlazorClientApp.csproj b/samples/charts/data-chart/type-financial-candlestick-series/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/type-financial-candlestick-series/BlazorClientApp.csproj +++ b/samples/charts/data-chart/type-financial-candlestick-series/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/type-financial-indicators-column/BlazorClientApp.csproj b/samples/charts/data-chart/type-financial-indicators-column/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/type-financial-indicators-column/BlazorClientApp.csproj +++ b/samples/charts/data-chart/type-financial-indicators-column/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/type-financial-indicators-line/BlazorClientApp.csproj b/samples/charts/data-chart/type-financial-indicators-line/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/type-financial-indicators-line/BlazorClientApp.csproj +++ b/samples/charts/data-chart/type-financial-indicators-line/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/type-financial-ohlc-series/BlazorClientApp.csproj b/samples/charts/data-chart/type-financial-ohlc-series/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/type-financial-ohlc-series/BlazorClientApp.csproj +++ b/samples/charts/data-chart/type-financial-ohlc-series/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/type-financial-overlays/BlazorClientApp.csproj b/samples/charts/data-chart/type-financial-overlays/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/type-financial-overlays/BlazorClientApp.csproj +++ b/samples/charts/data-chart/type-financial-overlays/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/type-range-area-series/BlazorClientApp.csproj b/samples/charts/data-chart/type-range-area-series/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/type-range-area-series/BlazorClientApp.csproj +++ b/samples/charts/data-chart/type-range-area-series/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/type-range-column-series/BlazorClientApp.csproj b/samples/charts/data-chart/type-range-column-series/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/type-range-column-series/BlazorClientApp.csproj +++ b/samples/charts/data-chart/type-range-column-series/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/type-scatter-area-series/BlazorClientApp.csproj b/samples/charts/data-chart/type-scatter-area-series/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/type-scatter-area-series/BlazorClientApp.csproj +++ b/samples/charts/data-chart/type-scatter-area-series/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/type-scatter-bubble-series/BlazorClientApp.csproj b/samples/charts/data-chart/type-scatter-bubble-series/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/type-scatter-bubble-series/BlazorClientApp.csproj +++ b/samples/charts/data-chart/type-scatter-bubble-series/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/type-scatter-contour-series/BlazorClientApp.csproj b/samples/charts/data-chart/type-scatter-contour-series/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/type-scatter-contour-series/BlazorClientApp.csproj +++ b/samples/charts/data-chart/type-scatter-contour-series/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/type-scatter-hd-series/BlazorClientApp.csproj b/samples/charts/data-chart/type-scatter-hd-series/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/type-scatter-hd-series/BlazorClientApp.csproj +++ b/samples/charts/data-chart/type-scatter-hd-series/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/type-scatter-polygon-series/BlazorClientApp.csproj b/samples/charts/data-chart/type-scatter-polygon-series/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/type-scatter-polygon-series/BlazorClientApp.csproj +++ b/samples/charts/data-chart/type-scatter-polygon-series/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/type-scatter-polyline-series/BlazorClientApp.csproj b/samples/charts/data-chart/type-scatter-polyline-series/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/type-scatter-polyline-series/BlazorClientApp.csproj +++ b/samples/charts/data-chart/type-scatter-polyline-series/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/type-scatter-spline-series/BlazorClientApp.csproj b/samples/charts/data-chart/type-scatter-spline-series/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/type-scatter-spline-series/BlazorClientApp.csproj +++ b/samples/charts/data-chart/type-scatter-spline-series/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-chart/waterfall-chart/BlazorClientApp.csproj b/samples/charts/data-chart/waterfall-chart/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-chart/waterfall-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/waterfall-chart/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-pie-chart/animation-replay/BlazorClientApp.csproj b/samples/charts/data-pie-chart/animation-replay/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-pie-chart/animation-replay/BlazorClientApp.csproj +++ b/samples/charts/data-pie-chart/animation-replay/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-pie-chart/animation/BlazorClientApp.csproj b/samples/charts/data-pie-chart/animation/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-pie-chart/animation/BlazorClientApp.csproj +++ b/samples/charts/data-pie-chart/animation/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-pie-chart/highlight-filter/BlazorClientApp.csproj b/samples/charts/data-pie-chart/highlight-filter/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-pie-chart/highlight-filter/BlazorClientApp.csproj +++ b/samples/charts/data-pie-chart/highlight-filter/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-pie-chart/highlighting/BlazorClientApp.csproj b/samples/charts/data-pie-chart/highlighting/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-pie-chart/highlighting/BlazorClientApp.csproj +++ b/samples/charts/data-pie-chart/highlighting/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-pie-chart/legend/BlazorClientApp.csproj b/samples/charts/data-pie-chart/legend/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-pie-chart/legend/BlazorClientApp.csproj +++ b/samples/charts/data-pie-chart/legend/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-pie-chart/others/BlazorClientApp.csproj b/samples/charts/data-pie-chart/others/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-pie-chart/others/BlazorClientApp.csproj +++ b/samples/charts/data-pie-chart/others/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-pie-chart/overview/BlazorClientApp.csproj b/samples/charts/data-pie-chart/overview/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-pie-chart/overview/BlazorClientApp.csproj +++ b/samples/charts/data-pie-chart/overview/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/data-pie-chart/selection/BlazorClientApp.csproj b/samples/charts/data-pie-chart/selection/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/data-pie-chart/selection/BlazorClientApp.csproj +++ b/samples/charts/data-pie-chart/selection/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/doughnut-chart/animation/BlazorClientApp.csproj b/samples/charts/doughnut-chart/animation/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/doughnut-chart/animation/BlazorClientApp.csproj +++ b/samples/charts/doughnut-chart/animation/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/doughnut-chart/explosion/BlazorClientApp.csproj b/samples/charts/doughnut-chart/explosion/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/doughnut-chart/explosion/BlazorClientApp.csproj +++ b/samples/charts/doughnut-chart/explosion/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/doughnut-chart/legend/BlazorClientApp.csproj b/samples/charts/doughnut-chart/legend/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/doughnut-chart/legend/BlazorClientApp.csproj +++ b/samples/charts/doughnut-chart/legend/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/doughnut-chart/overview/BlazorClientApp.csproj b/samples/charts/doughnut-chart/overview/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/doughnut-chart/overview/BlazorClientApp.csproj +++ b/samples/charts/doughnut-chart/overview/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/doughnut-chart/rings/BlazorClientApp.csproj b/samples/charts/doughnut-chart/rings/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/doughnut-chart/rings/BlazorClientApp.csproj +++ b/samples/charts/doughnut-chart/rings/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/doughnut-chart/selection/BlazorClientApp.csproj b/samples/charts/doughnut-chart/selection/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/doughnut-chart/selection/BlazorClientApp.csproj +++ b/samples/charts/doughnut-chart/selection/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/financial-chart/annotations/BlazorClientApp.csproj b/samples/charts/financial-chart/annotations/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/financial-chart/annotations/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/annotations/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/financial-chart/axis-types/BlazorClientApp.csproj b/samples/charts/financial-chart/axis-types/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/financial-chart/axis-types/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/axis-types/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/BlazorClientApp.csproj b/samples/charts/financial-chart/data-legend-formatting-currency/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/data-legend-formatting-currency/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/financial-chart/data-legend-styling-props/BlazorClientApp.csproj b/samples/charts/financial-chart/data-legend-styling-props/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/data-legend-styling-props/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/financial-chart/data-legend/BlazorClientApp.csproj b/samples/charts/financial-chart/data-legend/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/financial-chart/data-legend/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/data-legend/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/BlazorClientApp.csproj b/samples/charts/financial-chart/data-tooltip-formatting-currency/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/BlazorClientApp.csproj b/samples/charts/financial-chart/data-tooltip-styling-props/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/data-tooltip-styling-props/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/financial-chart/data-tooltip/BlazorClientApp.csproj b/samples/charts/financial-chart/data-tooltip/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/financial-chart/data-tooltip/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/data-tooltip/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/financial-chart/format-specifiers/BlazorClientApp.csproj b/samples/charts/financial-chart/format-specifiers/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/financial-chart/format-specifiers/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/format-specifiers/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/financial-chart/high-frequency/BlazorClientApp.csproj b/samples/charts/financial-chart/high-frequency/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/financial-chart/high-frequency/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/high-frequency/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/financial-chart/high-volume/BlazorClientApp.csproj b/samples/charts/financial-chart/high-volume/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/financial-chart/high-volume/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/high-volume/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/financial-chart/indicator-customization/BlazorClientApp.csproj b/samples/charts/financial-chart/indicator-customization/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/charts/financial-chart/indicator-customization/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/indicator-customization/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/financial-chart/indicator-types/BlazorClientApp.csproj b/samples/charts/financial-chart/indicator-types/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/financial-chart/indicator-types/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/indicator-types/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/financial-chart/multiple-data/BlazorClientApp.csproj b/samples/charts/financial-chart/multiple-data/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/financial-chart/multiple-data/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/multiple-data/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/financial-chart/overview/BlazorClientApp.csproj b/samples/charts/financial-chart/overview/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/financial-chart/overview/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/overview/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/financial-chart/panes/BlazorClientApp.csproj b/samples/charts/financial-chart/panes/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/financial-chart/panes/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/panes/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/financial-chart/performance/BlazorClientApp.csproj b/samples/charts/financial-chart/performance/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/financial-chart/performance/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/performance/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/financial-chart/scrollbars/BlazorClientApp.csproj b/samples/charts/financial-chart/scrollbars/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/financial-chart/scrollbars/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/scrollbars/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/financial-chart/stock-index-chart/BlazorClientApp.csproj b/samples/charts/financial-chart/stock-index-chart/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/financial-chart/stock-index-chart/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/stock-index-chart/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/financial-chart/styling/BlazorClientApp.csproj b/samples/charts/financial-chart/styling/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/financial-chart/styling/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/financial-chart/titles/BlazorClientApp.csproj b/samples/charts/financial-chart/titles/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/financial-chart/titles/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/titles/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/financial-chart/tooltip-types/BlazorClientApp.csproj b/samples/charts/financial-chart/tooltip-types/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/financial-chart/tooltip-types/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/tooltip-types/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/financial-chart/trendlines/BlazorClientApp.csproj b/samples/charts/financial-chart/trendlines/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/financial-chart/trendlines/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/trendlines/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/financial-chart/volume-types/BlazorClientApp.csproj b/samples/charts/financial-chart/volume-types/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/financial-chart/volume-types/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/volume-types/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/pie-chart/animation/BlazorClientApp.csproj b/samples/charts/pie-chart/animation/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/pie-chart/animation/BlazorClientApp.csproj +++ b/samples/charts/pie-chart/animation/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/pie-chart/explosion/BlazorClientApp.csproj b/samples/charts/pie-chart/explosion/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/pie-chart/explosion/BlazorClientApp.csproj +++ b/samples/charts/pie-chart/explosion/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/pie-chart/legend/BlazorClientApp.csproj b/samples/charts/pie-chart/legend/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/pie-chart/legend/BlazorClientApp.csproj +++ b/samples/charts/pie-chart/legend/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/pie-chart/others/BlazorClientApp.csproj b/samples/charts/pie-chart/others/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/pie-chart/others/BlazorClientApp.csproj +++ b/samples/charts/pie-chart/others/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/pie-chart/overview/BlazorClientApp.csproj b/samples/charts/pie-chart/overview/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/pie-chart/overview/BlazorClientApp.csproj +++ b/samples/charts/pie-chart/overview/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/pie-chart/selection/BlazorClientApp.csproj b/samples/charts/pie-chart/selection/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/pie-chart/selection/BlazorClientApp.csproj +++ b/samples/charts/pie-chart/selection/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/pie-chart/styling/BlazorClientApp.csproj b/samples/charts/pie-chart/styling/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/pie-chart/styling/BlazorClientApp.csproj +++ b/samples/charts/pie-chart/styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/sparkline/display-area/BlazorClientApp.csproj b/samples/charts/sparkline/display-area/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/sparkline/display-area/BlazorClientApp.csproj +++ b/samples/charts/sparkline/display-area/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/sparkline/display-column/BlazorClientApp.csproj b/samples/charts/sparkline/display-column/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/sparkline/display-column/BlazorClientApp.csproj +++ b/samples/charts/sparkline/display-column/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/sparkline/display-lines/BlazorClientApp.csproj b/samples/charts/sparkline/display-lines/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/sparkline/display-lines/BlazorClientApp.csproj +++ b/samples/charts/sparkline/display-lines/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/sparkline/display-types/BlazorClientApp.csproj b/samples/charts/sparkline/display-types/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/sparkline/display-types/BlazorClientApp.csproj +++ b/samples/charts/sparkline/display-types/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/sparkline/display-winloss/BlazorClientApp.csproj b/samples/charts/sparkline/display-winloss/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/sparkline/display-winloss/BlazorClientApp.csproj +++ b/samples/charts/sparkline/display-winloss/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/sparkline/grid/BlazorClientApp.csproj b/samples/charts/sparkline/grid/BlazorClientApp.csproj index 78ccdb4c08..6a6255848c 100644 --- a/samples/charts/sparkline/grid/BlazorClientApp.csproj +++ b/samples/charts/sparkline/grid/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/sparkline/markers/BlazorClientApp.csproj b/samples/charts/sparkline/markers/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/sparkline/markers/BlazorClientApp.csproj +++ b/samples/charts/sparkline/markers/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/sparkline/normal-range/BlazorClientApp.csproj b/samples/charts/sparkline/normal-range/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/sparkline/normal-range/BlazorClientApp.csproj +++ b/samples/charts/sparkline/normal-range/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/sparkline/trendlines/BlazorClientApp.csproj b/samples/charts/sparkline/trendlines/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/sparkline/trendlines/BlazorClientApp.csproj +++ b/samples/charts/sparkline/trendlines/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/sparkline/unknown-values/BlazorClientApp.csproj b/samples/charts/sparkline/unknown-values/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/sparkline/unknown-values/BlazorClientApp.csproj +++ b/samples/charts/sparkline/unknown-values/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/toolbar/actions-built-in-category-chart/BlazorClientApp.csproj b/samples/charts/toolbar/actions-built-in-category-chart/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/BlazorClientApp.csproj +++ b/samples/charts/toolbar/actions-built-in-category-chart/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/toolbar/actions-built-in-data-chart/BlazorClientApp.csproj b/samples/charts/toolbar/actions-built-in-data-chart/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/BlazorClientApp.csproj +++ b/samples/charts/toolbar/actions-built-in-data-chart/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/toolbar/color-editor-support/BlazorClientApp.csproj b/samples/charts/toolbar/color-editor-support/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/toolbar/color-editor-support/BlazorClientApp.csproj +++ b/samples/charts/toolbar/color-editor-support/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/toolbar/custom-tool/BlazorClientApp.csproj b/samples/charts/toolbar/custom-tool/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/toolbar/custom-tool/BlazorClientApp.csproj +++ b/samples/charts/toolbar/custom-tool/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/toolbar/download-data-chart-as-image/BlazorClientApp.csproj b/samples/charts/toolbar/download-data-chart-as-image/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/toolbar/download-data-chart-as-image/BlazorClientApp.csproj +++ b/samples/charts/toolbar/download-data-chart-as-image/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/BlazorClientApp.csproj b/samples/charts/toolbar/layout-actions-for-data-chart/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/BlazorClientApp.csproj +++ b/samples/charts/toolbar/layout-actions-for-data-chart/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/BlazorClientApp.csproj b/samples/charts/toolbar/layout-in-vertical-orientation/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/BlazorClientApp.csproj +++ b/samples/charts/toolbar/layout-in-vertical-orientation/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/toolbar/theming/BlazorClientApp.csproj b/samples/charts/toolbar/theming/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/toolbar/theming/BlazorClientApp.csproj +++ b/samples/charts/toolbar/theming/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/tree-map/events/BlazorClientApp.csproj b/samples/charts/tree-map/events/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/tree-map/events/BlazorClientApp.csproj +++ b/samples/charts/tree-map/events/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/tree-map/highlighting-percent-based/BlazorClientApp.csproj b/samples/charts/tree-map/highlighting-percent-based/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/tree-map/highlighting-percent-based/BlazorClientApp.csproj +++ b/samples/charts/tree-map/highlighting-percent-based/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/tree-map/highlighting/BlazorClientApp.csproj b/samples/charts/tree-map/highlighting/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/tree-map/highlighting/BlazorClientApp.csproj +++ b/samples/charts/tree-map/highlighting/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/tree-map/layout/BlazorClientApp.csproj b/samples/charts/tree-map/layout/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/tree-map/layout/BlazorClientApp.csproj +++ b/samples/charts/tree-map/layout/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/tree-map/overview/BlazorClientApp.csproj b/samples/charts/tree-map/overview/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/tree-map/overview/BlazorClientApp.csproj +++ b/samples/charts/tree-map/overview/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/tree-map/styling/BlazorClientApp.csproj b/samples/charts/tree-map/styling/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/tree-map/styling/BlazorClientApp.csproj +++ b/samples/charts/tree-map/styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/charts/zoomslider/overview/BlazorClientApp.csproj b/samples/charts/zoomslider/overview/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/charts/zoomslider/overview/BlazorClientApp.csproj +++ b/samples/charts/zoomslider/overview/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/editors/date-picker/date-limits/BlazorClientApp.csproj b/samples/editors/date-picker/date-limits/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/editors/date-picker/date-limits/BlazorClientApp.csproj +++ b/samples/editors/date-picker/date-limits/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/editors/date-picker/editing/BlazorClientApp.csproj b/samples/editors/date-picker/editing/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/editors/date-picker/editing/BlazorClientApp.csproj +++ b/samples/editors/date-picker/editing/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/editors/date-picker/format/BlazorClientApp.csproj b/samples/editors/date-picker/format/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/editors/date-picker/format/BlazorClientApp.csproj +++ b/samples/editors/date-picker/format/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/editors/date-picker/overview/BlazorClientApp.csproj b/samples/editors/date-picker/overview/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/editors/date-picker/overview/BlazorClientApp.csproj +++ b/samples/editors/date-picker/overview/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/editors/date-picker/range/BlazorClientApp.csproj b/samples/editors/date-picker/range/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/editors/date-picker/range/BlazorClientApp.csproj +++ b/samples/editors/date-picker/range/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/editors/multi-column-combobox/binding/BlazorClientApp.csproj b/samples/editors/multi-column-combobox/binding/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/editors/multi-column-combobox/binding/BlazorClientApp.csproj +++ b/samples/editors/multi-column-combobox/binding/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/editors/multi-column-combobox/overview/BlazorClientApp.csproj b/samples/editors/multi-column-combobox/overview/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/editors/multi-column-combobox/overview/BlazorClientApp.csproj +++ b/samples/editors/multi-column-combobox/overview/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/editors/x-date-picker/date-limits/BlazorClientApp.csproj b/samples/editors/x-date-picker/date-limits/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/editors/x-date-picker/date-limits/BlazorClientApp.csproj +++ b/samples/editors/x-date-picker/date-limits/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/editors/x-date-picker/editing/BlazorClientApp.csproj b/samples/editors/x-date-picker/editing/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/editors/x-date-picker/editing/BlazorClientApp.csproj +++ b/samples/editors/x-date-picker/editing/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/editors/x-date-picker/format/BlazorClientApp.csproj b/samples/editors/x-date-picker/format/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/editors/x-date-picker/format/BlazorClientApp.csproj +++ b/samples/editors/x-date-picker/format/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/editors/x-date-picker/overview/BlazorClientApp.csproj b/samples/editors/x-date-picker/overview/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/editors/x-date-picker/overview/BlazorClientApp.csproj +++ b/samples/editors/x-date-picker/overview/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/editors/x-date-picker/range/BlazorClientApp.csproj b/samples/editors/x-date-picker/range/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/editors/x-date-picker/range/BlazorClientApp.csproj +++ b/samples/editors/x-date-picker/range/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/excel/excel-library/operations-on-workbooks/BlazorClientApp.csproj b/samples/excel/excel-library/operations-on-workbooks/BlazorClientApp.csproj index 2cfd8a4765..63cfe76201 100644 --- a/samples/excel/excel-library/operations-on-workbooks/BlazorClientApp.csproj +++ b/samples/excel/excel-library/operations-on-workbooks/BlazorClientApp.csproj @@ -14,8 +14,8 @@ - - + + diff --git a/samples/excel/excel-library/operations-on-worksheets/BlazorClientApp.csproj b/samples/excel/excel-library/operations-on-worksheets/BlazorClientApp.csproj index 2cfd8a4765..63cfe76201 100644 --- a/samples/excel/excel-library/operations-on-worksheets/BlazorClientApp.csproj +++ b/samples/excel/excel-library/operations-on-worksheets/BlazorClientApp.csproj @@ -14,8 +14,8 @@ - - + + diff --git a/samples/excel/excel-library/overview/BlazorClientApp.csproj b/samples/excel/excel-library/overview/BlazorClientApp.csproj index 99af12876e..6d941baa06 100644 --- a/samples/excel/excel-library/overview/BlazorClientApp.csproj +++ b/samples/excel/excel-library/overview/BlazorClientApp.csproj @@ -14,8 +14,8 @@ - - + + diff --git a/samples/excel/excel-library/working-with-cells/BlazorClientApp.csproj b/samples/excel/excel-library/working-with-cells/BlazorClientApp.csproj index d1a7aaf7b1..0858a127ba 100644 --- a/samples/excel/excel-library/working-with-cells/BlazorClientApp.csproj +++ b/samples/excel/excel-library/working-with-cells/BlazorClientApp.csproj @@ -14,9 +14,9 @@ - - - + + + diff --git a/samples/excel/excel-library/working-with-charts/BlazorClientApp.csproj b/samples/excel/excel-library/working-with-charts/BlazorClientApp.csproj index 2cfd8a4765..63cfe76201 100644 --- a/samples/excel/excel-library/working-with-charts/BlazorClientApp.csproj +++ b/samples/excel/excel-library/working-with-charts/BlazorClientApp.csproj @@ -14,8 +14,8 @@ - - + + diff --git a/samples/excel/excel-library/working-with-sparklines/BlazorClientApp.csproj b/samples/excel/excel-library/working-with-sparklines/BlazorClientApp.csproj index 2cfd8a4765..63cfe76201 100644 --- a/samples/excel/excel-library/working-with-sparklines/BlazorClientApp.csproj +++ b/samples/excel/excel-library/working-with-sparklines/BlazorClientApp.csproj @@ -14,8 +14,8 @@ - - + + diff --git a/samples/gauges/bullet-graph/animation/BlazorClientApp.csproj b/samples/gauges/bullet-graph/animation/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/bullet-graph/animation/BlazorClientApp.csproj +++ b/samples/gauges/bullet-graph/animation/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/gauges/bullet-graph/background/BlazorClientApp.csproj b/samples/gauges/bullet-graph/background/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/bullet-graph/background/BlazorClientApp.csproj +++ b/samples/gauges/bullet-graph/background/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/gauges/bullet-graph/highlight-needle/BlazorClientApp.csproj b/samples/gauges/bullet-graph/highlight-needle/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/bullet-graph/highlight-needle/BlazorClientApp.csproj +++ b/samples/gauges/bullet-graph/highlight-needle/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/gauges/bullet-graph/labels/BlazorClientApp.csproj b/samples/gauges/bullet-graph/labels/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/bullet-graph/labels/BlazorClientApp.csproj +++ b/samples/gauges/bullet-graph/labels/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/gauges/bullet-graph/measures/BlazorClientApp.csproj b/samples/gauges/bullet-graph/measures/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/bullet-graph/measures/BlazorClientApp.csproj +++ b/samples/gauges/bullet-graph/measures/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/gauges/bullet-graph/ranges/BlazorClientApp.csproj b/samples/gauges/bullet-graph/ranges/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/bullet-graph/ranges/BlazorClientApp.csproj +++ b/samples/gauges/bullet-graph/ranges/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/gauges/bullet-graph/scale/BlazorClientApp.csproj b/samples/gauges/bullet-graph/scale/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/bullet-graph/scale/BlazorClientApp.csproj +++ b/samples/gauges/bullet-graph/scale/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/gauges/bullet-graph/tickmarks/BlazorClientApp.csproj b/samples/gauges/bullet-graph/tickmarks/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/bullet-graph/tickmarks/BlazorClientApp.csproj +++ b/samples/gauges/bullet-graph/tickmarks/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/gauges/bullet-graph/type-filled/BlazorClientApp.csproj b/samples/gauges/bullet-graph/type-filled/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/bullet-graph/type-filled/BlazorClientApp.csproj +++ b/samples/gauges/bullet-graph/type-filled/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/gauges/bullet-graph/type-horizontal/BlazorClientApp.csproj b/samples/gauges/bullet-graph/type-horizontal/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/bullet-graph/type-horizontal/BlazorClientApp.csproj +++ b/samples/gauges/bullet-graph/type-horizontal/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/gauges/bullet-graph/type-reversed/BlazorClientApp.csproj b/samples/gauges/bullet-graph/type-reversed/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/bullet-graph/type-reversed/BlazorClientApp.csproj +++ b/samples/gauges/bullet-graph/type-reversed/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/gauges/bullet-graph/type-segmented/BlazorClientApp.csproj b/samples/gauges/bullet-graph/type-segmented/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/bullet-graph/type-segmented/BlazorClientApp.csproj +++ b/samples/gauges/bullet-graph/type-segmented/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/gauges/bullet-graph/type-vertical/BlazorClientApp.csproj b/samples/gauges/bullet-graph/type-vertical/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/bullet-graph/type-vertical/BlazorClientApp.csproj +++ b/samples/gauges/bullet-graph/type-vertical/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/gauges/linear-gauge/animation/BlazorClientApp.csproj b/samples/gauges/linear-gauge/animation/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/linear-gauge/animation/BlazorClientApp.csproj +++ b/samples/gauges/linear-gauge/animation/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/gauges/linear-gauge/backing/BlazorClientApp.csproj b/samples/gauges/linear-gauge/backing/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/linear-gauge/backing/BlazorClientApp.csproj +++ b/samples/gauges/linear-gauge/backing/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/gauges/linear-gauge/highlight-needle/BlazorClientApp.csproj b/samples/gauges/linear-gauge/highlight-needle/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/linear-gauge/highlight-needle/BlazorClientApp.csproj +++ b/samples/gauges/linear-gauge/highlight-needle/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/gauges/linear-gauge/labels/BlazorClientApp.csproj b/samples/gauges/linear-gauge/labels/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/linear-gauge/labels/BlazorClientApp.csproj +++ b/samples/gauges/linear-gauge/labels/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/gauges/linear-gauge/needle/BlazorClientApp.csproj b/samples/gauges/linear-gauge/needle/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/linear-gauge/needle/BlazorClientApp.csproj +++ b/samples/gauges/linear-gauge/needle/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/gauges/linear-gauge/ranges/BlazorClientApp.csproj b/samples/gauges/linear-gauge/ranges/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/linear-gauge/ranges/BlazorClientApp.csproj +++ b/samples/gauges/linear-gauge/ranges/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/gauges/linear-gauge/scale/BlazorClientApp.csproj b/samples/gauges/linear-gauge/scale/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/linear-gauge/scale/BlazorClientApp.csproj +++ b/samples/gauges/linear-gauge/scale/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/gauges/linear-gauge/tickmarks/BlazorClientApp.csproj b/samples/gauges/linear-gauge/tickmarks/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/linear-gauge/tickmarks/BlazorClientApp.csproj +++ b/samples/gauges/linear-gauge/tickmarks/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/gauges/linear-gauge/type-curved/BlazorClientApp.csproj b/samples/gauges/linear-gauge/type-curved/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/linear-gauge/type-curved/BlazorClientApp.csproj +++ b/samples/gauges/linear-gauge/type-curved/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/gauges/linear-gauge/type-filled/BlazorClientApp.csproj b/samples/gauges/linear-gauge/type-filled/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/linear-gauge/type-filled/BlazorClientApp.csproj +++ b/samples/gauges/linear-gauge/type-filled/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/gauges/linear-gauge/type-horizontal/BlazorClientApp.csproj b/samples/gauges/linear-gauge/type-horizontal/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/linear-gauge/type-horizontal/BlazorClientApp.csproj +++ b/samples/gauges/linear-gauge/type-horizontal/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/gauges/linear-gauge/type-multi-range/BlazorClientApp.csproj b/samples/gauges/linear-gauge/type-multi-range/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/linear-gauge/type-multi-range/BlazorClientApp.csproj +++ b/samples/gauges/linear-gauge/type-multi-range/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/gauges/linear-gauge/type-multi-scale/BlazorClientApp.csproj b/samples/gauges/linear-gauge/type-multi-scale/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/linear-gauge/type-multi-scale/BlazorClientApp.csproj +++ b/samples/gauges/linear-gauge/type-multi-scale/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/gauges/linear-gauge/type-segmented/BlazorClientApp.csproj b/samples/gauges/linear-gauge/type-segmented/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/linear-gauge/type-segmented/BlazorClientApp.csproj +++ b/samples/gauges/linear-gauge/type-segmented/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/gauges/linear-gauge/type-vertical/BlazorClientApp.csproj b/samples/gauges/linear-gauge/type-vertical/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/linear-gauge/type-vertical/BlazorClientApp.csproj +++ b/samples/gauges/linear-gauge/type-vertical/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/gauges/radial-gauge/animation/BlazorClientApp.csproj b/samples/gauges/radial-gauge/animation/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/radial-gauge/animation/BlazorClientApp.csproj +++ b/samples/gauges/radial-gauge/animation/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/gauges/radial-gauge/backing/BlazorClientApp.csproj b/samples/gauges/radial-gauge/backing/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/radial-gauge/backing/BlazorClientApp.csproj +++ b/samples/gauges/radial-gauge/backing/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/gauges/radial-gauge/highlight-needle/BlazorClientApp.csproj b/samples/gauges/radial-gauge/highlight-needle/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/radial-gauge/highlight-needle/BlazorClientApp.csproj +++ b/samples/gauges/radial-gauge/highlight-needle/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/gauges/radial-gauge/labels/BlazorClientApp.csproj b/samples/gauges/radial-gauge/labels/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/radial-gauge/labels/BlazorClientApp.csproj +++ b/samples/gauges/radial-gauge/labels/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/gauges/radial-gauge/needle/BlazorClientApp.csproj b/samples/gauges/radial-gauge/needle/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/radial-gauge/needle/BlazorClientApp.csproj +++ b/samples/gauges/radial-gauge/needle/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/gauges/radial-gauge/optical-scaling/BlazorClientApp.csproj b/samples/gauges/radial-gauge/optical-scaling/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/radial-gauge/optical-scaling/BlazorClientApp.csproj +++ b/samples/gauges/radial-gauge/optical-scaling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/gauges/radial-gauge/ranges/BlazorClientApp.csproj b/samples/gauges/radial-gauge/ranges/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/radial-gauge/ranges/BlazorClientApp.csproj +++ b/samples/gauges/radial-gauge/ranges/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/gauges/radial-gauge/scale/BlazorClientApp.csproj b/samples/gauges/radial-gauge/scale/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/radial-gauge/scale/BlazorClientApp.csproj +++ b/samples/gauges/radial-gauge/scale/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/gauges/radial-gauge/tickmarks/BlazorClientApp.csproj b/samples/gauges/radial-gauge/tickmarks/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/radial-gauge/tickmarks/BlazorClientApp.csproj +++ b/samples/gauges/radial-gauge/tickmarks/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/gauges/radial-gauge/type-column/BlazorClientApp.csproj b/samples/gauges/radial-gauge/type-column/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/radial-gauge/type-column/BlazorClientApp.csproj +++ b/samples/gauges/radial-gauge/type-column/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/gauges/radial-gauge/type-curved/BlazorClientApp.csproj b/samples/gauges/radial-gauge/type-curved/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/radial-gauge/type-curved/BlazorClientApp.csproj +++ b/samples/gauges/radial-gauge/type-curved/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/gauges/radial-gauge/type-direction/BlazorClientApp.csproj b/samples/gauges/radial-gauge/type-direction/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/radial-gauge/type-direction/BlazorClientApp.csproj +++ b/samples/gauges/radial-gauge/type-direction/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/gauges/radial-gauge/type-full/BlazorClientApp.csproj b/samples/gauges/radial-gauge/type-full/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/radial-gauge/type-full/BlazorClientApp.csproj +++ b/samples/gauges/radial-gauge/type-full/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/gauges/radial-gauge/type-half/BlazorClientApp.csproj b/samples/gauges/radial-gauge/type-half/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/radial-gauge/type-half/BlazorClientApp.csproj +++ b/samples/gauges/radial-gauge/type-half/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/gauges/radial-gauge/type-quatre/BlazorClientApp.csproj b/samples/gauges/radial-gauge/type-quatre/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/radial-gauge/type-quatre/BlazorClientApp.csproj +++ b/samples/gauges/radial-gauge/type-quatre/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/gauges/radial-gauge/type-ring/BlazorClientApp.csproj b/samples/gauges/radial-gauge/type-ring/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/radial-gauge/type-ring/BlazorClientApp.csproj +++ b/samples/gauges/radial-gauge/type-ring/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/gauges/radial-gauge/type-segmented/BlazorClientApp.csproj b/samples/gauges/radial-gauge/type-segmented/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/radial-gauge/type-segmented/BlazorClientApp.csproj +++ b/samples/gauges/radial-gauge/type-segmented/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/gauges/radial-gauge/type-semi/BlazorClientApp.csproj b/samples/gauges/radial-gauge/type-semi/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/gauges/radial-gauge/type-semi/BlazorClientApp.csproj +++ b/samples/gauges/radial-gauge/type-semi/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/data-grid/accessibility/BlazorClientApp.csproj b/samples/grids/data-grid/accessibility/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/data-grid/accessibility/BlazorClientApp.csproj +++ b/samples/grids/data-grid/accessibility/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/data-grid/binding-data-service/BlazorClientApp.csproj b/samples/grids/data-grid/binding-data-service/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/data-grid/binding-data-service/BlazorClientApp.csproj +++ b/samples/grids/data-grid/binding-data-service/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/data-grid/binding-live-data/BlazorClientApp.csproj b/samples/grids/data-grid/binding-live-data/BlazorClientApp.csproj index b4f318dc58..aecfea8258 100644 --- a/samples/grids/data-grid/binding-live-data/BlazorClientApp.csproj +++ b/samples/grids/data-grid/binding-live-data/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/data-grid/binding-local-data/BlazorClientApp.csproj b/samples/grids/data-grid/binding-local-data/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/data-grid/binding-local-data/BlazorClientApp.csproj +++ b/samples/grids/data-grid/binding-local-data/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/data-grid/binding-remote-data/BlazorClientApp.csproj b/samples/grids/data-grid/binding-remote-data/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/data-grid/binding-remote-data/BlazorClientApp.csproj +++ b/samples/grids/data-grid/binding-remote-data/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/data-grid/cell-activation/BlazorClientApp.csproj b/samples/grids/data-grid/cell-activation/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/data-grid/cell-activation/BlazorClientApp.csproj +++ b/samples/grids/data-grid/cell-activation/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/data-grid/cell-editing/BlazorClientApp.csproj b/samples/grids/data-grid/cell-editing/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/data-grid/cell-editing/BlazorClientApp.csproj +++ b/samples/grids/data-grid/cell-editing/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/data-grid/cell-merging/BlazorClientApp.csproj b/samples/grids/data-grid/cell-merging/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/data-grid/cell-merging/BlazorClientApp.csproj +++ b/samples/grids/data-grid/cell-merging/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/data-grid/cell-selection/BlazorClientApp.csproj b/samples/grids/data-grid/cell-selection/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/data-grid/cell-selection/BlazorClientApp.csproj +++ b/samples/grids/data-grid/cell-selection/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/data-grid/column-animation/BlazorClientApp.csproj b/samples/grids/data-grid/column-animation/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/data-grid/column-animation/BlazorClientApp.csproj +++ b/samples/grids/data-grid/column-animation/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/data-grid/column-auto-generation/BlazorClientApp.csproj b/samples/grids/data-grid/column-auto-generation/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/data-grid/column-auto-generation/BlazorClientApp.csproj +++ b/samples/grids/data-grid/column-auto-generation/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/data-grid/column-chooser-picker/BlazorClientApp.csproj b/samples/grids/data-grid/column-chooser-picker/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/data-grid/column-chooser-picker/BlazorClientApp.csproj +++ b/samples/grids/data-grid/column-chooser-picker/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/data-grid/column-chooser-toolbar/BlazorClientApp.csproj b/samples/grids/data-grid/column-chooser-toolbar/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/data-grid/column-chooser-toolbar/BlazorClientApp.csproj +++ b/samples/grids/data-grid/column-chooser-toolbar/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/data-grid/column-filter-expressions/BlazorClientApp.csproj b/samples/grids/data-grid/column-filter-expressions/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/data-grid/column-filter-expressions/BlazorClientApp.csproj +++ b/samples/grids/data-grid/column-filter-expressions/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/data-grid/column-filter-operands/BlazorClientApp.csproj b/samples/grids/data-grid/column-filter-operands/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/data-grid/column-filter-operands/BlazorClientApp.csproj +++ b/samples/grids/data-grid/column-filter-operands/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/data-grid/column-filtering/BlazorClientApp.csproj b/samples/grids/data-grid/column-filtering/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/data-grid/column-filtering/BlazorClientApp.csproj +++ b/samples/grids/data-grid/column-filtering/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/data-grid/column-moving/BlazorClientApp.csproj b/samples/grids/data-grid/column-moving/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/data-grid/column-moving/BlazorClientApp.csproj +++ b/samples/grids/data-grid/column-moving/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/data-grid/column-options/BlazorClientApp.csproj b/samples/grids/data-grid/column-options/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/data-grid/column-options/BlazorClientApp.csproj +++ b/samples/grids/data-grid/column-options/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/data-grid/column-pinning-picker/BlazorClientApp.csproj b/samples/grids/data-grid/column-pinning-picker/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/data-grid/column-pinning-picker/BlazorClientApp.csproj +++ b/samples/grids/data-grid/column-pinning-picker/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/data-grid/column-pinning-toolbar/BlazorClientApp.csproj b/samples/grids/data-grid/column-pinning-toolbar/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/data-grid/column-pinning-toolbar/BlazorClientApp.csproj +++ b/samples/grids/data-grid/column-pinning-toolbar/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/data-grid/column-resizing/BlazorClientApp.csproj b/samples/grids/data-grid/column-resizing/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/data-grid/column-resizing/BlazorClientApp.csproj +++ b/samples/grids/data-grid/column-resizing/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/data-grid/column-scrolling/BlazorClientApp.csproj b/samples/grids/data-grid/column-scrolling/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/data-grid/column-scrolling/BlazorClientApp.csproj +++ b/samples/grids/data-grid/column-scrolling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/data-grid/column-sorting/BlazorClientApp.csproj b/samples/grids/data-grid/column-sorting/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/data-grid/column-sorting/BlazorClientApp.csproj +++ b/samples/grids/data-grid/column-sorting/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/data-grid/column-summaries/BlazorClientApp.csproj b/samples/grids/data-grid/column-summaries/BlazorClientApp.csproj index 2358875e2d..34c6fe2c9f 100644 --- a/samples/grids/data-grid/column-summaries/BlazorClientApp.csproj +++ b/samples/grids/data-grid/column-summaries/BlazorClientApp.csproj @@ -16,7 +16,7 @@ - + diff --git a/samples/grids/data-grid/column-types/BlazorClientApp.csproj b/samples/grids/data-grid/column-types/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/data-grid/column-types/BlazorClientApp.csproj +++ b/samples/grids/data-grid/column-types/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/data-grid/load-save-layout/BlazorClientApp.csproj b/samples/grids/data-grid/load-save-layout/BlazorClientApp.csproj index 78ccdb4c08..6a6255848c 100644 --- a/samples/grids/data-grid/load-save-layout/BlazorClientApp.csproj +++ b/samples/grids/data-grid/load-save-layout/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/data-grid/localization/BlazorClientApp.csproj b/samples/grids/data-grid/localization/BlazorClientApp.csproj index 78ccdb4c08..6a6255848c 100644 --- a/samples/grids/data-grid/localization/BlazorClientApp.csproj +++ b/samples/grids/data-grid/localization/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/data-grid/overview/BlazorClientApp.csproj b/samples/grids/data-grid/overview/BlazorClientApp.csproj index 78ccdb4c08..6a6255848c 100644 --- a/samples/grids/data-grid/overview/BlazorClientApp.csproj +++ b/samples/grids/data-grid/overview/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/data-grid/pager/BlazorClientApp.csproj b/samples/grids/data-grid/pager/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/data-grid/pager/BlazorClientApp.csproj +++ b/samples/grids/data-grid/pager/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/data-grid/performance/BlazorClientApp.csproj b/samples/grids/data-grid/performance/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/data-grid/performance/BlazorClientApp.csproj +++ b/samples/grids/data-grid/performance/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/data-grid/row-group-descriptions/BlazorClientApp.csproj b/samples/grids/data-grid/row-group-descriptions/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/data-grid/row-group-descriptions/BlazorClientApp.csproj +++ b/samples/grids/data-grid/row-group-descriptions/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/data-grid/row-grouping/BlazorClientApp.csproj b/samples/grids/data-grid/row-grouping/BlazorClientApp.csproj index fe14cd4a8a..fbbafdd95c 100644 --- a/samples/grids/data-grid/row-grouping/BlazorClientApp.csproj +++ b/samples/grids/data-grid/row-grouping/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/data-grid/row-highlighting/BlazorClientApp.csproj b/samples/grids/data-grid/row-highlighting/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/data-grid/row-highlighting/BlazorClientApp.csproj +++ b/samples/grids/data-grid/row-highlighting/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/data-grid/row-paging/BlazorClientApp.csproj b/samples/grids/data-grid/row-paging/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/data-grid/row-paging/BlazorClientApp.csproj +++ b/samples/grids/data-grid/row-paging/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/data-grid/row-pinning/BlazorClientApp.csproj b/samples/grids/data-grid/row-pinning/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/data-grid/row-pinning/BlazorClientApp.csproj +++ b/samples/grids/data-grid/row-pinning/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/data-grid/row-selection/BlazorClientApp.csproj b/samples/grids/data-grid/row-selection/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/data-grid/row-selection/BlazorClientApp.csproj +++ b/samples/grids/data-grid/row-selection/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/data-grid/type-comparison-table/BlazorClientApp.csproj b/samples/grids/data-grid/type-comparison-table/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/data-grid/type-comparison-table/BlazorClientApp.csproj +++ b/samples/grids/data-grid/type-comparison-table/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/data-grid/type-heatmap-table/BlazorClientApp.csproj b/samples/grids/data-grid/type-heatmap-table/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/data-grid/type-heatmap-table/BlazorClientApp.csproj +++ b/samples/grids/data-grid/type-heatmap-table/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/data-grid/type-marketing-table/BlazorClientApp.csproj b/samples/grids/data-grid/type-marketing-table/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/data-grid/type-marketing-table/BlazorClientApp.csproj +++ b/samples/grids/data-grid/type-marketing-table/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/data-grid/type-matrix-table/BlazorClientApp.csproj b/samples/grids/data-grid/type-matrix-table/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/data-grid/type-matrix-table/BlazorClientApp.csproj +++ b/samples/grids/data-grid/type-matrix-table/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/data-grid/type-periodic-table/BlazorClientApp.csproj b/samples/grids/data-grid/type-periodic-table/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/data-grid/type-periodic-table/BlazorClientApp.csproj +++ b/samples/grids/data-grid/type-periodic-table/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/action-strip/BlazorClientApp.csproj b/samples/grids/grid/action-strip/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/action-strip/BlazorClientApp.csproj +++ b/samples/grids/grid/action-strip/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/advanced-filtering-options/BlazorClientApp.csproj b/samples/grids/grid/advanced-filtering-options/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/advanced-filtering-options/BlazorClientApp.csproj +++ b/samples/grids/grid/advanced-filtering-options/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/advanced-filtering-style/BlazorClientApp.csproj b/samples/grids/grid/advanced-filtering-style/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/advanced-filtering-style/BlazorClientApp.csproj +++ b/samples/grids/grid/advanced-filtering-style/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/binding-composite-data/BlazorClientApp.csproj b/samples/grids/grid/binding-composite-data/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/binding-composite-data/BlazorClientApp.csproj +++ b/samples/grids/grid/binding-composite-data/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/binding-crud-data/BlazorClientApp.csproj b/samples/grids/grid/binding-crud-data/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/binding-crud-data/BlazorClientApp.csproj +++ b/samples/grids/grid/binding-crud-data/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/binding-nested-data-1/BlazorClientApp.csproj b/samples/grids/grid/binding-nested-data-1/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/binding-nested-data-1/BlazorClientApp.csproj +++ b/samples/grids/grid/binding-nested-data-1/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/binding-remote-data/BlazorClientApp.csproj b/samples/grids/grid/binding-remote-data/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/binding-remote-data/BlazorClientApp.csproj +++ b/samples/grids/grid/binding-remote-data/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/cascading-combo/BlazorClientApp.csproj b/samples/grids/grid/cascading-combo/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/cascading-combo/BlazorClientApp.csproj +++ b/samples/grids/grid/cascading-combo/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/cell-editing-sample/BlazorClientApp.csproj b/samples/grids/grid/cell-editing-sample/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/cell-editing-sample/BlazorClientApp.csproj +++ b/samples/grids/grid/cell-editing-sample/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/cell-editing-styling/BlazorClientApp.csproj b/samples/grids/grid/cell-editing-styling/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/cell-editing-styling/BlazorClientApp.csproj +++ b/samples/grids/grid/cell-editing-styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/cell-selection-mode/BlazorClientApp.csproj b/samples/grids/grid/cell-selection-mode/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/cell-selection-mode/BlazorClientApp.csproj +++ b/samples/grids/grid/cell-selection-mode/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/cell-selection-style/BlazorClientApp.csproj b/samples/grids/grid/cell-selection-style/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/cell-selection-style/BlazorClientApp.csproj +++ b/samples/grids/grid/cell-selection-style/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/change-icons-custom/BlazorClientApp.csproj b/samples/grids/grid/change-icons-custom/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/change-icons-custom/BlazorClientApp.csproj +++ b/samples/grids/grid/change-icons-custom/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/clipboard-operations/BlazorClientApp.csproj b/samples/grids/grid/clipboard-operations/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/clipboard-operations/BlazorClientApp.csproj +++ b/samples/grids/grid/clipboard-operations/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/column-auto-sizing/BlazorClientApp.csproj b/samples/grids/grid/column-auto-sizing/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/column-auto-sizing/BlazorClientApp.csproj +++ b/samples/grids/grid/column-auto-sizing/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/column-collapsible-groups/BlazorClientApp.csproj b/samples/grids/grid/column-collapsible-groups/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/column-collapsible-groups/BlazorClientApp.csproj +++ b/samples/grids/grid/column-collapsible-groups/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/column-data-types/BlazorClientApp.csproj b/samples/grids/grid/column-data-types/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/column-data-types/BlazorClientApp.csproj +++ b/samples/grids/grid/column-data-types/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/column-hiding-options/BlazorClientApp.csproj b/samples/grids/grid/column-hiding-options/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/column-hiding-options/BlazorClientApp.csproj +++ b/samples/grids/grid/column-hiding-options/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/column-hiding-toolbar-style/BlazorClientApp.csproj b/samples/grids/grid/column-hiding-toolbar-style/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/column-hiding-toolbar-style/BlazorClientApp.csproj +++ b/samples/grids/grid/column-hiding-toolbar-style/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/column-hiding-toolbar/BlazorClientApp.csproj b/samples/grids/grid/column-hiding-toolbar/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/column-hiding-toolbar/BlazorClientApp.csproj +++ b/samples/grids/grid/column-hiding-toolbar/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/column-moving-options/BlazorClientApp.csproj b/samples/grids/grid/column-moving-options/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/column-moving-options/BlazorClientApp.csproj +++ b/samples/grids/grid/column-moving-options/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/column-moving-styles/BlazorClientApp.csproj b/samples/grids/grid/column-moving-styles/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/column-moving-styles/BlazorClientApp.csproj +++ b/samples/grids/grid/column-moving-styles/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/column-pinning-options/BlazorClientApp.csproj b/samples/grids/grid/column-pinning-options/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/column-pinning-options/BlazorClientApp.csproj +++ b/samples/grids/grid/column-pinning-options/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/column-pinning-right-side/BlazorClientApp.csproj b/samples/grids/grid/column-pinning-right-side/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/column-pinning-right-side/BlazorClientApp.csproj +++ b/samples/grids/grid/column-pinning-right-side/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/column-pinning-styles/BlazorClientApp.csproj b/samples/grids/grid/column-pinning-styles/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/column-pinning-styles/BlazorClientApp.csproj +++ b/samples/grids/grid/column-pinning-styles/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/column-pinning/BlazorClientApp.csproj b/samples/grids/grid/column-pinning/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/column-pinning/BlazorClientApp.csproj +++ b/samples/grids/grid/column-pinning/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/column-resize-styling/BlazorClientApp.csproj b/samples/grids/grid/column-resize-styling/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/column-resize-styling/BlazorClientApp.csproj +++ b/samples/grids/grid/column-resize-styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/column-resizing/BlazorClientApp.csproj b/samples/grids/grid/column-resizing/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/column-resizing/BlazorClientApp.csproj +++ b/samples/grids/grid/column-resizing/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/column-selection-group/BlazorClientApp.csproj b/samples/grids/grid/column-selection-group/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/column-selection-group/BlazorClientApp.csproj +++ b/samples/grids/grid/column-selection-group/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/column-selection-mode/BlazorClientApp.csproj b/samples/grids/grid/column-selection-mode/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/column-selection-mode/BlazorClientApp.csproj +++ b/samples/grids/grid/column-selection-mode/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/column-selection-styles/BlazorClientApp.csproj b/samples/grids/grid/column-selection-styles/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/column-selection-styles/BlazorClientApp.csproj +++ b/samples/grids/grid/column-selection-styles/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/column-sorting-indicators/BlazorClientApp.csproj b/samples/grids/grid/column-sorting-indicators/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/column-sorting-indicators/BlazorClientApp.csproj +++ b/samples/grids/grid/column-sorting-indicators/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/column-sorting-options/BlazorClientApp.csproj b/samples/grids/grid/column-sorting-options/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/column-sorting-options/BlazorClientApp.csproj +++ b/samples/grids/grid/column-sorting-options/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/column-sorting-style/BlazorClientApp.csproj b/samples/grids/grid/column-sorting-style/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/column-sorting-style/BlazorClientApp.csproj +++ b/samples/grids/grid/column-sorting-style/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/conditional-cell-style-1/BlazorClientApp.csproj b/samples/grids/grid/conditional-cell-style-1/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/conditional-cell-style-1/BlazorClientApp.csproj +++ b/samples/grids/grid/conditional-cell-style-1/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/conditional-cell-style-2/BlazorClientApp.csproj b/samples/grids/grid/conditional-cell-style-2/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/conditional-cell-style-2/BlazorClientApp.csproj +++ b/samples/grids/grid/conditional-cell-style-2/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/conditional-row-selectors/BlazorClientApp.csproj b/samples/grids/grid/conditional-row-selectors/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/conditional-row-selectors/BlazorClientApp.csproj +++ b/samples/grids/grid/conditional-row-selectors/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/custom-context-menu/BlazorClientApp.csproj b/samples/grids/grid/custom-context-menu/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/custom-context-menu/BlazorClientApp.csproj +++ b/samples/grids/grid/custom-context-menu/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/data-batch-editing-actions/BlazorClientApp.csproj b/samples/grids/grid/data-batch-editing-actions/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/data-batch-editing-actions/BlazorClientApp.csproj +++ b/samples/grids/grid/data-batch-editing-actions/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/data-paste-options/BlazorClientApp.csproj b/samples/grids/grid/data-paste-options/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/data-paste-options/BlazorClientApp.csproj +++ b/samples/grids/grid/data-paste-options/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/data-performance-virtualization/BlazorClientApp.csproj b/samples/grids/grid/data-performance-virtualization/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/data-performance-virtualization/BlazorClientApp.csproj +++ b/samples/grids/grid/data-performance-virtualization/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/data-searching/BlazorClientApp.csproj b/samples/grids/grid/data-searching/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/data-searching/BlazorClientApp.csproj +++ b/samples/grids/grid/data-searching/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/data-summary-formatter/BlazorClientApp.csproj b/samples/grids/grid/data-summary-formatter/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/data-summary-formatter/BlazorClientApp.csproj +++ b/samples/grids/grid/data-summary-formatter/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/data-summary-options/BlazorClientApp.csproj b/samples/grids/grid/data-summary-options/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/data-summary-options/BlazorClientApp.csproj +++ b/samples/grids/grid/data-summary-options/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/data-summary-template/BlazorClientApp.csproj b/samples/grids/grid/data-summary-template/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/data-summary-template/BlazorClientApp.csproj +++ b/samples/grids/grid/data-summary-template/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/data-validation-style/BlazorClientApp.csproj b/samples/grids/grid/data-validation-style/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/data-validation-style/BlazorClientApp.csproj +++ b/samples/grids/grid/data-validation-style/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/data-validator-service-cross-field/BlazorClientApp.csproj b/samples/grids/grid/data-validator-service-cross-field/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/data-validator-service-cross-field/BlazorClientApp.csproj +++ b/samples/grids/grid/data-validator-service-cross-field/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/data-validator-service-extended/BlazorClientApp.csproj b/samples/grids/grid/data-validator-service-extended/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/data-validator-service-extended/BlazorClientApp.csproj +++ b/samples/grids/grid/data-validator-service-extended/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/data-validator-service/BlazorClientApp.csproj b/samples/grids/grid/data-validator-service/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/data-validator-service/BlazorClientApp.csproj +++ b/samples/grids/grid/data-validator-service/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/disabled-summaries/BlazorClientApp.csproj b/samples/grids/grid/disabled-summaries/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/disabled-summaries/BlazorClientApp.csproj +++ b/samples/grids/grid/disabled-summaries/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/editing-columns/BlazorClientApp.csproj b/samples/grids/grid/editing-columns/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/editing-columns/BlazorClientApp.csproj +++ b/samples/grids/grid/editing-columns/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/editing-events/BlazorClientApp.csproj b/samples/grids/grid/editing-events/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/editing-events/BlazorClientApp.csproj +++ b/samples/grids/grid/editing-events/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/editing-excel-style-custom/BlazorClientApp.csproj b/samples/grids/grid/editing-excel-style-custom/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/editing-excel-style-custom/BlazorClientApp.csproj +++ b/samples/grids/grid/editing-excel-style-custom/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/editing-excel-style/BlazorClientApp.csproj b/samples/grids/grid/editing-excel-style/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/editing-excel-style/BlazorClientApp.csproj +++ b/samples/grids/grid/editing-excel-style/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/editing-lifecycle/BlazorClientApp.csproj b/samples/grids/grid/editing-lifecycle/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/editing-lifecycle/BlazorClientApp.csproj +++ b/samples/grids/grid/editing-lifecycle/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/excel-exporting/BlazorClientApp.csproj b/samples/grids/grid/excel-exporting/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/excel-exporting/BlazorClientApp.csproj +++ b/samples/grids/grid/excel-exporting/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/excel-style-filtering-sample-1/BlazorClientApp.csproj b/samples/grids/grid/excel-style-filtering-sample-1/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/excel-style-filtering-sample-1/BlazorClientApp.csproj +++ b/samples/grids/grid/excel-style-filtering-sample-1/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/excel-style-filtering-sample-2/BlazorClientApp.csproj b/samples/grids/grid/excel-style-filtering-sample-2/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/excel-style-filtering-sample-2/BlazorClientApp.csproj +++ b/samples/grids/grid/excel-style-filtering-sample-2/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/excel-style-filtering-sample-3/BlazorClientApp.csproj b/samples/grids/grid/excel-style-filtering-sample-3/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/excel-style-filtering-sample-3/BlazorClientApp.csproj +++ b/samples/grids/grid/excel-style-filtering-sample-3/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/excel-style-filtering-style/BlazorClientApp.csproj b/samples/grids/grid/excel-style-filtering-style/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/excel-style-filtering-style/BlazorClientApp.csproj +++ b/samples/grids/grid/excel-style-filtering-style/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/external-advanced-filtering/BlazorClientApp.csproj b/samples/grids/grid/external-advanced-filtering/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/external-advanced-filtering/BlazorClientApp.csproj +++ b/samples/grids/grid/external-advanced-filtering/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/filtering-options/BlazorClientApp.csproj b/samples/grids/grid/filtering-options/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/filtering-options/BlazorClientApp.csproj +++ b/samples/grids/grid/filtering-options/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/filtering-strategy/BlazorClientApp.csproj b/samples/grids/grid/filtering-strategy/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/filtering-strategy/BlazorClientApp.csproj +++ b/samples/grids/grid/filtering-strategy/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/filtering-style/BlazorClientApp.csproj b/samples/grids/grid/filtering-style/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/filtering-style/BlazorClientApp.csproj +++ b/samples/grids/grid/filtering-style/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/filtering-template/BlazorClientApp.csproj b/samples/grids/grid/filtering-template/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/filtering-template/BlazorClientApp.csproj +++ b/samples/grids/grid/filtering-template/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/finjs/BlazorClientApp.csproj b/samples/grids/grid/finjs/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/finjs/BlazorClientApp.csproj +++ b/samples/grids/grid/finjs/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/groupby-custom/BlazorClientApp.csproj b/samples/grids/grid/groupby-custom/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/groupby-custom/BlazorClientApp.csproj +++ b/samples/grids/grid/groupby-custom/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/groupby-expressions/BlazorClientApp.csproj b/samples/grids/grid/groupby-expressions/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/groupby-expressions/BlazorClientApp.csproj +++ b/samples/grids/grid/groupby-expressions/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/groupby-paging/BlazorClientApp.csproj b/samples/grids/grid/groupby-paging/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/groupby-paging/BlazorClientApp.csproj +++ b/samples/grids/grid/groupby-paging/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/groupby-styling/BlazorClientApp.csproj b/samples/grids/grid/groupby-styling/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/groupby-styling/BlazorClientApp.csproj +++ b/samples/grids/grid/groupby-styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/groupby-summary-options/BlazorClientApp.csproj b/samples/grids/grid/groupby-summary-options/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/groupby-summary-options/BlazorClientApp.csproj +++ b/samples/grids/grid/groupby-summary-options/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/groupby-summary-styling/BlazorClientApp.csproj b/samples/grids/grid/groupby-summary-styling/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/groupby-summary-styling/BlazorClientApp.csproj +++ b/samples/grids/grid/groupby-summary-styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/infinite-scroll/BlazorClientApp.csproj b/samples/grids/grid/infinite-scroll/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/infinite-scroll/BlazorClientApp.csproj +++ b/samples/grids/grid/infinite-scroll/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/keyboard-custom-navigation/BlazorClientApp.csproj b/samples/grids/grid/keyboard-custom-navigation/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/keyboard-custom-navigation/BlazorClientApp.csproj +++ b/samples/grids/grid/keyboard-custom-navigation/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/keyboard-mrl-navigation/BlazorClientApp.csproj b/samples/grids/grid/keyboard-mrl-navigation/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/keyboard-mrl-navigation/BlazorClientApp.csproj +++ b/samples/grids/grid/keyboard-mrl-navigation/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/layout-display-density/BlazorClientApp.csproj b/samples/grids/grid/layout-display-density/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/layout-display-density/BlazorClientApp.csproj +++ b/samples/grids/grid/layout-display-density/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/master-detail/BlazorClientApp.csproj b/samples/grids/grid/master-detail/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/master-detail/BlazorClientApp.csproj +++ b/samples/grids/grid/master-detail/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/multi-cell-selection-mode/BlazorClientApp.csproj b/samples/grids/grid/multi-cell-selection-mode/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/multi-cell-selection-mode/BlazorClientApp.csproj +++ b/samples/grids/grid/multi-cell-selection-mode/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/multi-column-headers-export/BlazorClientApp.csproj b/samples/grids/grid/multi-column-headers-export/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/multi-column-headers-export/BlazorClientApp.csproj +++ b/samples/grids/grid/multi-column-headers-export/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/multi-column-headers-overview/BlazorClientApp.csproj b/samples/grids/grid/multi-column-headers-overview/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/multi-column-headers-overview/BlazorClientApp.csproj +++ b/samples/grids/grid/multi-column-headers-overview/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/multi-column-headers-styling/BlazorClientApp.csproj b/samples/grids/grid/multi-column-headers-styling/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/multi-column-headers-styling/BlazorClientApp.csproj +++ b/samples/grids/grid/multi-column-headers-styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/multi-column-headers-template/BlazorClientApp.csproj b/samples/grids/grid/multi-column-headers-template/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/multi-column-headers-template/BlazorClientApp.csproj +++ b/samples/grids/grid/multi-column-headers-template/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/multi-row-dragging/BlazorClientApp.csproj b/samples/grids/grid/multi-row-dragging/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/multi-row-dragging/BlazorClientApp.csproj +++ b/samples/grids/grid/multi-row-dragging/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/multi-row-layout-options/BlazorClientApp.csproj b/samples/grids/grid/multi-row-layout-options/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/multi-row-layout-options/BlazorClientApp.csproj +++ b/samples/grids/grid/multi-row-layout-options/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/multi-row-layout-style/BlazorClientApp.csproj b/samples/grids/grid/multi-row-layout-style/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/multi-row-layout-style/BlazorClientApp.csproj +++ b/samples/grids/grid/multi-row-layout-style/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/overview-dark/BlazorClientApp.csproj b/samples/grids/grid/overview-dark/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/overview-dark/BlazorClientApp.csproj +++ b/samples/grids/grid/overview-dark/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/overview/BlazorClientApp.csproj b/samples/grids/grid/overview/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/overview/BlazorClientApp.csproj +++ b/samples/grids/grid/overview/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/paste/BlazorClientApp.csproj b/samples/grids/grid/paste/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/paste/BlazorClientApp.csproj +++ b/samples/grids/grid/paste/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/remote-paging-data/BlazorClientApp.csproj b/samples/grids/grid/remote-paging-data/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/remote-paging-data/BlazorClientApp.csproj +++ b/samples/grids/grid/remote-paging-data/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/remote-paging-grid/BlazorClientApp.csproj b/samples/grids/grid/remote-paging-grid/BlazorClientApp.csproj index 3443369942..e2f1e65766 100644 --- a/samples/grids/grid/remote-paging-grid/BlazorClientApp.csproj +++ b/samples/grids/grid/remote-paging-grid/BlazorClientApp.csproj @@ -13,13 +13,13 @@ <<<<<<< HEAD - + ======= <<<<<<<< HEAD:samples/grids/grid/remote-paging-data/BlazorClientApp.csproj - + ======== - + >>>>>>>> origin/master:samples/grids/grid/remote-paging-grid/BlazorClientApp.csproj >>>>>>> origin/master diff --git a/samples/grids/grid/row-adding/BlazorClientApp.csproj b/samples/grids/grid/row-adding/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/row-adding/BlazorClientApp.csproj +++ b/samples/grids/grid/row-adding/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/row-classes/BlazorClientApp.csproj b/samples/grids/grid/row-classes/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/row-classes/BlazorClientApp.csproj +++ b/samples/grids/grid/row-classes/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/row-drag-base/BlazorClientApp.csproj b/samples/grids/grid/row-drag-base/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/row-drag-base/BlazorClientApp.csproj +++ b/samples/grids/grid/row-drag-base/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/row-drag-to-grid/BlazorClientApp.csproj b/samples/grids/grid/row-drag-to-grid/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/row-drag-to-grid/BlazorClientApp.csproj +++ b/samples/grids/grid/row-drag-to-grid/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/row-editing-options/BlazorClientApp.csproj b/samples/grids/grid/row-editing-options/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/row-editing-options/BlazorClientApp.csproj +++ b/samples/grids/grid/row-editing-options/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/row-editing-style/BlazorClientApp.csproj b/samples/grids/grid/row-editing-style/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/row-editing-style/BlazorClientApp.csproj +++ b/samples/grids/grid/row-editing-style/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/row-paging-basic/BlazorClientApp.csproj b/samples/grids/grid/row-paging-basic/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/row-paging-basic/BlazorClientApp.csproj +++ b/samples/grids/grid/row-paging-basic/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/row-paging-options/BlazorClientApp.csproj b/samples/grids/grid/row-paging-options/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/row-paging-options/BlazorClientApp.csproj +++ b/samples/grids/grid/row-paging-options/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/row-pinning-drag/BlazorClientApp.csproj b/samples/grids/grid/row-pinning-drag/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/row-pinning-drag/BlazorClientApp.csproj +++ b/samples/grids/grid/row-pinning-drag/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/row-pinning-extra-column/BlazorClientApp.csproj b/samples/grids/grid/row-pinning-extra-column/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/row-pinning-extra-column/BlazorClientApp.csproj +++ b/samples/grids/grid/row-pinning-extra-column/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/row-pinning-options/BlazorClientApp.csproj b/samples/grids/grid/row-pinning-options/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/row-pinning-options/BlazorClientApp.csproj +++ b/samples/grids/grid/row-pinning-options/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/row-pinning-style/BlazorClientApp.csproj b/samples/grids/grid/row-pinning-style/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/row-pinning-style/BlazorClientApp.csproj +++ b/samples/grids/grid/row-pinning-style/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/row-reorder/BlazorClientApp.csproj b/samples/grids/grid/row-reorder/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/row-reorder/BlazorClientApp.csproj +++ b/samples/grids/grid/row-reorder/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/row-selection-mode/BlazorClientApp.csproj b/samples/grids/grid/row-selection-mode/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/row-selection-mode/BlazorClientApp.csproj +++ b/samples/grids/grid/row-selection-mode/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/row-selection-template-excel/BlazorClientApp.csproj b/samples/grids/grid/row-selection-template-excel/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/row-selection-template-excel/BlazorClientApp.csproj +++ b/samples/grids/grid/row-selection-template-excel/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/row-selection-template-numbers/BlazorClientApp.csproj b/samples/grids/grid/row-selection-template-numbers/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/row-selection-template-numbers/BlazorClientApp.csproj +++ b/samples/grids/grid/row-selection-template-numbers/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/row-styles/BlazorClientApp.csproj b/samples/grids/grid/row-styles/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/row-styles/BlazorClientApp.csproj +++ b/samples/grids/grid/row-styles/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/state-persistence-about/BlazorClientApp.csproj b/samples/grids/grid/state-persistence-about/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/state-persistence-about/BlazorClientApp.csproj +++ b/samples/grids/grid/state-persistence-about/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/state-persistence-main/BlazorClientApp.csproj b/samples/grids/grid/state-persistence-main/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/state-persistence-main/BlazorClientApp.csproj +++ b/samples/grids/grid/state-persistence-main/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/styling-custom-css/BlazorClientApp.csproj b/samples/grids/grid/styling-custom-css/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/styling-custom-css/BlazorClientApp.csproj +++ b/samples/grids/grid/styling-custom-css/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/toolbar-sample-1/BlazorClientApp.csproj b/samples/grids/grid/toolbar-sample-1/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/toolbar-sample-1/BlazorClientApp.csproj +++ b/samples/grids/grid/toolbar-sample-1/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/toolbar-sample-2/BlazorClientApp.csproj b/samples/grids/grid/toolbar-sample-2/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/toolbar-sample-2/BlazorClientApp.csproj +++ b/samples/grids/grid/toolbar-sample-2/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/toolbar-sample-3/BlazorClientApp.csproj b/samples/grids/grid/toolbar-sample-3/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/toolbar-sample-3/BlazorClientApp.csproj +++ b/samples/grids/grid/toolbar-sample-3/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/toolbar-sample-4/BlazorClientApp.csproj b/samples/grids/grid/toolbar-sample-4/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/toolbar-sample-4/BlazorClientApp.csproj +++ b/samples/grids/grid/toolbar-sample-4/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/grid/toolbar-style/BlazorClientApp.csproj b/samples/grids/grid/toolbar-style/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/grid/toolbar-style/BlazorClientApp.csproj +++ b/samples/grids/grid/toolbar-style/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/action-strip/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/action-strip/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/action-strip/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/action-strip/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/advanced-filtering-options/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/advanced-filtering-options/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/advanced-filtering-options/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/advanced-filtering-options/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/advanced-filtering-style/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/advanced-filtering-style/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/advanced-filtering-style/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/advanced-filtering-style/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/cell-editing-sample/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/cell-editing-sample/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/cell-editing-sample/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/cell-editing-sample/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/cell-editing-styling/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/cell-editing-styling/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/cell-editing-styling/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/cell-editing-styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/cell-selection-mode/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/cell-selection-mode/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/cell-selection-mode/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/cell-selection-mode/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/cell-selection-overview/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/cell-selection-overview/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/cell-selection-overview/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/cell-selection-overview/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/cell-selection-style/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/cell-selection-style/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/cell-selection-style/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/cell-selection-style/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/cell-selection-styling/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/cell-selection-styling/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/cell-selection-styling/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/cell-selection-styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/column-auto-sizing/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/column-auto-sizing/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/column-auto-sizing/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/column-auto-sizing/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/column-collapsible-groups/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/column-collapsible-groups/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/column-collapsible-groups/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/column-collapsible-groups/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/column-hiding-toolbar-style/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/column-hiding-toolbar-style/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/column-hiding-toolbar-style/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/column-hiding-toolbar-style/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/column-hiding-toolbar/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/column-hiding-toolbar/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/column-hiding-toolbar/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/column-hiding-toolbar/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/column-moving-options/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/column-moving-options/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/column-moving-options/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/column-moving-options/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/column-moving-styles/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/column-moving-styles/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/column-moving-styles/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/column-moving-styles/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/column-pinning-options/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/column-pinning-options/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/column-pinning-options/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/column-pinning-options/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/column-pinning-right-side/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/column-pinning-right-side/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/column-pinning-right-side/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/column-pinning-right-side/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/column-pinning-styles/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/column-pinning-styles/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/column-pinning-styles/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/column-pinning-styles/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/column-pinning/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/column-pinning/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/column-pinning/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/column-pinning/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/column-resize-styling/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/column-resize-styling/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/column-resize-styling/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/column-resize-styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/column-resizing/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/column-resizing/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/column-resizing/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/column-resizing/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/column-selection-group/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/column-selection-group/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/column-selection-group/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/column-selection-group/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/column-selection-mode/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/column-selection-mode/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/column-selection-mode/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/column-selection-mode/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/column-selection-styles/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/column-selection-styles/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/column-selection-styles/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/column-selection-styles/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/column-sorting-indicators/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/column-sorting-indicators/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/column-sorting-indicators/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/column-sorting-indicators/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/column-sorting-options/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/column-sorting-options/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/column-sorting-options/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/column-sorting-options/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/column-sorting-style/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/column-sorting-style/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/column-sorting-style/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/column-sorting-style/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/complex-feature-name1/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/complex-feature-name1/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/complex-feature-name1/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/complex-feature-name1/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/complex-feature-name2/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/complex-feature-name2/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/complex-feature-name2/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/complex-feature-name2/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/conditional-cell-style-1/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/conditional-cell-style-1/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/conditional-cell-style-1/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/conditional-cell-style-1/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/conditional-cell-style-2/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/conditional-cell-style-2/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/conditional-cell-style-2/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/conditional-cell-style-2/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/conditional-row-selectors/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/conditional-row-selectors/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/conditional-row-selectors/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/conditional-row-selectors/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/custom-filtering/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/custom-filtering/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/custom-filtering/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/custom-filtering/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/data-exporting-indicator/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/data-exporting-indicator/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/data-exporting-indicator/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/data-exporting-indicator/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/data-performance-virtualization/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/data-performance-virtualization/BlazorClientApp.csproj index b0bccf320d..e93c4a99b6 100644 --- a/samples/grids/hierarchical-grid/data-performance-virtualization/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/data-performance-virtualization/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/data-summary-formatter/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/data-summary-formatter/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/data-summary-formatter/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/data-summary-formatter/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/data-summary-options-styling/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/data-summary-options-styling/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/data-summary-options-styling/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/data-summary-options-styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/data-summary-options/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/data-summary-options/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/data-summary-options/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/data-summary-options/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/data-summary-template/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/data-summary-template/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/data-summary-template/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/data-summary-template/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/disabled-summaries/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/disabled-summaries/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/disabled-summaries/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/disabled-summaries/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/editing-columns/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/editing-columns/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/editing-columns/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/editing-columns/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/editing-events/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/editing-events/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/editing-events/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/editing-events/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/editing-lifecycle/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/editing-lifecycle/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/editing-lifecycle/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/editing-lifecycle/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/excel-exporting/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/excel-exporting/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/excel-exporting/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/excel-exporting/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-style/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/excel-style-filtering-style/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-style/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/excel-style-filtering-style/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/filtering-options/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/filtering-options/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/filtering-options/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/filtering-options/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/filtering-style/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/filtering-style/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/filtering-style/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/filtering-style/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-options/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/hierarchical-grid-options/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-options/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/hierarchical-grid-options/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-styling/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/hierarchical-grid-styling/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-styling/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/hierarchical-grid-styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/layout-display-density/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/layout-display-density/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/layout-display-density/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/layout-display-density/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/multi-column-headers-export/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/multi-column-headers-export/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-export/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/multi-column-headers-export/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/multi-column-headers-overview/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/multi-column-headers-overview/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-overview/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/multi-column-headers-overview/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/multi-column-headers-styling/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/multi-column-headers-styling/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-styling/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/multi-column-headers-styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/multi-column-headers-template/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/multi-column-headers-template/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-template/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/multi-column-headers-template/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/overview/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/overview/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/overview/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/overview/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/remote-paging-hgrid/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/remote-paging-hgrid/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/remote-paging-hgrid/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/remote-paging-hgrid/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/row-adding/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/row-adding/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/row-adding/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/row-adding/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/row-classes/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/row-classes/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/row-classes/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/row-classes/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/row-drag-base/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/row-drag-base/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/row-drag-base/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/row-drag-base/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/row-editing-options/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/row-editing-options/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/row-editing-options/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/row-editing-options/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/row-editing-style/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/row-editing-style/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/row-editing-style/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/row-editing-style/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/row-pinning-extra-column/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/row-pinning-extra-column/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/row-pinning-extra-column/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/row-pinning-extra-column/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/row-pinning-options/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/row-pinning-options/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/row-pinning-options/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/row-pinning-options/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/row-pinning-style/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/row-pinning-style/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/row-pinning-style/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/row-pinning-style/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/row-reorder/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/row-reorder/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/row-reorder/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/row-reorder/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/row-selection-mode/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/row-selection-mode/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/row-selection-mode/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/row-selection-mode/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/row-selection-template-numbers/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/row-selection-template-numbers/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/row-selection-template-numbers/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/row-selection-template-numbers/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/row-styles/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/row-styles/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/row-styles/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/row-styles/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/state-persistence-about/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/state-persistence-about/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/state-persistence-about/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/state-persistence-about/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/state-persistence-main/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/state-persistence-main/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/state-persistence-main/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/state-persistence-main/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/toolbar-sample-3/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/toolbar-sample-3/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-3/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/toolbar-sample-3/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/toolbar-sample-4/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/toolbar-sample-4/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-4/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/toolbar-sample-4/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/hierarchical-grid/toolbar-style/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/toolbar-style/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/hierarchical-grid/toolbar-style/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/toolbar-style/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/list/add-list-items/BlazorClientApp.csproj b/samples/grids/list/add-list-items/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/grids/list/add-list-items/BlazorClientApp.csproj +++ b/samples/grids/list/add-list-items/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/list/list-item-content/BlazorClientApp.csproj b/samples/grids/list/list-item-content/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/grids/list/list-item-content/BlazorClientApp.csproj +++ b/samples/grids/list/list-item-content/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/list/overview/BlazorClientApp.csproj b/samples/grids/list/overview/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/grids/list/overview/BlazorClientApp.csproj +++ b/samples/grids/list/overview/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/list/styling/BlazorClientApp.csproj b/samples/grids/list/styling/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/grids/list/styling/BlazorClientApp.csproj +++ b/samples/grids/list/styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/pivot-grid/aggregate-max-sales/BlazorClientApp.csproj b/samples/grids/pivot-grid/aggregate-max-sales/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/pivot-grid/aggregate-max-sales/BlazorClientApp.csproj +++ b/samples/grids/pivot-grid/aggregate-max-sales/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/pivot-grid/aggregate-units-sold/BlazorClientApp.csproj b/samples/grids/pivot-grid/aggregate-units-sold/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/pivot-grid/aggregate-units-sold/BlazorClientApp.csproj +++ b/samples/grids/pivot-grid/aggregate-units-sold/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/pivot-grid/data-selector/BlazorClientApp.csproj b/samples/grids/pivot-grid/data-selector/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/pivot-grid/data-selector/BlazorClientApp.csproj +++ b/samples/grids/pivot-grid/data-selector/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/pivot-grid/features/BlazorClientApp.csproj b/samples/grids/pivot-grid/features/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/pivot-grid/features/BlazorClientApp.csproj +++ b/samples/grids/pivot-grid/features/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/pivot-grid/state-persistence-about/BlazorClientApp.csproj b/samples/grids/pivot-grid/state-persistence-about/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/pivot-grid/state-persistence-about/BlazorClientApp.csproj +++ b/samples/grids/pivot-grid/state-persistence-about/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/pivot-grid/state-persistence-main/BlazorClientApp.csproj b/samples/grids/pivot-grid/state-persistence-main/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/pivot-grid/state-persistence-main/BlazorClientApp.csproj +++ b/samples/grids/pivot-grid/state-persistence-main/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/action-strip/BlazorClientApp.csproj b/samples/grids/tree-grid/action-strip/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/action-strip/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/action-strip/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/advanced-filtering-options/BlazorClientApp.csproj b/samples/grids/tree-grid/advanced-filtering-options/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/advanced-filtering-options/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/advanced-filtering-options/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/advanced-filtering-style/BlazorClientApp.csproj b/samples/grids/tree-grid/advanced-filtering-style/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/advanced-filtering-style/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/advanced-filtering-style/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/cell-editing-sample/BlazorClientApp.csproj b/samples/grids/tree-grid/cell-editing-sample/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/cell-editing-sample/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/cell-editing-sample/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/cell-editing-styling/BlazorClientApp.csproj b/samples/grids/tree-grid/cell-editing-styling/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/cell-editing-styling/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/cell-editing-styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/cell-selection-mode/BlazorClientApp.csproj b/samples/grids/tree-grid/cell-selection-mode/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/cell-selection-mode/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/cell-selection-mode/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/cell-selection-style/BlazorClientApp.csproj b/samples/grids/tree-grid/cell-selection-style/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/cell-selection-style/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/cell-selection-style/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/clipboard-operations/BlazorClientApp.csproj b/samples/grids/tree-grid/clipboard-operations/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/clipboard-operations/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/clipboard-operations/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/column-auto-sizing/BlazorClientApp.csproj b/samples/grids/tree-grid/column-auto-sizing/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/column-auto-sizing/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/column-auto-sizing/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/column-collapsible-groups/BlazorClientApp.csproj b/samples/grids/tree-grid/column-collapsible-groups/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/column-collapsible-groups/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/column-collapsible-groups/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/column-data-types/BlazorClientApp.csproj b/samples/grids/tree-grid/column-data-types/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/column-data-types/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/column-data-types/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/column-hiding-toolbar-style/BlazorClientApp.csproj b/samples/grids/tree-grid/column-hiding-toolbar-style/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/column-hiding-toolbar-style/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/column-hiding-toolbar-style/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/column-hiding-toolbar/BlazorClientApp.csproj b/samples/grids/tree-grid/column-hiding-toolbar/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/column-hiding-toolbar/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/column-hiding-toolbar/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/column-moving-options/BlazorClientApp.csproj b/samples/grids/tree-grid/column-moving-options/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/column-moving-options/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/column-moving-options/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/column-moving-styles/BlazorClientApp.csproj b/samples/grids/tree-grid/column-moving-styles/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/column-moving-styles/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/column-moving-styles/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/column-pinning-options/BlazorClientApp.csproj b/samples/grids/tree-grid/column-pinning-options/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/column-pinning-options/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/column-pinning-options/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/column-pinning-right-side/BlazorClientApp.csproj b/samples/grids/tree-grid/column-pinning-right-side/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/column-pinning-right-side/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/column-pinning-right-side/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/column-pinning-styles/BlazorClientApp.csproj b/samples/grids/tree-grid/column-pinning-styles/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/column-pinning-styles/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/column-pinning-styles/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/column-pinning-toolbar/BlazorClientApp.csproj b/samples/grids/tree-grid/column-pinning-toolbar/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/column-pinning-toolbar/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/column-pinning-toolbar/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/column-pinning/BlazorClientApp.csproj b/samples/grids/tree-grid/column-pinning/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/column-pinning/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/column-pinning/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/column-resize-styling/BlazorClientApp.csproj b/samples/grids/tree-grid/column-resize-styling/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/column-resize-styling/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/column-resize-styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/column-resizing/BlazorClientApp.csproj b/samples/grids/tree-grid/column-resizing/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/column-resizing/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/column-resizing/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/column-selection-group/BlazorClientApp.csproj b/samples/grids/tree-grid/column-selection-group/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/column-selection-group/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/column-selection-group/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/column-selection-mode/BlazorClientApp.csproj b/samples/grids/tree-grid/column-selection-mode/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/column-selection-mode/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/column-selection-mode/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/column-selection-style/BlazorClientApp.csproj b/samples/grids/tree-grid/column-selection-style/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/column-selection-style/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/column-selection-style/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/column-selection-styles/BlazorClientApp.csproj b/samples/grids/tree-grid/column-selection-styles/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/column-selection-styles/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/column-selection-styles/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/column-sorting-indicators/BlazorClientApp.csproj b/samples/grids/tree-grid/column-sorting-indicators/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/column-sorting-indicators/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/column-sorting-indicators/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/column-sorting-options/BlazorClientApp.csproj b/samples/grids/tree-grid/column-sorting-options/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/column-sorting-options/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/column-sorting-options/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/column-sorting-style/BlazorClientApp.csproj b/samples/grids/tree-grid/column-sorting-style/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/column-sorting-style/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/column-sorting-style/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/conditional-cell-style-1/BlazorClientApp.csproj b/samples/grids/tree-grid/conditional-cell-style-1/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/conditional-cell-style-1/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/conditional-cell-style-1/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/conditional-cell-style-2/BlazorClientApp.csproj b/samples/grids/tree-grid/conditional-cell-style-2/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/conditional-cell-style-2/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/conditional-cell-style-2/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/conditional-row-selectors/BlazorClientApp.csproj b/samples/grids/tree-grid/conditional-row-selectors/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/conditional-row-selectors/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/conditional-row-selectors/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/data-exporting-indicator/BlazorClientApp.csproj b/samples/grids/tree-grid/data-exporting-indicator/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/data-exporting-indicator/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/data-exporting-indicator/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/data-searching/BlazorClientApp.csproj b/samples/grids/tree-grid/data-searching/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/data-searching/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/data-searching/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/data-summaries-custom/BlazorClientApp.csproj b/samples/grids/tree-grid/data-summaries-custom/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/data-summaries-custom/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/data-summaries-custom/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/data-summary-children/BlazorClientApp.csproj b/samples/grids/tree-grid/data-summary-children/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/data-summary-children/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/data-summary-children/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/data-summary-options-styling/BlazorClientApp.csproj b/samples/grids/tree-grid/data-summary-options-styling/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/data-summary-options-styling/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/data-summary-options-styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/data-summary-options/BlazorClientApp.csproj b/samples/grids/tree-grid/data-summary-options/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/data-summary-options/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/data-summary-options/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/data-summary-template/BlazorClientApp.csproj b/samples/grids/tree-grid/data-summary-template/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/data-summary-template/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/data-summary-template/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/disabled-summaries/BlazorClientApp.csproj b/samples/grids/tree-grid/disabled-summaries/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/disabled-summaries/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/disabled-summaries/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/editing-columns/BlazorClientApp.csproj b/samples/grids/tree-grid/editing-columns/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/editing-columns/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/editing-columns/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/editing-events/BlazorClientApp.csproj b/samples/grids/tree-grid/editing-events/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/editing-events/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/editing-events/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/editing-lifecycle/BlazorClientApp.csproj b/samples/grids/tree-grid/editing-lifecycle/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/editing-lifecycle/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/editing-lifecycle/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/editing-style/BlazorClientApp.csproj b/samples/grids/tree-grid/editing-style/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/editing-style/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/editing-style/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/excel-exporting/BlazorClientApp.csproj b/samples/grids/tree-grid/excel-exporting/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/excel-exporting/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/excel-exporting/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-1/BlazorClientApp.csproj b/samples/grids/tree-grid/excel-style-filtering-sample-1/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-1/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/excel-style-filtering-sample-1/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-2/BlazorClientApp.csproj b/samples/grids/tree-grid/excel-style-filtering-sample-2/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-2/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/excel-style-filtering-sample-2/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-3/BlazorClientApp.csproj b/samples/grids/tree-grid/excel-style-filtering-sample-3/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-3/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/excel-style-filtering-sample-3/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/excel-style-filtering-style/BlazorClientApp.csproj b/samples/grids/tree-grid/excel-style-filtering-style/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/excel-style-filtering-style/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/excel-style-filtering-style/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/filtering-options/BlazorClientApp.csproj b/samples/grids/tree-grid/filtering-options/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/filtering-options/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/filtering-options/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/filtering-style/BlazorClientApp.csproj b/samples/grids/tree-grid/filtering-style/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/filtering-style/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/filtering-style/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/finjs/BlazorClientApp.csproj b/samples/grids/tree-grid/finjs/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/finjs/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/finjs/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/keyboard-custom-navigation/BlazorClientApp.csproj b/samples/grids/tree-grid/keyboard-custom-navigation/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/keyboard-custom-navigation/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/keyboard-custom-navigation/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/layout-display-density/BlazorClientApp.csproj b/samples/grids/tree-grid/layout-display-density/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/layout-display-density/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/layout-display-density/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/multi-cell-selection-mode/BlazorClientApp.csproj b/samples/grids/tree-grid/multi-cell-selection-mode/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/multi-cell-selection-mode/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/multi-cell-selection-mode/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/multi-column-headers-export/BlazorClientApp.csproj b/samples/grids/tree-grid/multi-column-headers-export/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/multi-column-headers-export/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/multi-column-headers-export/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/multi-column-headers-overview/BlazorClientApp.csproj b/samples/grids/tree-grid/multi-column-headers-overview/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/multi-column-headers-overview/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/multi-column-headers-overview/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/multi-column-headers-styling/BlazorClientApp.csproj b/samples/grids/tree-grid/multi-column-headers-styling/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/multi-column-headers-styling/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/multi-column-headers-styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/multi-column-headers-template/BlazorClientApp.csproj b/samples/grids/tree-grid/multi-column-headers-template/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/multi-column-headers-template/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/multi-column-headers-template/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/overview-styling/BlazorClientApp.csproj b/samples/grids/tree-grid/overview-styling/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/overview-styling/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/overview-styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/overview/BlazorClientApp.csproj b/samples/grids/tree-grid/overview/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/overview/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/overview/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/row-adding/BlazorClientApp.csproj b/samples/grids/tree-grid/row-adding/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/row-adding/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/row-adding/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/row-classes/BlazorClientApp.csproj b/samples/grids/tree-grid/row-classes/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/row-classes/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/row-classes/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/row-drag-base/BlazorClientApp.csproj b/samples/grids/tree-grid/row-drag-base/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/row-drag-base/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/row-drag-base/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/row-editing-options/BlazorClientApp.csproj b/samples/grids/tree-grid/row-editing-options/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/row-editing-options/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/row-editing-options/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/row-editing-style/BlazorClientApp.csproj b/samples/grids/tree-grid/row-editing-style/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/row-editing-style/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/row-editing-style/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/row-paging-basic/BlazorClientApp.csproj b/samples/grids/tree-grid/row-paging-basic/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/row-paging-basic/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/row-paging-basic/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/row-paging-options/BlazorClientApp.csproj b/samples/grids/tree-grid/row-paging-options/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/row-paging-options/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/row-paging-options/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/row-paging-style/BlazorClientApp.csproj b/samples/grids/tree-grid/row-paging-style/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/row-paging-style/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/row-paging-style/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/row-pinning-extra-column/BlazorClientApp.csproj b/samples/grids/tree-grid/row-pinning-extra-column/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/row-pinning-extra-column/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/row-pinning-extra-column/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/row-pinning-options/BlazorClientApp.csproj b/samples/grids/tree-grid/row-pinning-options/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/row-pinning-options/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/row-pinning-options/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/row-pinning-style/BlazorClientApp.csproj b/samples/grids/tree-grid/row-pinning-style/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/row-pinning-style/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/row-pinning-style/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/row-reorder/BlazorClientApp.csproj b/samples/grids/tree-grid/row-reorder/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/row-reorder/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/row-reorder/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/row-selection-mode/BlazorClientApp.csproj b/samples/grids/tree-grid/row-selection-mode/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/row-selection-mode/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/row-selection-mode/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/row-selection-template-excel/BlazorClientApp.csproj b/samples/grids/tree-grid/row-selection-template-excel/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/row-selection-template-excel/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/row-selection-template-excel/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/row-selection-template-numbers/BlazorClientApp.csproj b/samples/grids/tree-grid/row-selection-template-numbers/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/row-selection-template-numbers/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/row-selection-template-numbers/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/row-styles/BlazorClientApp.csproj b/samples/grids/tree-grid/row-styles/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/row-styles/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/row-styles/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/state-persistence-about/BlazorClientApp.csproj b/samples/grids/tree-grid/state-persistence-about/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/state-persistence-about/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/state-persistence-about/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/state-persistence-main/BlazorClientApp.csproj b/samples/grids/tree-grid/state-persistence-main/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/state-persistence-main/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/state-persistence-main/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/toolbar-sample-1/BlazorClientApp.csproj b/samples/grids/tree-grid/toolbar-sample-1/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/toolbar-sample-1/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/toolbar-sample-1/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/toolbar-sample-2/BlazorClientApp.csproj b/samples/grids/tree-grid/toolbar-sample-2/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/toolbar-sample-2/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/toolbar-sample-2/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/toolbar-sample-3/BlazorClientApp.csproj b/samples/grids/tree-grid/toolbar-sample-3/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/toolbar-sample-3/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/toolbar-sample-3/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/toolbar-sample-4/BlazorClientApp.csproj b/samples/grids/tree-grid/toolbar-sample-4/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/toolbar-sample-4/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/toolbar-sample-4/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/toolbar-style/BlazorClientApp.csproj b/samples/grids/tree-grid/toolbar-style/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/toolbar-style/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/toolbar-style/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree-grid/using-primary-foreign-keys/BlazorClientApp.csproj b/samples/grids/tree-grid/using-primary-foreign-keys/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/grids/tree-grid/using-primary-foreign-keys/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/using-primary-foreign-keys/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/grids/tree/basic-example/BlazorClientApp.csproj b/samples/grids/tree/basic-example/BlazorClientApp.csproj index 0b5703dacf..eb6f1cf6bc 100644 --- a/samples/grids/tree/basic-example/BlazorClientApp.csproj +++ b/samples/grids/tree/basic-example/BlazorClientApp.csproj @@ -19,7 +19,7 @@ - + diff --git a/samples/inputs/badge/outlined/BlazorClientApp.csproj b/samples/inputs/badge/outlined/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/badge/outlined/BlazorClientApp.csproj +++ b/samples/inputs/badge/outlined/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/badge/shape/BlazorClientApp.csproj b/samples/inputs/badge/shape/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/badge/shape/BlazorClientApp.csproj +++ b/samples/inputs/badge/shape/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/badge/variants/BlazorClientApp.csproj b/samples/inputs/badge/variants/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/badge/variants/BlazorClientApp.csproj +++ b/samples/inputs/badge/variants/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/button-group/alignment/BlazorClientApp.csproj b/samples/inputs/button-group/alignment/BlazorClientApp.csproj index 0b5703dacf..eb6f1cf6bc 100644 --- a/samples/inputs/button-group/alignment/BlazorClientApp.csproj +++ b/samples/inputs/button-group/alignment/BlazorClientApp.csproj @@ -19,7 +19,7 @@ - + diff --git a/samples/inputs/button-group/overview/BlazorClientApp.csproj b/samples/inputs/button-group/overview/BlazorClientApp.csproj index 0b5703dacf..eb6f1cf6bc 100644 --- a/samples/inputs/button-group/overview/BlazorClientApp.csproj +++ b/samples/inputs/button-group/overview/BlazorClientApp.csproj @@ -19,7 +19,7 @@ - + diff --git a/samples/inputs/button-group/selection/BlazorClientApp.csproj b/samples/inputs/button-group/selection/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/button-group/selection/BlazorClientApp.csproj +++ b/samples/inputs/button-group/selection/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/button-group/size/BlazorClientApp.csproj b/samples/inputs/button-group/size/BlazorClientApp.csproj index 0b5703dacf..eb6f1cf6bc 100644 --- a/samples/inputs/button-group/size/BlazorClientApp.csproj +++ b/samples/inputs/button-group/size/BlazorClientApp.csproj @@ -19,7 +19,7 @@ - + diff --git a/samples/inputs/button-group/styling/BlazorClientApp.csproj b/samples/inputs/button-group/styling/BlazorClientApp.csproj index 0b5703dacf..eb6f1cf6bc 100644 --- a/samples/inputs/button-group/styling/BlazorClientApp.csproj +++ b/samples/inputs/button-group/styling/BlazorClientApp.csproj @@ -19,7 +19,7 @@ - + diff --git a/samples/inputs/button/contained/BlazorClientApp.csproj b/samples/inputs/button/contained/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/button/contained/BlazorClientApp.csproj +++ b/samples/inputs/button/contained/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/button/download/BlazorClientApp.csproj b/samples/inputs/button/download/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/button/download/BlazorClientApp.csproj +++ b/samples/inputs/button/download/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/button/fab/BlazorClientApp.csproj b/samples/inputs/button/fab/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/button/fab/BlazorClientApp.csproj +++ b/samples/inputs/button/fab/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/button/flat/BlazorClientApp.csproj b/samples/inputs/button/flat/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/button/flat/BlazorClientApp.csproj +++ b/samples/inputs/button/flat/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/button/outlined/BlazorClientApp.csproj b/samples/inputs/button/outlined/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/button/outlined/BlazorClientApp.csproj +++ b/samples/inputs/button/outlined/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/button/overview/BlazorClientApp.csproj b/samples/inputs/button/overview/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/button/overview/BlazorClientApp.csproj +++ b/samples/inputs/button/overview/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/button/size/BlazorClientApp.csproj b/samples/inputs/button/size/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/button/size/BlazorClientApp.csproj +++ b/samples/inputs/button/size/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/button/styling/BlazorClientApp.csproj b/samples/inputs/button/styling/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/button/styling/BlazorClientApp.csproj +++ b/samples/inputs/button/styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/checkbox/checking/BlazorClientApp.csproj b/samples/inputs/checkbox/checking/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/checkbox/checking/BlazorClientApp.csproj +++ b/samples/inputs/checkbox/checking/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/checkbox/disabled/BlazorClientApp.csproj b/samples/inputs/checkbox/disabled/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/checkbox/disabled/BlazorClientApp.csproj +++ b/samples/inputs/checkbox/disabled/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/checkbox/indeterminate/BlazorClientApp.csproj b/samples/inputs/checkbox/indeterminate/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/checkbox/indeterminate/BlazorClientApp.csproj +++ b/samples/inputs/checkbox/indeterminate/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/checkbox/label/BlazorClientApp.csproj b/samples/inputs/checkbox/label/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/checkbox/label/BlazorClientApp.csproj +++ b/samples/inputs/checkbox/label/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/checkbox/overview/BlazorClientApp.csproj b/samples/inputs/checkbox/overview/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/checkbox/overview/BlazorClientApp.csproj +++ b/samples/inputs/checkbox/overview/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/chip/multiple/BlazorClientApp.csproj b/samples/inputs/chip/multiple/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/chip/multiple/BlazorClientApp.csproj +++ b/samples/inputs/chip/multiple/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/chip/overview/BlazorClientApp.csproj b/samples/inputs/chip/overview/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/chip/overview/BlazorClientApp.csproj +++ b/samples/inputs/chip/overview/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/chip/size/BlazorClientApp.csproj b/samples/inputs/chip/size/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/chip/size/BlazorClientApp.csproj +++ b/samples/inputs/chip/size/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/chip/styling/BlazorClientApp.csproj b/samples/inputs/chip/styling/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/chip/styling/BlazorClientApp.csproj +++ b/samples/inputs/chip/styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/chip/variants/BlazorClientApp.csproj b/samples/inputs/chip/variants/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/chip/variants/BlazorClientApp.csproj +++ b/samples/inputs/chip/variants/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/circular-progress-indicator/dynamic/BlazorClientApp.csproj b/samples/inputs/circular-progress-indicator/dynamic/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/circular-progress-indicator/dynamic/BlazorClientApp.csproj +++ b/samples/inputs/circular-progress-indicator/dynamic/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/circular-progress-indicator/indeterminate/BlazorClientApp.csproj b/samples/inputs/circular-progress-indicator/indeterminate/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/circular-progress-indicator/indeterminate/BlazorClientApp.csproj +++ b/samples/inputs/circular-progress-indicator/indeterminate/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/circular-progress-indicator/simple/BlazorClientApp.csproj b/samples/inputs/circular-progress-indicator/simple/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/circular-progress-indicator/simple/BlazorClientApp.csproj +++ b/samples/inputs/circular-progress-indicator/simple/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/circular-progress-indicator/styling/BlazorClientApp.csproj b/samples/inputs/circular-progress-indicator/styling/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/circular-progress-indicator/styling/BlazorClientApp.csproj +++ b/samples/inputs/circular-progress-indicator/styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/color-editor/overview/BlazorClientApp.csproj b/samples/inputs/color-editor/overview/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/inputs/color-editor/overview/BlazorClientApp.csproj +++ b/samples/inputs/color-editor/overview/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/combo/features/BlazorClientApp.csproj b/samples/inputs/combo/features/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/combo/features/BlazorClientApp.csproj +++ b/samples/inputs/combo/features/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/combo/overview/BlazorClientApp.csproj b/samples/inputs/combo/overview/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/combo/overview/BlazorClientApp.csproj +++ b/samples/inputs/combo/overview/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/combo/selection/BlazorClientApp.csproj b/samples/inputs/combo/selection/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/combo/selection/BlazorClientApp.csproj +++ b/samples/inputs/combo/selection/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/combo/simplified/BlazorClientApp.csproj b/samples/inputs/combo/simplified/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/combo/simplified/BlazorClientApp.csproj +++ b/samples/inputs/combo/simplified/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/combo/styling/BlazorClientApp.csproj b/samples/inputs/combo/styling/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/combo/styling/BlazorClientApp.csproj +++ b/samples/inputs/combo/styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/combo/templates/BlazorClientApp.csproj b/samples/inputs/combo/templates/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/combo/templates/BlazorClientApp.csproj +++ b/samples/inputs/combo/templates/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/date-time-input/input-format-display-format/BlazorClientApp.csproj b/samples/inputs/date-time-input/input-format-display-format/BlazorClientApp.csproj index 309b9748c0..27bf976ea9 100644 --- a/samples/inputs/date-time-input/input-format-display-format/BlazorClientApp.csproj +++ b/samples/inputs/date-time-input/input-format-display-format/BlazorClientApp.csproj @@ -10,7 +10,7 @@ - + diff --git a/samples/inputs/date-time-input/min-max-value/BlazorClientApp.csproj b/samples/inputs/date-time-input/min-max-value/BlazorClientApp.csproj index 309b9748c0..27bf976ea9 100644 --- a/samples/inputs/date-time-input/min-max-value/BlazorClientApp.csproj +++ b/samples/inputs/date-time-input/min-max-value/BlazorClientApp.csproj @@ -10,7 +10,7 @@ - + diff --git a/samples/inputs/date-time-input/overview/BlazorClientApp.csproj b/samples/inputs/date-time-input/overview/BlazorClientApp.csproj index 309b9748c0..27bf976ea9 100644 --- a/samples/inputs/date-time-input/overview/BlazorClientApp.csproj +++ b/samples/inputs/date-time-input/overview/BlazorClientApp.csproj @@ -10,7 +10,7 @@ - + diff --git a/samples/inputs/date-time-input/step-up-down/BlazorClientApp.csproj b/samples/inputs/date-time-input/step-up-down/BlazorClientApp.csproj index 309b9748c0..27bf976ea9 100644 --- a/samples/inputs/date-time-input/step-up-down/BlazorClientApp.csproj +++ b/samples/inputs/date-time-input/step-up-down/BlazorClientApp.csproj @@ -10,7 +10,7 @@ - + diff --git a/samples/inputs/dropdown/group/BlazorClientApp.csproj b/samples/inputs/dropdown/group/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/dropdown/group/BlazorClientApp.csproj +++ b/samples/inputs/dropdown/group/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/dropdown/header/BlazorClientApp.csproj b/samples/inputs/dropdown/header/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/dropdown/header/BlazorClientApp.csproj +++ b/samples/inputs/dropdown/header/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/dropdown/item/BlazorClientApp.csproj b/samples/inputs/dropdown/item/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/dropdown/item/BlazorClientApp.csproj +++ b/samples/inputs/dropdown/item/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/dropdown/overview/BlazorClientApp.csproj b/samples/inputs/dropdown/overview/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/dropdown/overview/BlazorClientApp.csproj +++ b/samples/inputs/dropdown/overview/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/dropdown/position/BlazorClientApp.csproj b/samples/inputs/dropdown/position/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/dropdown/position/BlazorClientApp.csproj +++ b/samples/inputs/dropdown/position/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/dropdown/styling/BlazorClientApp.csproj b/samples/inputs/dropdown/styling/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/dropdown/styling/BlazorClientApp.csproj +++ b/samples/inputs/dropdown/styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/dropdown/target/BlazorClientApp.csproj b/samples/inputs/dropdown/target/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/dropdown/target/BlazorClientApp.csproj +++ b/samples/inputs/dropdown/target/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/icon-button/size/BlazorClientApp.csproj b/samples/inputs/icon-button/size/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/icon-button/size/BlazorClientApp.csproj +++ b/samples/inputs/icon-button/size/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/icon-button/styling/BlazorClientApp.csproj b/samples/inputs/icon-button/styling/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/icon-button/styling/BlazorClientApp.csproj +++ b/samples/inputs/icon-button/styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/icon-button/variant/BlazorClientApp.csproj b/samples/inputs/icon-button/variant/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/icon-button/variant/BlazorClientApp.csproj +++ b/samples/inputs/icon-button/variant/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/input/binding/BlazorClientApp.csproj b/samples/inputs/input/binding/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/input/binding/BlazorClientApp.csproj +++ b/samples/inputs/input/binding/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/input/helper-text/BlazorClientApp.csproj b/samples/inputs/input/helper-text/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/input/helper-text/BlazorClientApp.csproj +++ b/samples/inputs/input/helper-text/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/input/overview/BlazorClientApp.csproj b/samples/inputs/input/overview/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/input/overview/BlazorClientApp.csproj +++ b/samples/inputs/input/overview/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/input/prefix-suffix/BlazorClientApp.csproj b/samples/inputs/input/prefix-suffix/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/input/prefix-suffix/BlazorClientApp.csproj +++ b/samples/inputs/input/prefix-suffix/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/input/size/BlazorClientApp.csproj b/samples/inputs/input/size/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/input/size/BlazorClientApp.csproj +++ b/samples/inputs/input/size/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/input/styling/BlazorClientApp.csproj b/samples/inputs/input/styling/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/input/styling/BlazorClientApp.csproj +++ b/samples/inputs/input/styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/linear-progress-indicator/dynamic/BlazorClientApp.csproj b/samples/inputs/linear-progress-indicator/dynamic/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/linear-progress-indicator/dynamic/BlazorClientApp.csproj +++ b/samples/inputs/linear-progress-indicator/dynamic/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/linear-progress-indicator/simple/BlazorClientApp.csproj b/samples/inputs/linear-progress-indicator/simple/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/linear-progress-indicator/simple/BlazorClientApp.csproj +++ b/samples/inputs/linear-progress-indicator/simple/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/linear-progress-indicator/striped/BlazorClientApp.csproj b/samples/inputs/linear-progress-indicator/striped/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/linear-progress-indicator/striped/BlazorClientApp.csproj +++ b/samples/inputs/linear-progress-indicator/striped/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/linear-progress-indicator/styling/BlazorClientApp.csproj b/samples/inputs/linear-progress-indicator/styling/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/linear-progress-indicator/styling/BlazorClientApp.csproj +++ b/samples/inputs/linear-progress-indicator/styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/linear-progress-indicator/types/BlazorClientApp.csproj b/samples/inputs/linear-progress-indicator/types/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/linear-progress-indicator/types/BlazorClientApp.csproj +++ b/samples/inputs/linear-progress-indicator/types/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/radio/alignment/BlazorClientApp.csproj b/samples/inputs/radio/alignment/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/radio/alignment/BlazorClientApp.csproj +++ b/samples/inputs/radio/alignment/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/radio/disabled/BlazorClientApp.csproj b/samples/inputs/radio/disabled/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/radio/disabled/BlazorClientApp.csproj +++ b/samples/inputs/radio/disabled/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/radio/group/BlazorClientApp.csproj b/samples/inputs/radio/group/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/radio/group/BlazorClientApp.csproj +++ b/samples/inputs/radio/group/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/radio/invalid/BlazorClientApp.csproj b/samples/inputs/radio/invalid/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/radio/invalid/BlazorClientApp.csproj +++ b/samples/inputs/radio/invalid/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/radio/label/BlazorClientApp.csproj b/samples/inputs/radio/label/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/radio/label/BlazorClientApp.csproj +++ b/samples/inputs/radio/label/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/radio/styling/BlazorClientApp.csproj b/samples/inputs/radio/styling/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/radio/styling/BlazorClientApp.csproj +++ b/samples/inputs/radio/styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/rating/basic/BlazorClientApp.csproj b/samples/inputs/rating/basic/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/rating/basic/BlazorClientApp.csproj +++ b/samples/inputs/rating/basic/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/rating/custom/BlazorClientApp.csproj b/samples/inputs/rating/custom/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/rating/custom/BlazorClientApp.csproj +++ b/samples/inputs/rating/custom/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/rating/empty/BlazorClientApp.csproj b/samples/inputs/rating/empty/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/rating/empty/BlazorClientApp.csproj +++ b/samples/inputs/rating/empty/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/rating/single-selection/BlazorClientApp.csproj b/samples/inputs/rating/single-selection/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/rating/single-selection/BlazorClientApp.csproj +++ b/samples/inputs/rating/single-selection/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/rating/styling/BlazorClientApp.csproj b/samples/inputs/rating/styling/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/rating/styling/BlazorClientApp.csproj +++ b/samples/inputs/rating/styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/ripple/button/BlazorClientApp.csproj b/samples/inputs/ripple/button/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/ripple/button/BlazorClientApp.csproj +++ b/samples/inputs/ripple/button/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/ripple/color/BlazorClientApp.csproj b/samples/inputs/ripple/color/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/ripple/color/BlazorClientApp.csproj +++ b/samples/inputs/ripple/color/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/select/group/BlazorClientApp.csproj b/samples/inputs/select/group/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/select/group/BlazorClientApp.csproj +++ b/samples/inputs/select/group/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/select/header/BlazorClientApp.csproj b/samples/inputs/select/header/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/select/header/BlazorClientApp.csproj +++ b/samples/inputs/select/header/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/select/item/BlazorClientApp.csproj b/samples/inputs/select/item/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/select/item/BlazorClientApp.csproj +++ b/samples/inputs/select/item/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/select/overview/BlazorClientApp.csproj b/samples/inputs/select/overview/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/select/overview/BlazorClientApp.csproj +++ b/samples/inputs/select/overview/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/select/styling/BlazorClientApp.csproj b/samples/inputs/select/styling/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/select/styling/BlazorClientApp.csproj +++ b/samples/inputs/select/styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/slider/constraints/BlazorClientApp.csproj b/samples/inputs/slider/constraints/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/slider/constraints/BlazorClientApp.csproj +++ b/samples/inputs/slider/constraints/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/slider/disabled/BlazorClientApp.csproj b/samples/inputs/slider/disabled/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/slider/disabled/BlazorClientApp.csproj +++ b/samples/inputs/slider/disabled/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/slider/discrete/BlazorClientApp.csproj b/samples/inputs/slider/discrete/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/slider/discrete/BlazorClientApp.csproj +++ b/samples/inputs/slider/discrete/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/slider/labels/BlazorClientApp.csproj b/samples/inputs/slider/labels/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/slider/labels/BlazorClientApp.csproj +++ b/samples/inputs/slider/labels/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/slider/overview/BlazorClientApp.csproj b/samples/inputs/slider/overview/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/slider/overview/BlazorClientApp.csproj +++ b/samples/inputs/slider/overview/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/slider/styling/BlazorClientApp.csproj b/samples/inputs/slider/styling/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/slider/styling/BlazorClientApp.csproj +++ b/samples/inputs/slider/styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/slider/tick-labels/BlazorClientApp.csproj b/samples/inputs/slider/tick-labels/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/slider/tick-labels/BlazorClientApp.csproj +++ b/samples/inputs/slider/tick-labels/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/slider/ticks/BlazorClientApp.csproj b/samples/inputs/slider/ticks/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/slider/ticks/BlazorClientApp.csproj +++ b/samples/inputs/slider/ticks/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/slider/value-format/BlazorClientApp.csproj b/samples/inputs/slider/value-format/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/slider/value-format/BlazorClientApp.csproj +++ b/samples/inputs/slider/value-format/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/slider/value/BlazorClientApp.csproj b/samples/inputs/slider/value/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/slider/value/BlazorClientApp.csproj +++ b/samples/inputs/slider/value/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/switches/checking/BlazorClientApp.csproj b/samples/inputs/switches/checking/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/switches/checking/BlazorClientApp.csproj +++ b/samples/inputs/switches/checking/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/switches/disabled/BlazorClientApp.csproj b/samples/inputs/switches/disabled/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/switches/disabled/BlazorClientApp.csproj +++ b/samples/inputs/switches/disabled/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/switches/label/BlazorClientApp.csproj b/samples/inputs/switches/label/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/switches/label/BlazorClientApp.csproj +++ b/samples/inputs/switches/label/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/switches/overview/BlazorClientApp.csproj b/samples/inputs/switches/overview/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/switches/overview/BlazorClientApp.csproj +++ b/samples/inputs/switches/overview/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/textarea/form-integration/BlazorClientApp.csproj b/samples/inputs/textarea/form-integration/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/textarea/form-integration/BlazorClientApp.csproj +++ b/samples/inputs/textarea/form-integration/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/textarea/overview/BlazorClientApp.csproj b/samples/inputs/textarea/overview/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/textarea/overview/BlazorClientApp.csproj +++ b/samples/inputs/textarea/overview/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/textarea/resize/BlazorClientApp.csproj b/samples/inputs/textarea/resize/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/textarea/resize/BlazorClientApp.csproj +++ b/samples/inputs/textarea/resize/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/textarea/slots/BlazorClientApp.csproj b/samples/inputs/textarea/slots/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/textarea/slots/BlazorClientApp.csproj +++ b/samples/inputs/textarea/slots/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/inputs/textarea/styling/BlazorClientApp.csproj b/samples/inputs/textarea/styling/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/inputs/textarea/styling/BlazorClientApp.csproj +++ b/samples/inputs/textarea/styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/layouts/accordion/customization/BlazorClientApp.csproj b/samples/layouts/accordion/customization/BlazorClientApp.csproj index 309b9748c0..27bf976ea9 100644 --- a/samples/layouts/accordion/customization/BlazorClientApp.csproj +++ b/samples/layouts/accordion/customization/BlazorClientApp.csproj @@ -10,7 +10,7 @@ - + diff --git a/samples/layouts/accordion/nested-scenario/BlazorClientApp.csproj b/samples/layouts/accordion/nested-scenario/BlazorClientApp.csproj index 309b9748c0..27bf976ea9 100644 --- a/samples/layouts/accordion/nested-scenario/BlazorClientApp.csproj +++ b/samples/layouts/accordion/nested-scenario/BlazorClientApp.csproj @@ -10,7 +10,7 @@ - + diff --git a/samples/layouts/accordion/overview/BlazorClientApp.csproj b/samples/layouts/accordion/overview/BlazorClientApp.csproj index 309b9748c0..27bf976ea9 100644 --- a/samples/layouts/accordion/overview/BlazorClientApp.csproj +++ b/samples/layouts/accordion/overview/BlazorClientApp.csproj @@ -10,7 +10,7 @@ - + diff --git a/samples/layouts/avatar/icon/BlazorClientApp.csproj b/samples/layouts/avatar/icon/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/layouts/avatar/icon/BlazorClientApp.csproj +++ b/samples/layouts/avatar/icon/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/layouts/avatar/image/BlazorClientApp.csproj b/samples/layouts/avatar/image/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/layouts/avatar/image/BlazorClientApp.csproj +++ b/samples/layouts/avatar/image/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/layouts/avatar/initials/BlazorClientApp.csproj b/samples/layouts/avatar/initials/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/layouts/avatar/initials/BlazorClientApp.csproj +++ b/samples/layouts/avatar/initials/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/layouts/avatar/shape/BlazorClientApp.csproj b/samples/layouts/avatar/shape/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/layouts/avatar/shape/BlazorClientApp.csproj +++ b/samples/layouts/avatar/shape/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/layouts/avatar/size/BlazorClientApp.csproj b/samples/layouts/avatar/size/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/layouts/avatar/size/BlazorClientApp.csproj +++ b/samples/layouts/avatar/size/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/layouts/card/horizontal/BlazorClientApp.csproj b/samples/layouts/card/horizontal/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/layouts/card/horizontal/BlazorClientApp.csproj +++ b/samples/layouts/card/horizontal/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/layouts/card/overview/BlazorClientApp.csproj b/samples/layouts/card/overview/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/layouts/card/overview/BlazorClientApp.csproj +++ b/samples/layouts/card/overview/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/layouts/card/semi-horizontal/BlazorClientApp.csproj b/samples/layouts/card/semi-horizontal/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/layouts/card/semi-horizontal/BlazorClientApp.csproj +++ b/samples/layouts/card/semi-horizontal/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/layouts/card/styling/BlazorClientApp.csproj b/samples/layouts/card/styling/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/layouts/card/styling/BlazorClientApp.csproj +++ b/samples/layouts/card/styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/layouts/carousel/animations/BlazorClientApp.csproj b/samples/layouts/carousel/animations/BlazorClientApp.csproj index 0b5703dacf..eb6f1cf6bc 100644 --- a/samples/layouts/carousel/animations/BlazorClientApp.csproj +++ b/samples/layouts/carousel/animations/BlazorClientApp.csproj @@ -19,7 +19,7 @@ - + diff --git a/samples/layouts/carousel/components/BlazorClientApp.csproj b/samples/layouts/carousel/components/BlazorClientApp.csproj index 0b5703dacf..eb6f1cf6bc 100644 --- a/samples/layouts/carousel/components/BlazorClientApp.csproj +++ b/samples/layouts/carousel/components/BlazorClientApp.csproj @@ -19,7 +19,7 @@ - + diff --git a/samples/layouts/carousel/overview/BlazorClientApp.csproj b/samples/layouts/carousel/overview/BlazorClientApp.csproj index 0b5703dacf..eb6f1cf6bc 100644 --- a/samples/layouts/carousel/overview/BlazorClientApp.csproj +++ b/samples/layouts/carousel/overview/BlazorClientApp.csproj @@ -19,7 +19,7 @@ - + diff --git a/samples/layouts/carousel/thumbnail/BlazorClientApp.csproj b/samples/layouts/carousel/thumbnail/BlazorClientApp.csproj index 0b5703dacf..eb6f1cf6bc 100644 --- a/samples/layouts/carousel/thumbnail/BlazorClientApp.csproj +++ b/samples/layouts/carousel/thumbnail/BlazorClientApp.csproj @@ -19,7 +19,7 @@ - + diff --git a/samples/layouts/divider/dashed/BlazorClientApp.csproj b/samples/layouts/divider/dashed/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/layouts/divider/dashed/BlazorClientApp.csproj +++ b/samples/layouts/divider/dashed/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/layouts/divider/middle/BlazorClientApp.csproj b/samples/layouts/divider/middle/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/layouts/divider/middle/BlazorClientApp.csproj +++ b/samples/layouts/divider/middle/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/layouts/divider/overview/BlazorClientApp.csproj b/samples/layouts/divider/overview/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/layouts/divider/overview/BlazorClientApp.csproj +++ b/samples/layouts/divider/overview/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/layouts/divider/select/BlazorClientApp.csproj b/samples/layouts/divider/select/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/layouts/divider/select/BlazorClientApp.csproj +++ b/samples/layouts/divider/select/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/layouts/divider/vertical/BlazorClientApp.csproj b/samples/layouts/divider/vertical/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/layouts/divider/vertical/BlazorClientApp.csproj +++ b/samples/layouts/divider/vertical/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/layouts/dock-manager/customize-buttons/BlazorClientApp.csproj b/samples/layouts/dock-manager/customize-buttons/BlazorClientApp.csproj index ffb63f0091..eff985a2cb 100644 --- a/samples/layouts/dock-manager/customize-buttons/BlazorClientApp.csproj +++ b/samples/layouts/dock-manager/customize-buttons/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/layouts/dock-manager/embedding-frames/BlazorClientApp.csproj b/samples/layouts/dock-manager/embedding-frames/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/layouts/dock-manager/embedding-frames/BlazorClientApp.csproj +++ b/samples/layouts/dock-manager/embedding-frames/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/layouts/dock-manager/overview/BlazorClientApp.csproj b/samples/layouts/dock-manager/overview/BlazorClientApp.csproj index ffb63f0091..eff985a2cb 100644 --- a/samples/layouts/dock-manager/overview/BlazorClientApp.csproj +++ b/samples/layouts/dock-manager/overview/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/layouts/dock-manager/styling/BlazorClientApp.csproj b/samples/layouts/dock-manager/styling/BlazorClientApp.csproj index ffb63f0091..eff985a2cb 100644 --- a/samples/layouts/dock-manager/styling/BlazorClientApp.csproj +++ b/samples/layouts/dock-manager/styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/layouts/dock-manager/updating-panes/BlazorClientApp.csproj b/samples/layouts/dock-manager/updating-panes/BlazorClientApp.csproj index 944c81d76a..4a38fe456a 100644 --- a/samples/layouts/dock-manager/updating-panes/BlazorClientApp.csproj +++ b/samples/layouts/dock-manager/updating-panes/BlazorClientApp.csproj @@ -19,7 +19,7 @@ - + diff --git a/samples/layouts/expansion-panel/component-customization/BlazorClientApp.csproj b/samples/layouts/expansion-panel/component-customization/BlazorClientApp.csproj index 309b9748c0..27bf976ea9 100644 --- a/samples/layouts/expansion-panel/component-customization/BlazorClientApp.csproj +++ b/samples/layouts/expansion-panel/component-customization/BlazorClientApp.csproj @@ -10,7 +10,7 @@ - + diff --git a/samples/layouts/expansion-panel/properties-and-events/BlazorClientApp.csproj b/samples/layouts/expansion-panel/properties-and-events/BlazorClientApp.csproj index 309b9748c0..27bf976ea9 100644 --- a/samples/layouts/expansion-panel/properties-and-events/BlazorClientApp.csproj +++ b/samples/layouts/expansion-panel/properties-and-events/BlazorClientApp.csproj @@ -10,7 +10,7 @@ - + diff --git a/samples/layouts/expansion-panel/styling/BlazorClientApp.csproj b/samples/layouts/expansion-panel/styling/BlazorClientApp.csproj index 309b9748c0..27bf976ea9 100644 --- a/samples/layouts/expansion-panel/styling/BlazorClientApp.csproj +++ b/samples/layouts/expansion-panel/styling/BlazorClientApp.csproj @@ -10,7 +10,7 @@ - + diff --git a/samples/layouts/expansion-panel/usage/BlazorClientApp.csproj b/samples/layouts/expansion-panel/usage/BlazorClientApp.csproj index 309b9748c0..27bf976ea9 100644 --- a/samples/layouts/expansion-panel/usage/BlazorClientApp.csproj +++ b/samples/layouts/expansion-panel/usage/BlazorClientApp.csproj @@ -10,7 +10,7 @@ - + diff --git a/samples/layouts/icon/sizing/BlazorClientApp.csproj b/samples/layouts/icon/sizing/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/layouts/icon/sizing/BlazorClientApp.csproj +++ b/samples/layouts/icon/sizing/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/layouts/icon/styling/BlazorClientApp.csproj b/samples/layouts/icon/styling/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/layouts/icon/styling/BlazorClientApp.csproj +++ b/samples/layouts/icon/styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/layouts/stepper/animations/BlazorClientApp.csproj b/samples/layouts/stepper/animations/BlazorClientApp.csproj index 35942dcd30..a4db6409f5 100644 --- a/samples/layouts/stepper/animations/BlazorClientApp.csproj +++ b/samples/layouts/stepper/animations/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/layouts/stepper/linear/BlazorClientApp.csproj b/samples/layouts/stepper/linear/BlazorClientApp.csproj index 04af81caf0..99f16ab4bd 100644 --- a/samples/layouts/stepper/linear/BlazorClientApp.csproj +++ b/samples/layouts/stepper/linear/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/layouts/stepper/orientation/BlazorClientApp.csproj b/samples/layouts/stepper/orientation/BlazorClientApp.csproj index 04af81caf0..99f16ab4bd 100644 --- a/samples/layouts/stepper/orientation/BlazorClientApp.csproj +++ b/samples/layouts/stepper/orientation/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/layouts/stepper/overview/BlazorClientApp.csproj b/samples/layouts/stepper/overview/BlazorClientApp.csproj index 04af81caf0..99f16ab4bd 100644 --- a/samples/layouts/stepper/overview/BlazorClientApp.csproj +++ b/samples/layouts/stepper/overview/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/layouts/stepper/steptypes/BlazorClientApp.csproj b/samples/layouts/stepper/steptypes/BlazorClientApp.csproj index 04af81caf0..99f16ab4bd 100644 --- a/samples/layouts/stepper/steptypes/BlazorClientApp.csproj +++ b/samples/layouts/stepper/steptypes/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/layouts/tabs/alignment/BlazorClientApp.csproj b/samples/layouts/tabs/alignment/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/layouts/tabs/alignment/BlazorClientApp.csproj +++ b/samples/layouts/tabs/alignment/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/layouts/tabs/overview/BlazorClientApp.csproj b/samples/layouts/tabs/overview/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/layouts/tabs/overview/BlazorClientApp.csproj +++ b/samples/layouts/tabs/overview/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/layouts/tabs/prefix-suffix/BlazorClientApp.csproj b/samples/layouts/tabs/prefix-suffix/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/layouts/tabs/prefix-suffix/BlazorClientApp.csproj +++ b/samples/layouts/tabs/prefix-suffix/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/layouts/tabs/scrolling/BlazorClientApp.csproj b/samples/layouts/tabs/scrolling/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/layouts/tabs/scrolling/BlazorClientApp.csproj +++ b/samples/layouts/tabs/scrolling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/maps/geo-map/binding-data-csv/BlazorClientApp.csproj b/samples/maps/geo-map/binding-data-csv/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/maps/geo-map/binding-data-csv/BlazorClientApp.csproj +++ b/samples/maps/geo-map/binding-data-csv/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/maps/geo-map/binding-data-json-points/BlazorClientApp.csproj b/samples/maps/geo-map/binding-data-json-points/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/maps/geo-map/binding-data-json-points/BlazorClientApp.csproj +++ b/samples/maps/geo-map/binding-data-json-points/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/maps/geo-map/binding-data-model/BlazorClientApp.csproj b/samples/maps/geo-map/binding-data-model/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/maps/geo-map/binding-data-model/BlazorClientApp.csproj +++ b/samples/maps/geo-map/binding-data-model/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/maps/geo-map/binding-multiple-shapes/BlazorClientApp.csproj b/samples/maps/geo-map/binding-multiple-shapes/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/BlazorClientApp.csproj +++ b/samples/maps/geo-map/binding-multiple-shapes/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/maps/geo-map/binding-multiple-sources/BlazorClientApp.csproj b/samples/maps/geo-map/binding-multiple-sources/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/maps/geo-map/binding-multiple-sources/BlazorClientApp.csproj +++ b/samples/maps/geo-map/binding-multiple-sources/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/maps/geo-map/binding-shp-points/BlazorClientApp.csproj b/samples/maps/geo-map/binding-shp-points/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/maps/geo-map/binding-shp-points/BlazorClientApp.csproj +++ b/samples/maps/geo-map/binding-shp-points/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/maps/geo-map/binding-shp-polygons/BlazorClientApp.csproj b/samples/maps/geo-map/binding-shp-polygons/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/maps/geo-map/binding-shp-polygons/BlazorClientApp.csproj +++ b/samples/maps/geo-map/binding-shp-polygons/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/maps/geo-map/binding-shp-polylines/BlazorClientApp.csproj b/samples/maps/geo-map/binding-shp-polylines/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/maps/geo-map/binding-shp-polylines/BlazorClientApp.csproj +++ b/samples/maps/geo-map/binding-shp-polylines/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/maps/geo-map/custom-tooltips/BlazorClientApp.csproj b/samples/maps/geo-map/custom-tooltips/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/maps/geo-map/custom-tooltips/BlazorClientApp.csproj +++ b/samples/maps/geo-map/custom-tooltips/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/maps/geo-map/display-all-imagery/BlazorClientApp.csproj b/samples/maps/geo-map/display-all-imagery/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/maps/geo-map/display-all-imagery/BlazorClientApp.csproj +++ b/samples/maps/geo-map/display-all-imagery/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/maps/geo-map/display-bing-imagery/BlazorClientApp.csproj b/samples/maps/geo-map/display-bing-imagery/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/maps/geo-map/display-bing-imagery/BlazorClientApp.csproj +++ b/samples/maps/geo-map/display-bing-imagery/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/maps/geo-map/display-esri-imagery/BlazorClientApp.csproj b/samples/maps/geo-map/display-esri-imagery/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/maps/geo-map/display-esri-imagery/BlazorClientApp.csproj +++ b/samples/maps/geo-map/display-esri-imagery/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/maps/geo-map/display-heat-imagery/BlazorClientApp.csproj b/samples/maps/geo-map/display-heat-imagery/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/maps/geo-map/display-heat-imagery/BlazorClientApp.csproj +++ b/samples/maps/geo-map/display-heat-imagery/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/maps/geo-map/display-osm-imagery/BlazorClientApp.csproj b/samples/maps/geo-map/display-osm-imagery/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/maps/geo-map/display-osm-imagery/BlazorClientApp.csproj +++ b/samples/maps/geo-map/display-osm-imagery/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/maps/geo-map/marker-template/BlazorClientApp.csproj b/samples/maps/geo-map/marker-template/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/maps/geo-map/marker-template/BlazorClientApp.csproj +++ b/samples/maps/geo-map/marker-template/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/maps/geo-map/marker-type/BlazorClientApp.csproj b/samples/maps/geo-map/marker-type/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/maps/geo-map/marker-type/BlazorClientApp.csproj +++ b/samples/maps/geo-map/marker-type/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/maps/geo-map/navigation/BlazorClientApp.csproj b/samples/maps/geo-map/navigation/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/maps/geo-map/navigation/BlazorClientApp.csproj +++ b/samples/maps/geo-map/navigation/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/maps/geo-map/overview/BlazorClientApp.csproj b/samples/maps/geo-map/overview/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/maps/geo-map/overview/BlazorClientApp.csproj +++ b/samples/maps/geo-map/overview/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/maps/geo-map/shape-styling/BlazorClientApp.csproj b/samples/maps/geo-map/shape-styling/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/maps/geo-map/shape-styling/BlazorClientApp.csproj +++ b/samples/maps/geo-map/shape-styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/maps/geo-map/synchronization/BlazorClientApp.csproj b/samples/maps/geo-map/synchronization/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/maps/geo-map/synchronization/BlazorClientApp.csproj +++ b/samples/maps/geo-map/synchronization/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/maps/geo-map/type-scatter-area-series/BlazorClientApp.csproj b/samples/maps/geo-map/type-scatter-area-series/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/maps/geo-map/type-scatter-area-series/BlazorClientApp.csproj +++ b/samples/maps/geo-map/type-scatter-area-series/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/maps/geo-map/type-scatter-bubble-series/BlazorClientApp.csproj b/samples/maps/geo-map/type-scatter-bubble-series/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/BlazorClientApp.csproj +++ b/samples/maps/geo-map/type-scatter-bubble-series/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/maps/geo-map/type-scatter-contour-series/BlazorClientApp.csproj b/samples/maps/geo-map/type-scatter-contour-series/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/BlazorClientApp.csproj +++ b/samples/maps/geo-map/type-scatter-contour-series/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/maps/geo-map/type-scatter-density-series/BlazorClientApp.csproj b/samples/maps/geo-map/type-scatter-density-series/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/maps/geo-map/type-scatter-density-series/BlazorClientApp.csproj +++ b/samples/maps/geo-map/type-scatter-density-series/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/maps/geo-map/type-scatter-symbol-series/BlazorClientApp.csproj b/samples/maps/geo-map/type-scatter-symbol-series/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/BlazorClientApp.csproj +++ b/samples/maps/geo-map/type-scatter-symbol-series/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/maps/geo-map/type-shape-polygon-series/BlazorClientApp.csproj b/samples/maps/geo-map/type-shape-polygon-series/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/BlazorClientApp.csproj +++ b/samples/maps/geo-map/type-shape-polygon-series/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/maps/geo-map/type-shape-polyline-series/BlazorClientApp.csproj b/samples/maps/geo-map/type-shape-polyline-series/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/BlazorClientApp.csproj +++ b/samples/maps/geo-map/type-shape-polyline-series/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/menus/nav-bar/overview/BlazorClientApp.csproj b/samples/menus/nav-bar/overview/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/menus/nav-bar/overview/BlazorClientApp.csproj +++ b/samples/menus/nav-bar/overview/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/menus/nav-bar/styling/BlazorClientApp.csproj b/samples/menus/nav-bar/styling/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/menus/nav-bar/styling/BlazorClientApp.csproj +++ b/samples/menus/nav-bar/styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/menus/nav-drawer/add-drawer-items/BlazorClientApp.csproj b/samples/menus/nav-drawer/add-drawer-items/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/menus/nav-drawer/add-drawer-items/BlazorClientApp.csproj +++ b/samples/menus/nav-drawer/add-drawer-items/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/menus/nav-drawer/add-mini/BlazorClientApp.csproj b/samples/menus/nav-drawer/add-mini/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/menus/nav-drawer/add-mini/BlazorClientApp.csproj +++ b/samples/menus/nav-drawer/add-mini/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/menus/nav-drawer/add-positions-navbar/BlazorClientApp.csproj b/samples/menus/nav-drawer/add-positions-navbar/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/menus/nav-drawer/add-positions-navbar/BlazorClientApp.csproj +++ b/samples/menus/nav-drawer/add-positions-navbar/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/menus/nav-drawer/styling/BlazorClientApp.csproj b/samples/menus/nav-drawer/styling/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/menus/nav-drawer/styling/BlazorClientApp.csproj +++ b/samples/menus/nav-drawer/styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/notifications/banner/banner-advanced-sample/BlazorClientApp.csproj b/samples/notifications/banner/banner-advanced-sample/BlazorClientApp.csproj index 0b5703dacf..eb6f1cf6bc 100644 --- a/samples/notifications/banner/banner-advanced-sample/BlazorClientApp.csproj +++ b/samples/notifications/banner/banner-advanced-sample/BlazorClientApp.csproj @@ -19,7 +19,7 @@ - + diff --git a/samples/notifications/banner/banner-sample-1/BlazorClientApp.csproj b/samples/notifications/banner/banner-sample-1/BlazorClientApp.csproj index 0b5703dacf..eb6f1cf6bc 100644 --- a/samples/notifications/banner/banner-sample-1/BlazorClientApp.csproj +++ b/samples/notifications/banner/banner-sample-1/BlazorClientApp.csproj @@ -19,7 +19,7 @@ - + diff --git a/samples/notifications/banner/banner-sample-2/BlazorClientApp.csproj b/samples/notifications/banner/banner-sample-2/BlazorClientApp.csproj index 0b5703dacf..eb6f1cf6bc 100644 --- a/samples/notifications/banner/banner-sample-2/BlazorClientApp.csproj +++ b/samples/notifications/banner/banner-sample-2/BlazorClientApp.csproj @@ -19,7 +19,7 @@ - + diff --git a/samples/notifications/banner/banner-styling/BlazorClientApp.csproj b/samples/notifications/banner/banner-styling/BlazorClientApp.csproj index 0b5703dacf..eb6f1cf6bc 100644 --- a/samples/notifications/banner/banner-styling/BlazorClientApp.csproj +++ b/samples/notifications/banner/banner-styling/BlazorClientApp.csproj @@ -19,7 +19,7 @@ - + diff --git a/samples/notifications/dialog/closing-variations/BlazorClientApp.csproj b/samples/notifications/dialog/closing-variations/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/notifications/dialog/closing-variations/BlazorClientApp.csproj +++ b/samples/notifications/dialog/closing-variations/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/notifications/dialog/form/BlazorClientApp.csproj b/samples/notifications/dialog/form/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/notifications/dialog/form/BlazorClientApp.csproj +++ b/samples/notifications/dialog/form/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/notifications/dialog/overview/BlazorClientApp.csproj b/samples/notifications/dialog/overview/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/notifications/dialog/overview/BlazorClientApp.csproj +++ b/samples/notifications/dialog/overview/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/notifications/dialog/styling/BlazorClientApp.csproj b/samples/notifications/dialog/styling/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/notifications/dialog/styling/BlazorClientApp.csproj +++ b/samples/notifications/dialog/styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/notifications/snackbar/action-text/BlazorClientApp.csproj b/samples/notifications/snackbar/action-text/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/notifications/snackbar/action-text/BlazorClientApp.csproj +++ b/samples/notifications/snackbar/action-text/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/notifications/snackbar/display-time/BlazorClientApp.csproj b/samples/notifications/snackbar/display-time/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/notifications/snackbar/display-time/BlazorClientApp.csproj +++ b/samples/notifications/snackbar/display-time/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/notifications/snackbar/overview/BlazorClientApp.csproj b/samples/notifications/snackbar/overview/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/notifications/snackbar/overview/BlazorClientApp.csproj +++ b/samples/notifications/snackbar/overview/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/notifications/snackbar/styling/BlazorClientApp.csproj b/samples/notifications/snackbar/styling/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/notifications/snackbar/styling/BlazorClientApp.csproj +++ b/samples/notifications/snackbar/styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/notifications/toast/overview/BlazorClientApp.csproj b/samples/notifications/toast/overview/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/notifications/toast/overview/BlazorClientApp.csproj +++ b/samples/notifications/toast/overview/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/notifications/toast/properties/BlazorClientApp.csproj b/samples/notifications/toast/properties/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/notifications/toast/properties/BlazorClientApp.csproj +++ b/samples/notifications/toast/properties/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/notifications/toast/styling/BlazorClientApp.csproj b/samples/notifications/toast/styling/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/notifications/toast/styling/BlazorClientApp.csproj +++ b/samples/notifications/toast/styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/scheduling/calendar/disabled-dates/BlazorClientApp.csproj b/samples/scheduling/calendar/disabled-dates/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/scheduling/calendar/disabled-dates/BlazorClientApp.csproj +++ b/samples/scheduling/calendar/disabled-dates/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/scheduling/calendar/formatting/BlazorClientApp.csproj b/samples/scheduling/calendar/formatting/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/scheduling/calendar/formatting/BlazorClientApp.csproj +++ b/samples/scheduling/calendar/formatting/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/scheduling/calendar/header/BlazorClientApp.csproj b/samples/scheduling/calendar/header/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/scheduling/calendar/header/BlazorClientApp.csproj +++ b/samples/scheduling/calendar/header/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/scheduling/calendar/multiple-months/BlazorClientApp.csproj b/samples/scheduling/calendar/multiple-months/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/scheduling/calendar/multiple-months/BlazorClientApp.csproj +++ b/samples/scheduling/calendar/multiple-months/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/scheduling/calendar/multiple-selection/BlazorClientApp.csproj b/samples/scheduling/calendar/multiple-selection/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/scheduling/calendar/multiple-selection/BlazorClientApp.csproj +++ b/samples/scheduling/calendar/multiple-selection/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/scheduling/calendar/overview/BlazorClientApp.csproj b/samples/scheduling/calendar/overview/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/scheduling/calendar/overview/BlazorClientApp.csproj +++ b/samples/scheduling/calendar/overview/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/scheduling/calendar/range-selection/BlazorClientApp.csproj b/samples/scheduling/calendar/range-selection/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/scheduling/calendar/range-selection/BlazorClientApp.csproj +++ b/samples/scheduling/calendar/range-selection/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/scheduling/calendar/size/BlazorClientApp.csproj b/samples/scheduling/calendar/size/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/scheduling/calendar/size/BlazorClientApp.csproj +++ b/samples/scheduling/calendar/size/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/scheduling/calendar/special-dates/BlazorClientApp.csproj b/samples/scheduling/calendar/special-dates/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/scheduling/calendar/special-dates/BlazorClientApp.csproj +++ b/samples/scheduling/calendar/special-dates/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/scheduling/calendar/styling/BlazorClientApp.csproj b/samples/scheduling/calendar/styling/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/scheduling/calendar/styling/BlazorClientApp.csproj +++ b/samples/scheduling/calendar/styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/scheduling/calendar/week-numbers/BlazorClientApp.csproj b/samples/scheduling/calendar/week-numbers/BlazorClientApp.csproj index 44a745b992..175ef6052c 100644 --- a/samples/scheduling/calendar/week-numbers/BlazorClientApp.csproj +++ b/samples/scheduling/calendar/week-numbers/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/scheduling/date-picker/dialog-mode/BlazorClientApp.csproj b/samples/scheduling/date-picker/dialog-mode/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/scheduling/date-picker/dialog-mode/BlazorClientApp.csproj +++ b/samples/scheduling/date-picker/dialog-mode/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/scheduling/date-picker/form/BlazorClientApp.csproj b/samples/scheduling/date-picker/form/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/scheduling/date-picker/form/BlazorClientApp.csproj +++ b/samples/scheduling/date-picker/form/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/scheduling/date-picker/format/BlazorClientApp.csproj b/samples/scheduling/date-picker/format/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/scheduling/date-picker/format/BlazorClientApp.csproj +++ b/samples/scheduling/date-picker/format/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/scheduling/date-picker/overview/BlazorClientApp.csproj b/samples/scheduling/date-picker/overview/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/scheduling/date-picker/overview/BlazorClientApp.csproj +++ b/samples/scheduling/date-picker/overview/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/scheduling/date-picker/styling/BlazorClientApp.csproj b/samples/scheduling/date-picker/styling/BlazorClientApp.csproj index 695ad34ae0..ed10c7849c 100644 --- a/samples/scheduling/date-picker/styling/BlazorClientApp.csproj +++ b/samples/scheduling/date-picker/styling/BlazorClientApp.csproj @@ -12,7 +12,7 @@ - + From 3be5b7a4982653201ee421ce350048864bdafb13 Mon Sep 17 00:00:00 2001 From: tfsbuild Date: Mon, 2 Jun 2025 21:31:20 +0300 Subject: [PATCH 6/8] Adding changes from build igniteui-xplat-examples-output+PRs_2025.6.2.3 --- .../charts/category-chart/overview/App.razor | 2 +- .../local-data-source-dashboard/App.razor | 37 + .../BlazorClientApp.csproj | 21 + .../BlazorClientApp.sln | 25 + .../local-data-source-dashboard/Program.cs | 33 + .../Properties/launchSettings.json | 27 + .../RetailSalesPerformanceLocalDataSource.cs | 931 ++++++ .../_Imports.razor | 9 + .../wwwroot/index.css | 4 + .../wwwroot/index.html | 30 + .../AnnotationBandData.cs | 32 + .../data-annotation-band-layer/App.razor | 185 ++ .../BlazorClientApp.csproj | 21 + .../BlazorClientApp.sln | 25 + .../data-annotation-band-layer/Program.cs | 38 + .../Properties/launchSettings.json | 27 + .../data-annotation-band-layer/StockTesla.cs | 2518 +++++++++++++++++ .../data-annotation-band-layer/_Imports.razor | 9 + .../wwwroot/index.css | 4 + .../wwwroot/index.html | 30 + .../AnnotationLineData1.cs | 34 + .../AnnotationLineData2.cs | 36 + .../data-annotation-line-layer/App.razor | 209 ++ .../BlazorClientApp.csproj | 21 + .../BlazorClientApp.sln | 25 + .../data-annotation-line-layer/Program.cs | 38 + .../Properties/launchSettings.json | 27 + .../data-annotation-line-layer/StockTesla.cs | 2518 +++++++++++++++++ .../data-annotation-line-layer/_Imports.razor | 9 + .../wwwroot/index.css | 4 + .../wwwroot/index.html | 30 + .../AnnotationSliceMultiOverlayData.cs | 18 + .../App.razor | 149 + .../BlazorClientApp.csproj | 21 + .../BlazorClientApp.sln | 25 + .../Program.cs | 37 + .../Properties/launchSettings.json | 27 + .../StockTesla.cs | 2518 +++++++++++++++++ .../_Imports.razor | 9 + .../wwwroot/index.css | 4 + .../wwwroot/index.html | 30 + .../AnnotationLineData1.cs | 34 + .../AnnotationLineData2.cs | 36 + .../AnnotationSliceEarningsBeatData.cs | 30 + .../AnnotationSliceEarningsMissData.cs | 30 + .../AnnotationSliceStockSplitData.cs | 25 + .../AnnotationStripData.cs | 34 + .../App.razor | 371 +++ .../BlazorClientApp.csproj | 21 + .../BlazorClientApp.sln | 25 + .../Program.cs | 40 + .../Properties/launchSettings.json | 27 + .../StockTesla.cs | 2518 +++++++++++++++++ .../_Imports.razor | 9 + .../wwwroot/index.css | 4 + .../wwwroot/index.html | 30 + .../AnnotationRectData.cs | 35 + .../data-annotation-rect-layer/App.razor | 147 + .../BlazorClientApp.csproj | 21 + .../BlazorClientApp.sln | 25 + .../data-annotation-rect-layer/Program.cs | 38 + .../Properties/launchSettings.json | 27 + .../data-annotation-rect-layer/StockTesla.cs | 2518 +++++++++++++++++ .../data-annotation-rect-layer/_Imports.razor | 9 + .../wwwroot/index.css | 4 + .../wwwroot/index.html | 30 + .../AnnotationSliceEarningsBeatData.cs | 30 + .../AnnotationSliceEarningsMissData.cs | 30 + .../AnnotationSliceStockSplitData.cs | 25 + .../data-annotation-slice-layer/App.razor | 240 ++ .../BlazorClientApp.csproj | 21 + .../BlazorClientApp.sln | 25 + .../data-annotation-slice-layer/Program.cs | 38 + .../Properties/launchSettings.json | 27 + .../data-annotation-slice-layer/StockTesla.cs | 2518 +++++++++++++++++ .../_Imports.razor | 9 + .../wwwroot/index.css | 4 + .../wwwroot/index.html | 30 + .../AnnotationStripData.cs | 34 + .../data-annotation-strip-layer/App.razor | 183 ++ .../BlazorClientApp.csproj | 21 + .../BlazorClientApp.sln | 25 + .../data-annotation-strip-layer/Program.cs | 38 + .../Properties/launchSettings.json | 27 + .../data-annotation-strip-layer/StockTesla.cs | 2518 +++++++++++++++++ .../_Imports.razor | 9 + .../wwwroot/index.css | 4 + .../wwwroot/index.html | 30 + .../WorldStats.cs | 98 +- .../WorldStats.cs | 98 +- .../WorldStats.cs | 98 +- samples/grids/grid/action-strip/App.razor | 28 - .../grids/grid/binding-crud-data/App.razor | 20 - .../grid/column-hiding-options/App.razor | 40 - .../column-hiding-toolbar-style/App.razor | 40 - .../grid/column-hiding-toolbar/App.razor | 40 - samples/grids/grid/column-resizing/App.razor | 40 - .../grid/data-batch-editing-actions/App.razor | 40 - .../grids/grid/data-summary-options/App.razor | 24 - .../App.razor | 40 - .../data-validator-service-extended/App.razor | 40 - .../grid/data-validator-service/App.razor | 56 +- samples/grids/grid/editing-events/App.razor | 8 - .../excel-style-filtering-sample-1/App.razor | 38 +- .../excel-style-filtering-sample-2/App.razor | 38 +- .../excel-style-filtering-sample-3/App.razor | 38 +- .../excel-style-filtering-style/App.razor | 38 +- .../external-advanced-filtering/App.razor | 20 - .../grids/grid/filtering-options/App.razor | 20 - samples/grids/grid/filtering-style/App.razor | 38 +- samples/grids/grid/groupby-styling/App.razor | 56 +- .../grid/keyboard-custom-navigation/App.razor | 24 - .../grid/keyboard-mrl-navigation/App.razor | 44 - .../multi-column-headers-export/App.razor | 44 - .../grids/grid/remote-paging-data/App.razor | 24 - samples/grids/grid/row-adding/App.razor | 28 - samples/grids/grid/row-classes/App.razor | 24 - .../grids/grid/row-pinning-style/App.razor | 32 - .../grids/grid/styling-custom-css/App.razor | 12 - .../multi-column-headers-styling/App.razor | 2 +- .../multi-column-headers-template/App.razor | 2 +- 121 files changed, 22014 insertions(+), 989 deletions(-) create mode 100644 samples/charts/dashboard-tile/local-data-source-dashboard/App.razor create mode 100644 samples/charts/dashboard-tile/local-data-source-dashboard/BlazorClientApp.csproj create mode 100644 samples/charts/dashboard-tile/local-data-source-dashboard/BlazorClientApp.sln create mode 100644 samples/charts/dashboard-tile/local-data-source-dashboard/Program.cs create mode 100644 samples/charts/dashboard-tile/local-data-source-dashboard/Properties/launchSettings.json create mode 100644 samples/charts/dashboard-tile/local-data-source-dashboard/RetailSalesPerformanceLocalDataSource.cs create mode 100644 samples/charts/dashboard-tile/local-data-source-dashboard/_Imports.razor create mode 100644 samples/charts/dashboard-tile/local-data-source-dashboard/wwwroot/index.css create mode 100644 samples/charts/dashboard-tile/local-data-source-dashboard/wwwroot/index.html create mode 100644 samples/charts/data-chart/data-annotation-band-layer/AnnotationBandData.cs create mode 100644 samples/charts/data-chart/data-annotation-band-layer/App.razor create mode 100644 samples/charts/data-chart/data-annotation-band-layer/BlazorClientApp.csproj create mode 100644 samples/charts/data-chart/data-annotation-band-layer/BlazorClientApp.sln create mode 100644 samples/charts/data-chart/data-annotation-band-layer/Program.cs create mode 100644 samples/charts/data-chart/data-annotation-band-layer/Properties/launchSettings.json create mode 100644 samples/charts/data-chart/data-annotation-band-layer/StockTesla.cs create mode 100644 samples/charts/data-chart/data-annotation-band-layer/_Imports.razor create mode 100644 samples/charts/data-chart/data-annotation-band-layer/wwwroot/index.css create mode 100644 samples/charts/data-chart/data-annotation-band-layer/wwwroot/index.html create mode 100644 samples/charts/data-chart/data-annotation-line-layer/AnnotationLineData1.cs create mode 100644 samples/charts/data-chart/data-annotation-line-layer/AnnotationLineData2.cs create mode 100644 samples/charts/data-chart/data-annotation-line-layer/App.razor create mode 100644 samples/charts/data-chart/data-annotation-line-layer/BlazorClientApp.csproj create mode 100644 samples/charts/data-chart/data-annotation-line-layer/BlazorClientApp.sln create mode 100644 samples/charts/data-chart/data-annotation-line-layer/Program.cs create mode 100644 samples/charts/data-chart/data-annotation-line-layer/Properties/launchSettings.json create mode 100644 samples/charts/data-chart/data-annotation-line-layer/StockTesla.cs create mode 100644 samples/charts/data-chart/data-annotation-line-layer/_Imports.razor create mode 100644 samples/charts/data-chart/data-annotation-line-layer/wwwroot/index.css create mode 100644 samples/charts/data-chart/data-annotation-line-layer/wwwroot/index.html create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-overlay-text/AnnotationSliceMultiOverlayData.cs create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-overlay-text/App.razor create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-overlay-text/BlazorClientApp.csproj create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-overlay-text/BlazorClientApp.sln create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-overlay-text/Program.cs create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-overlay-text/Properties/launchSettings.json create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-overlay-text/StockTesla.cs create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-overlay-text/_Imports.razor create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-overlay-text/wwwroot/index.css create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-overlay-text/wwwroot/index.html create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-stocks/AnnotationLineData1.cs create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-stocks/AnnotationLineData2.cs create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-stocks/AnnotationSliceEarningsBeatData.cs create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-stocks/AnnotationSliceEarningsMissData.cs create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-stocks/AnnotationSliceStockSplitData.cs create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-stocks/AnnotationStripData.cs create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-stocks/App.razor create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-stocks/BlazorClientApp.csproj create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-stocks/BlazorClientApp.sln create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-stocks/Program.cs create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-stocks/Properties/launchSettings.json create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-stocks/StockTesla.cs create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-stocks/_Imports.razor create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-stocks/wwwroot/index.css create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-stocks/wwwroot/index.html create mode 100644 samples/charts/data-chart/data-annotation-rect-layer/AnnotationRectData.cs create mode 100644 samples/charts/data-chart/data-annotation-rect-layer/App.razor create mode 100644 samples/charts/data-chart/data-annotation-rect-layer/BlazorClientApp.csproj create mode 100644 samples/charts/data-chart/data-annotation-rect-layer/BlazorClientApp.sln create mode 100644 samples/charts/data-chart/data-annotation-rect-layer/Program.cs create mode 100644 samples/charts/data-chart/data-annotation-rect-layer/Properties/launchSettings.json create mode 100644 samples/charts/data-chart/data-annotation-rect-layer/StockTesla.cs create mode 100644 samples/charts/data-chart/data-annotation-rect-layer/_Imports.razor create mode 100644 samples/charts/data-chart/data-annotation-rect-layer/wwwroot/index.css create mode 100644 samples/charts/data-chart/data-annotation-rect-layer/wwwroot/index.html create mode 100644 samples/charts/data-chart/data-annotation-slice-layer/AnnotationSliceEarningsBeatData.cs create mode 100644 samples/charts/data-chart/data-annotation-slice-layer/AnnotationSliceEarningsMissData.cs create mode 100644 samples/charts/data-chart/data-annotation-slice-layer/AnnotationSliceStockSplitData.cs create mode 100644 samples/charts/data-chart/data-annotation-slice-layer/App.razor create mode 100644 samples/charts/data-chart/data-annotation-slice-layer/BlazorClientApp.csproj create mode 100644 samples/charts/data-chart/data-annotation-slice-layer/BlazorClientApp.sln create mode 100644 samples/charts/data-chart/data-annotation-slice-layer/Program.cs create mode 100644 samples/charts/data-chart/data-annotation-slice-layer/Properties/launchSettings.json create mode 100644 samples/charts/data-chart/data-annotation-slice-layer/StockTesla.cs create mode 100644 samples/charts/data-chart/data-annotation-slice-layer/_Imports.razor create mode 100644 samples/charts/data-chart/data-annotation-slice-layer/wwwroot/index.css create mode 100644 samples/charts/data-chart/data-annotation-slice-layer/wwwroot/index.html create mode 100644 samples/charts/data-chart/data-annotation-strip-layer/AnnotationStripData.cs create mode 100644 samples/charts/data-chart/data-annotation-strip-layer/App.razor create mode 100644 samples/charts/data-chart/data-annotation-strip-layer/BlazorClientApp.csproj create mode 100644 samples/charts/data-chart/data-annotation-strip-layer/BlazorClientApp.sln create mode 100644 samples/charts/data-chart/data-annotation-strip-layer/Program.cs create mode 100644 samples/charts/data-chart/data-annotation-strip-layer/Properties/launchSettings.json create mode 100644 samples/charts/data-chart/data-annotation-strip-layer/StockTesla.cs create mode 100644 samples/charts/data-chart/data-annotation-strip-layer/_Imports.razor create mode 100644 samples/charts/data-chart/data-annotation-strip-layer/wwwroot/index.css create mode 100644 samples/charts/data-chart/data-annotation-strip-layer/wwwroot/index.html diff --git a/samples/charts/category-chart/overview/App.razor b/samples/charts/category-chart/overview/App.razor index c87097883f..4e8750117c 100644 --- a/samples/charts/category-chart/overview/App.razor +++ b/samples/charts/category-chart/overview/App.razor @@ -2,7 +2,7 @@
- Olympic Medals By Country + Olympic Medals by Country
+
+ + + +
+
+ +@code { + + protected override async Task OnAfterRenderAsync(bool firstRender) + { + var dashboard = this.dashboard; + + } + + private IgbDashboardTile dashboard; + + private RetailSalesPerformanceLocalDataSource _retailSalesPerformanceLocalDataSource = null; + public RetailSalesPerformanceLocalDataSource RetailSalesPerformanceLocalDataSource + { + get + { + if (_retailSalesPerformanceLocalDataSource == null) + { + _retailSalesPerformanceLocalDataSource = new RetailSalesPerformanceLocalDataSource(); + } + return _retailSalesPerformanceLocalDataSource; + } + } + +} \ No newline at end of file diff --git a/samples/charts/dashboard-tile/local-data-source-dashboard/BlazorClientApp.csproj b/samples/charts/dashboard-tile/local-data-source-dashboard/BlazorClientApp.csproj new file mode 100644 index 0000000000..ed10c7849c --- /dev/null +++ b/samples/charts/dashboard-tile/local-data-source-dashboard/BlazorClientApp.csproj @@ -0,0 +1,21 @@ + + + + net9.0 + 3.0 + Infragistics.Samples + Infragistics.Samples + + + + 1701;1702,IDE0028,BL0005,0219,CS1998 + + + + + + + + + + diff --git a/samples/charts/dashboard-tile/local-data-source-dashboard/BlazorClientApp.sln b/samples/charts/dashboard-tile/local-data-source-dashboard/BlazorClientApp.sln new file mode 100644 index 0000000000..1e2eda208a --- /dev/null +++ b/samples/charts/dashboard-tile/local-data-source-dashboard/BlazorClientApp.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BlazorClientApp", "BlazorClientApp.csproj", "{F69CC3F0-BCD1-4CE6-9F39-CBED14E7FA78}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {F69CC3F0-BCD1-4CE6-9F39-CBED14E7FA78}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F69CC3F0-BCD1-4CE6-9F39-CBED14E7FA78}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F69CC3F0-BCD1-4CE6-9F39-CBED14E7FA78}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F69CC3F0-BCD1-4CE6-9F39-CBED14E7FA78}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {FC52AAC8-4488-40AE-9621-75F6BA744B18} + EndGlobalSection +EndGlobal diff --git a/samples/charts/dashboard-tile/local-data-source-dashboard/Program.cs b/samples/charts/dashboard-tile/local-data-source-dashboard/Program.cs new file mode 100644 index 0000000000..4723c41bb0 --- /dev/null +++ b/samples/charts/dashboard-tile/local-data-source-dashboard/Program.cs @@ -0,0 +1,33 @@ +using System; +using System.Net.Http; +using System.Collections.Generic; +using System.Threading.Tasks; +using System.Text; +using Microsoft.AspNetCore.Components.WebAssembly.Hosting; +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.Logging; +using IgniteUI.Blazor.Controls; // for registering Ignite UI modules + +namespace Infragistics.Samples +{ + public class Program + { + public static async Task Main(string[] args) + { + var builder = WebAssemblyHostBuilder.CreateDefault(args); + builder.RootComponents.Add("app"); + builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) }); + // registering Ignite UI modules + builder.Services.AddIgniteUIBlazor( + typeof(IgbDashboardTileModule), + typeof(IgbDataChartDashboardTileModule), + typeof(IgbGeographicMapDashboardTileModule), + typeof(IgbLinearGaugeDashboardTileModule), + typeof(IgbPieChartDashboardTileModule), + typeof(IgbRadialGaugeDashboardTileModule) + ); + await builder.Build().RunAsync(); + } + } +} diff --git a/samples/charts/dashboard-tile/local-data-source-dashboard/Properties/launchSettings.json b/samples/charts/dashboard-tile/local-data-source-dashboard/Properties/launchSettings.json new file mode 100644 index 0000000000..18bd6fb5bc --- /dev/null +++ b/samples/charts/dashboard-tile/local-data-source-dashboard/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:4200", + "sslPort": 44385 + } + }, + "profiles": { + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "BlazorSamples": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:4200" + } + } +} \ No newline at end of file diff --git a/samples/charts/dashboard-tile/local-data-source-dashboard/RetailSalesPerformanceLocalDataSource.cs b/samples/charts/dashboard-tile/local-data-source-dashboard/RetailSalesPerformanceLocalDataSource.cs new file mode 100644 index 0000000000..512be822f2 --- /dev/null +++ b/samples/charts/dashboard-tile/local-data-source-dashboard/RetailSalesPerformanceLocalDataSource.cs @@ -0,0 +1,931 @@ +//begin data + using System; + using System.Collections.Generic; + using System.Text.Json; + using System.Collections.ObjectModel; + using IgniteUI.Blazor.Controls; + + public class RetailSalesPerformanceLocalDataSource : IgbLocalDataSource + { + + public RetailSalesPerformanceLocalDataSource(){ + + List data = new List(); + + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Home Appliances", + Subcategory = "Cleaning", + Product = "Vacuum A", + Sales = 694, + Revenue = 528828, + Profit = 105765.6 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Home Appliances", + Subcategory = "Cleaning", + Product = "Mop B", + Sales = 675, + Revenue = 382050, + Profit = 76410.0 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Electronics", + Subcategory = "Laptops", + Product = "Laptop C", + Sales = 671, + Revenue = 504592, + Profit = 100918.40000000001 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Furniture", + Subcategory = "Bedroom", + Product = "Wardrobe B", + Sales = 212, + Revenue = 54060, + Profit = 10812.0 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Home Appliances", + Subcategory = "Kitchen", + Product = "Blender A", + Sales = 181, + Revenue = 79821, + Profit = 15964.2 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Furniture", + Subcategory = "Bedroom", + Product = "Dresser C", + Sales = 434, + Revenue = 148428, + Profit = 29685.600000000002 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Furniture", + Subcategory = "Office", + Product = "Desk A", + Sales = 441, + Revenue = 244314, + Profit = 48862.8 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Furniture", + Subcategory = "Bedroom", + Product = "Dresser C", + Sales = 429, + Revenue = 167739, + Profit = 33547.8 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Furniture", + Subcategory = "Office", + Product = "Desk A", + Sales = 537, + Revenue = 516594, + Profit = 103318.8 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Home Appliances", + Subcategory = "Cleaning", + Product = "Broom C", + Sales = 439, + Revenue = 340225, + Profit = 68045.0 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Home Appliances", + Subcategory = "Laundry", + Product = "Dryer B", + Sales = 338, + Revenue = 176774, + Profit = 35354.8 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Home Appliances", + Subcategory = "Laundry", + Product = "Iron C", + Sales = 510, + Revenue = 380460, + Profit = 76092.0 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Electronics", + Subcategory = "Mobile Phones", + Product = "Smartphone A", + Sales = 882, + Revenue = 480690, + Profit = 96138.0 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Home Appliances", + Subcategory = "Kitchen", + Product = "Microwave B", + Sales = 504, + Revenue = 195048, + Profit = 39009.6 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Furniture", + Subcategory = "Office", + Product = "Desk A", + Sales = 633, + Revenue = 243072, + Profit = 48614.4 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Home Appliances", + Subcategory = "Cleaning", + Product = "Broom C", + Sales = 772, + Revenue = 470148, + Profit = 94029.6 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Electronics", + Subcategory = "Tablets", + Product = "Tablet B", + Sales = 910, + Revenue = 413140, + Profit = 82628.0 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Furniture", + Subcategory = "Bedroom", + Product = "Dresser C", + Sales = 53, + Revenue = 48813, + Profit = 9762.6 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Electronics", + Subcategory = "Mobile Phones", + Product = "Smartphone C", + Sales = 741, + Revenue = 259350, + Profit = 51870.0 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Home Appliances", + Subcategory = "Cleaning", + Product = "Vacuum A", + Sales = 944, + Revenue = 607936, + Profit = 121587.20000000001 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Home Appliances", + Subcategory = "Kitchen", + Product = "Toaster C", + Sales = 644, + Revenue = 293020, + Profit = 58604.0 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Electronics", + Subcategory = "Tablets", + Product = "Tablet B", + Sales = 692, + Revenue = 405512, + Profit = 81102.40000000001 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Furniture", + Subcategory = "Living Room", + Product = "Coffee Table B", + Sales = 378, + Revenue = 300888, + Profit = 60177.600000000006 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Furniture", + Subcategory = "Bedroom", + Product = "Bed A", + Sales = 717, + Revenue = 205779, + Profit = 41155.8 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Home Appliances", + Subcategory = "Laundry", + Product = "Washing Machine", + Sales = 399, + Revenue = 83391, + Profit = 16678.2 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Home Appliances", + Subcategory = "Laundry", + Product = "Dryer B", + Sales = 107, + Revenue = 55533, + Profit = 11106.6 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Electronics", + Subcategory = "Mobile Phones", + Product = "Smartphone A", + Sales = 853, + Revenue = 512653, + Profit = 102530.6 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Home Appliances", + Subcategory = "Kitchen", + Product = "Toaster C", + Sales = 830, + Revenue = 392590, + Profit = 78518.0 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Electronics", + Subcategory = "Mobile Phones", + Product = "Smartphone C", + Sales = 527, + Revenue = 463760, + Profit = 92752.0 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Home Appliances", + Subcategory = "Kitchen", + Product = "Toaster C", + Sales = 847, + Revenue = 579348, + Profit = 115869.6 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Furniture", + Subcategory = "Living Room", + Product = "TV Stand C", + Sales = 692, + Revenue = 382676, + Profit = 76535.2 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Electronics", + Subcategory = "Laptops", + Product = "Laptop A", + Sales = 799, + Revenue = 288439, + Profit = 57687.8 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Furniture", + Subcategory = "Living Room", + Product = "Coffee Table B", + Sales = 764, + Revenue = 374360, + Profit = 74872.0 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Furniture", + Subcategory = "Living Room", + Product = "TV Stand C", + Sales = 263, + Revenue = 88894, + Profit = 17778.8 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Furniture", + Subcategory = "Bedroom", + Product = "Bed A", + Sales = 784, + Revenue = 254800, + Profit = 50960.0 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Home Appliances", + Subcategory = "Laundry", + Product = "Dryer B", + Sales = 958, + Revenue = 695508, + Profit = 139101.6 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Electronics", + Subcategory = "Laptops", + Product = "Laptop B", + Sales = 528, + Revenue = 209616, + Profit = 41923.200000000004 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Electronics", + Subcategory = "Laptops", + Product = "Laptop B", + Sales = 499, + Revenue = 257983, + Profit = 51596.600000000006 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Furniture", + Subcategory = "Office", + Product = "Bookshelf C", + Sales = 385, + Revenue = 346500, + Profit = 69300.0 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Electronics", + Subcategory = "Mobile Phones", + Product = "Smartphone A", + Sales = 388, + Revenue = 84972, + Profit = 16994.4 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Home Appliances", + Subcategory = "Laundry", + Product = "Dryer B", + Sales = 347, + Revenue = 99936, + Profit = 19987.2 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Furniture", + Subcategory = "Office", + Product = "Bookshelf C", + Sales = 337, + Revenue = 252413, + Profit = 50482.600000000006 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Electronics", + Subcategory = "Laptops", + Product = "Laptop B", + Sales = 985, + Revenue = 246250, + Profit = 49250.0 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Furniture", + Subcategory = "Living Room", + Product = "TV Stand C", + Sales = 881, + Revenue = 870428, + Profit = 174085.6 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Furniture", + Subcategory = "Bedroom", + Product = "Wardrobe B", + Sales = 508, + Revenue = 325628, + Profit = 65125.600000000006 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Furniture", + Subcategory = "Office", + Product = "Chair B", + Sales = 87, + Revenue = 85347, + Profit = 17069.4 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Furniture", + Subcategory = "Bedroom", + Product = "Dresser C", + Sales = 86, + Revenue = 50740, + Profit = 10148.0 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Electronics", + Subcategory = "Laptops", + Product = "Laptop B", + Sales = 699, + Revenue = 320142, + Profit = 64028.4 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Home Appliances", + Subcategory = "Cleaning", + Product = "Vacuum A", + Sales = 57, + Revenue = 12483, + Profit = 2496.6000000000004 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Electronics", + Subcategory = "Tablets", + Product = "Tablet C", + Sales = 65, + Revenue = 15860, + Profit = 3172.0 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Furniture", + Subcategory = "Living Room", + Product = "Sofa A", + Sales = 67, + Revenue = 39396, + Profit = 7879.200000000001 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Furniture", + Subcategory = "Living Room", + Product = "Sofa A", + Sales = 835, + Revenue = 617065, + Profit = 123413.0 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Furniture", + Subcategory = "Bedroom", + Product = "Wardrobe B", + Sales = 333, + Revenue = 115884, + Profit = 23176.800000000003 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Electronics", + Subcategory = "Laptops", + Product = "Laptop A", + Sales = 802, + Revenue = 737840, + Profit = 147568.0 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Furniture", + Subcategory = "Living Room", + Product = "Sofa A", + Sales = 483, + Revenue = 318780, + Profit = 63756.0 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Home Appliances", + Subcategory = "Cleaning", + Product = "Vacuum A", + Sales = 586, + Revenue = 395550, + Profit = 79110.0 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Furniture", + Subcategory = "Living Room", + Product = "TV Stand C", + Sales = 971, + Revenue = 208765, + Profit = 41753.0 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Furniture", + Subcategory = "Bedroom", + Product = "Wardrobe B", + Sales = 464, + Revenue = 409248, + Profit = 81849.6 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Electronics", + Subcategory = "Tablets", + Product = "Tablet A", + Sales = 933, + Revenue = 880752, + Profit = 176150.40000000002 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Home Appliances", + Subcategory = "Laundry", + Product = "Washing Machine", + Sales = 812, + Revenue = 614684, + Profit = 122936.8 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Furniture", + Subcategory = "Living Room", + Product = "Coffee Table B", + Sales = 499, + Revenue = 398202, + Profit = 79640.40000000001 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Home Appliances", + Subcategory = "Laundry", + Product = "Dryer B", + Sales = 376, + Revenue = 344040, + Profit = 68808.0 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Electronics", + Subcategory = "Tablets", + Product = "Tablet A", + Sales = 368, + Revenue = 354384, + Profit = 70876.8 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Home Appliances", + Subcategory = "Cleaning", + Product = "Broom C", + Sales = 539, + Revenue = 446831, + Profit = 89366.20000000001 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Furniture", + Subcategory = "Living Room", + Product = "Sofa A", + Sales = 954, + Revenue = 221328, + Profit = 44265.600000000006 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Electronics", + Subcategory = "Tablets", + Product = "Tablet A", + Sales = 118, + Revenue = 69856, + Profit = 13971.2 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Home Appliances", + Subcategory = "Laundry", + Product = "Washing Machine", + Sales = 839, + Revenue = 315464, + Profit = 63092.8 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Home Appliances", + Subcategory = "Cleaning", + Product = "Broom C", + Sales = 207, + Revenue = 42435, + Profit = 8487.0 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Furniture", + Subcategory = "Office", + Product = "Chair B", + Sales = 604, + Revenue = 197508, + Profit = 39501.600000000006 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Furniture", + Subcategory = "Office", + Product = "Bookshelf C", + Sales = 187, + Revenue = 171479, + Profit = 34295.8 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Home Appliances", + Subcategory = "Cleaning", + Product = "Vacuum A", + Sales = 709, + Revenue = 627465, + Profit = 125493.0 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Electronics", + Subcategory = "Mobile Phones", + Product = "Smartphone B", + Sales = 197, + Revenue = 51811, + Profit = 10362.2 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Home Appliances", + Subcategory = "Cleaning", + Product = "Vacuum A", + Sales = 374, + Revenue = 147356, + Profit = 29471.2 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Home Appliances", + Subcategory = "Cleaning", + Product = "Mop B", + Sales = 340, + Revenue = 82280, + Profit = 16456.0 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Electronics", + Subcategory = "Mobile Phones", + Product = "Smartphone C", + Sales = 538, + Revenue = 432014, + Profit = 86402.8 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Furniture", + Subcategory = "Bedroom", + Product = "Bed A", + Sales = 270, + Revenue = 126900, + Profit = 25380.0 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Home Appliances", + Subcategory = "Cleaning", + Product = "Vacuum A", + Sales = 161, + Revenue = 106743, + Profit = 21348.600000000002 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Home Appliances", + Subcategory = "Laundry", + Product = "Washing Machine", + Sales = 571, + Revenue = 367724, + Profit = 73544.8 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Home Appliances", + Subcategory = "Kitchen", + Product = "Toaster C", + Sales = 425, + Revenue = 308975, + Profit = 61795.0 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Furniture", + Subcategory = "Office", + Product = "Bookshelf C", + Sales = 100, + Revenue = 37200, + Profit = 7440.0 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Furniture", + Subcategory = "Living Room", + Product = "Sofa A", + Sales = 1000, + Revenue = 886000, + Profit = 177200.0 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Electronics", + Subcategory = "Mobile Phones", + Product = "Smartphone A", + Sales = 202, + Revenue = 107464, + Profit = 21492.800000000003 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Home Appliances", + Subcategory = "Kitchen", + Product = "Microwave B", + Sales = 877, + Revenue = 182416, + Profit = 36483.200000000004 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Electronics", + Subcategory = "Tablets", + Product = "Tablet A", + Sales = 401, + Revenue = 247818, + Profit = 49563.600000000006 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Furniture", + Subcategory = "Bedroom", + Product = "Wardrobe B", + Sales = 830, + Revenue = 528710, + Profit = 105742.0 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Electronics", + Subcategory = "Tablets", + Product = "Tablet C", + Sales = 547, + Revenue = 136203, + Profit = 27240.600000000002 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Electronics", + Subcategory = "Laptops", + Product = "Laptop B", + Sales = 539, + Revenue = 343882, + Profit = 68776.40000000001 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Home Appliances", + Subcategory = "Kitchen", + Product = "Microwave B", + Sales = 334, + Revenue = 164996, + Profit = 32999.200000000004 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Furniture", + Subcategory = "Living Room", + Product = "TV Stand C", + Sales = 232, + Revenue = 180960, + Profit = 36192.0 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Electronics", + Subcategory = "Tablets", + Product = "Tablet C", + Sales = 448, + Revenue = 351680, + Profit = 70336.0 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Electronics", + Subcategory = "Mobile Phones", + Product = "Smartphone B", + Sales = 387, + Revenue = 279801, + Profit = 55960.200000000004 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Home Appliances", + Subcategory = "Cleaning", + Product = "Mop B", + Sales = 69, + Revenue = 49473, + Profit = 9894.6 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Home Appliances", + Subcategory = "Kitchen", + Product = "Toaster C", + Sales = 859, + Revenue = 359921, + Profit = 71984.2 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Furniture", + Subcategory = "Office", + Product = "Chair B", + Sales = 322, + Revenue = 112056, + Profit = 22411.2 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Electronics", + Subcategory = "Tablets", + Product = "Tablet A", + Sales = 143, + Revenue = 54912, + Profit = 10982.400000000001 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Electronics", + Subcategory = "Laptops", + Product = "Laptop B", + Sales = 844, + Revenue = 642284, + Profit = 128456.8 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Electronics", + Subcategory = "Laptops", + Product = "Laptop A", + Sales = 735, + Revenue = 386610, + Profit = 77322.0 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Electronics", + Subcategory = "Mobile Phones", + Product = "Smartphone A", + Sales = 431, + Revenue = 125852, + Profit = 25170.4 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Furniture", + Subcategory = "Living Room", + Product = "Sofa A", + Sales = 926, + Revenue = 623198, + Profit = 124639.6 + }); + data.Add(new RetailSalesPerformanceDataItem() + { + Category = "Home Appliances", + Subcategory = "Cleaning", + Product = "Broom C", + Sales = 117, + Revenue = 50193, + Profit = 10038.6 + }); + + this.DataSource = data; + + } + } + + public class RetailSalesPerformanceDataItem + { + public string Category { get; set; } + public string Subcategory { get; set; } + public string Product { get; set; } + public int Sales { get; set; } + public double Revenue { get; set; } + public double Profit { get; set; } + } + + //end data \ No newline at end of file diff --git a/samples/charts/dashboard-tile/local-data-source-dashboard/_Imports.razor b/samples/charts/dashboard-tile/local-data-source-dashboard/_Imports.razor new file mode 100644 index 0000000000..d27d337cb1 --- /dev/null +++ b/samples/charts/dashboard-tile/local-data-source-dashboard/_Imports.razor @@ -0,0 +1,9 @@ +// these namespaces are global to the app +@using System.Net.Http +@using System.Net.Http.Json +@using Microsoft.AspNetCore.Components.Forms +@using Microsoft.AspNetCore.Components.Routing +@using Microsoft.AspNetCore.Components.Web +@using Microsoft.AspNetCore.Components.WebAssembly.Http +@using Microsoft.JSInterop +@using Infragistics.Samples diff --git a/samples/charts/dashboard-tile/local-data-source-dashboard/wwwroot/index.css b/samples/charts/dashboard-tile/local-data-source-dashboard/wwwroot/index.css new file mode 100644 index 0000000000..50ca13caa6 --- /dev/null +++ b/samples/charts/dashboard-tile/local-data-source-dashboard/wwwroot/index.css @@ -0,0 +1,4 @@ +/* +CSS styles are loaded from the shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/dashboard-tile/local-data-source-dashboard/wwwroot/index.html b/samples/charts/dashboard-tile/local-data-source-dashboard/wwwroot/index.html new file mode 100644 index 0000000000..8833030d8e --- /dev/null +++ b/samples/charts/dashboard-tile/local-data-source-dashboard/wwwroot/index.html @@ -0,0 +1,30 @@ + + + + + + + + + + Samples | IgniteUI for Blazor | Infragistics + + + + + + + + + +
+ An unhandled error has occurred. + Reload + 🗙 +
+ + + + + + diff --git a/samples/charts/data-chart/data-annotation-band-layer/AnnotationBandData.cs b/samples/charts/data-chart/data-annotation-band-layer/AnnotationBandData.cs new file mode 100644 index 0000000000..82b14e71f2 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-band-layer/AnnotationBandData.cs @@ -0,0 +1,32 @@ +using System; +using System.Collections.Generic; +public class AnnotationBandDataItem +{ + public string StartLabel { get; set; } + public string EndLabel { get; set; } + public double StartX { get; set; } + public double StartY { get; set; } + public double EndX { get; set; } + public double EndY { get; set; } + public double Value { get; set; } + public string Label { get; set; } +} + +public class AnnotationBandData + : List +{ + public AnnotationBandData() + { + this.Add(new AnnotationBandDataItem() + { + StartLabel = @"Growth Start", + EndLabel = @"Growth Stop", + StartX = 48, + StartY = 110, + EndX = 105, + EndY = 335, + Value = 170, + Label = @"Rapid Growth" + }); + } +} diff --git a/samples/charts/data-chart/data-annotation-band-layer/App.razor b/samples/charts/data-chart/data-annotation-band-layer/App.razor new file mode 100644 index 0000000000..2e7cb0723f --- /dev/null +++ b/samples/charts/data-chart/data-annotation-band-layer/App.razor @@ -0,0 +1,185 @@ +@using IgniteUI.Blazor.Controls + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
+
+ +@code { + + private Action BindElements { get; set; } + + protected override async Task OnAfterRenderAsync(bool firstRender) + { + var chart = this.chart; + var xAxisBottom = this.xAxisBottom; + var xAxis = this.xAxis; + var yAxisLeft = this.yAxisLeft; + var yAxisRight = this.yAxisRight; + var series1 = this.series1; + var tooltip = this.tooltip; + var bandLayer = this.bandLayer; + + this.BindElements = () => { + bandLayer.TargetAxis = this.xAxisBottom; + }; + this.BindElements(); + + } + + private IgbDataChart chart; + private IgbCategoryXAxis xAxisBottom; + private IgbCategoryXAxis xAxis; + private IgbNumericYAxis yAxisLeft; + private IgbNumericYAxis yAxisRight; + private IgbFinancialPriceSeries series1; + private IgbDataToolTipLayer tooltip; + private IgbDataAnnotationBandLayer bandLayer; + + private StockTesla _stockTesla = null; + public StockTesla StockTesla + { + get + { + if (_stockTesla == null) + { + _stockTesla = new StockTesla(); + } + return _stockTesla; + } + } + + private AnnotationBandData _annotationBandData = null; + public AnnotationBandData AnnotationBandData + { + get + { + if (_annotationBandData == null) + { + _annotationBandData = new AnnotationBandData(); + } + return _annotationBandData; + } + } + +} \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-band-layer/BlazorClientApp.csproj b/samples/charts/data-chart/data-annotation-band-layer/BlazorClientApp.csproj new file mode 100644 index 0000000000..ed10c7849c --- /dev/null +++ b/samples/charts/data-chart/data-annotation-band-layer/BlazorClientApp.csproj @@ -0,0 +1,21 @@ + + + + net9.0 + 3.0 + Infragistics.Samples + Infragistics.Samples + + + + 1701;1702,IDE0028,BL0005,0219,CS1998 + + + + + + + + + + diff --git a/samples/charts/data-chart/data-annotation-band-layer/BlazorClientApp.sln b/samples/charts/data-chart/data-annotation-band-layer/BlazorClientApp.sln new file mode 100644 index 0000000000..1e2eda208a --- /dev/null +++ b/samples/charts/data-chart/data-annotation-band-layer/BlazorClientApp.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BlazorClientApp", "BlazorClientApp.csproj", "{F69CC3F0-BCD1-4CE6-9F39-CBED14E7FA78}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {F69CC3F0-BCD1-4CE6-9F39-CBED14E7FA78}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F69CC3F0-BCD1-4CE6-9F39-CBED14E7FA78}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F69CC3F0-BCD1-4CE6-9F39-CBED14E7FA78}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F69CC3F0-BCD1-4CE6-9F39-CBED14E7FA78}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {FC52AAC8-4488-40AE-9621-75F6BA744B18} + EndGlobalSection +EndGlobal diff --git a/samples/charts/data-chart/data-annotation-band-layer/Program.cs b/samples/charts/data-chart/data-annotation-band-layer/Program.cs new file mode 100644 index 0000000000..3bb6102fa2 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-band-layer/Program.cs @@ -0,0 +1,38 @@ +using System; +using System.Net.Http; +using System.Collections.Generic; +using System.Threading.Tasks; +using System.Text; +using Microsoft.AspNetCore.Components.WebAssembly.Hosting; +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.Logging; +using IgniteUI.Blazor.Controls; // for registering Ignite UI modules + +namespace Infragistics.Samples +{ + public class Program + { + public static async Task Main(string[] args) + { + var builder = WebAssemblyHostBuilder.CreateDefault(args); + builder.RootComponents.Add("app"); + builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) }); + // registering Ignite UI modules + builder.Services.AddIgniteUIBlazor( + typeof(IgbDataChartCoreModule), + typeof(IgbDataChartCategoryModule), + typeof(IgbDataChartCategoryCoreModule), + typeof(IgbDataChartFinancialCoreModule), + typeof(IgbDataChartFinancialModule), + typeof(IgbDataChartFinancialOverlaysModule), + typeof(IgbDataChartInteractivityModule), + typeof(IgbDataChartAnnotationModule), + typeof(IgbDataAnnotationBandLayerModule), + typeof(IgbNumberAbbreviatorModule), + typeof(IgbAnnotationLayerProxyModule) + ); + await builder.Build().RunAsync(); + } + } +} diff --git a/samples/charts/data-chart/data-annotation-band-layer/Properties/launchSettings.json b/samples/charts/data-chart/data-annotation-band-layer/Properties/launchSettings.json new file mode 100644 index 0000000000..18bd6fb5bc --- /dev/null +++ b/samples/charts/data-chart/data-annotation-band-layer/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:4200", + "sslPort": 44385 + } + }, + "profiles": { + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "BlazorSamples": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:4200" + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-band-layer/StockTesla.cs b/samples/charts/data-chart/data-annotation-band-layer/StockTesla.cs new file mode 100644 index 0000000000..9b2caebc66 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-band-layer/StockTesla.cs @@ -0,0 +1,2518 @@ +using System; +using System.Collections.Generic; +public class StockTeslaItem +{ + public string Date { get; set; } + public double Open { get; set; } + public double High { get; set; } + public double Low { get; set; } + public double Close { get; set; } + public double Volume { get; set; } + public double Change { get; set; } + public double Index { get; set; } +} + +public class StockTesla + : List +{ + public StockTesla() + { + this.Add(new StockTeslaItem() + { + Date = @"2019-01-10", + Open = 20.4, + High = 23, + Low = 19.8, + Close = 23, + Volume = 779333701, + Change = 12.7, + Index = 0 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-01-22", + Open = 22.8, + High = 23.5, + Low = 19.7, + Close = 19.9, + Volume = 911781100, + Change = -12.6, + Index = 1 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-01-31", + Open = 19.5, + High = 20.8, + Low = 18.6, + Close = 20.5, + Volume = 926375717, + Change = 5, + Index = 2 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-02-11", + Open = 20.4, + High = 21.6, + Low = 19.9, + Close = 20.9, + Volume = 687520471, + Change = 2.4, + Index = 3 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-02-21", + Open = 21.1, + High = 21.2, + Low = 19.4, + Close = 19.4, + Volume = 597552272, + Change = -7.9, + Index = 4 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-03-04", + Open = 19.6, + High = 21.3, + Low = 18.9, + Close = 19, + Volume = 1218669201, + Change = -3.1, + Index = 5 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-03-13", + Open = 18.8, + High = 19.5, + Low = 18, + Close = 19.3, + Volume = 1034156904, + Change = 2.5, + Index = 6 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-03-22", + Open = 19.5, + High = 19.7, + Low = 17.6, + Close = 17.6, + Volume = 980694095, + Change = -9.5, + Index = 7 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-04-02", + Open = 17.3, + High = 19.3, + Low = 17, + Close = 19.1, + Volume = 788473494, + Change = 10.1, + Index = 8 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-04-11", + Open = 19.2, + High = 19.7, + Low = 17.4, + Close = 17.9, + Volume = 1165555442, + Change = -6.6, + Index = 9 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-04-23", + Open = 18, + High = 18.3, + Low = 17, + Close = 17.6, + Volume = 870373200, + Change = -2.3, + Index = 10 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-05-02", + Open = 17.6, + High = 17.7, + Low = 15.4, + Close = 16.3, + Volume = 1629432326, + Change = -7.5, + Index = 11 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-05-13", + Open = 16.3, + High = 17.2, + Low = 15, + Close = 15.1, + Volume = 1131045605, + Change = -6.9, + Index = 12 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-05-22", + Open = 15.3, + High = 15.6, + Low = 12.8, + Close = 12.8, + Volume = 1455503588, + Change = -15.9, + Index = 13 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-06-03", + Open = 13, + High = 13.3, + Low = 11.8, + Close = 11.9, + Volume = 1415442268, + Change = -7.9, + Index = 14 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-06-12", + Open = 12.1, + High = 14.9, + Low = 12, + Close = 14, + Volume = 1515000443, + Change = 15.6, + Index = 15 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-06-21", + Open = 14, + High = 15.6, + Low = 13.8, + Close = 14.8, + Volume = 1009123371, + Change = 5.5, + Index = 16 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-07-02", + Open = 14.9, + High = 15.5, + Low = 14.5, + Close = 15, + Volume = 766921642, + Change = 0.6, + Index = 17 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-07-12", + Open = 16, + High = 16.4, + Low = 15.2, + Close = 16.3, + Volume = 887983836, + Change = 2.4, + Index = 18 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-07-23", + Open = 16.5, + High = 17.5, + Low = 16.3, + Close = 17.3, + Volume = 788941000, + Change = 4.9, + Index = 19 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-08-01", + Open = 17.3, + High = 17.7, + Low = 14.8, + Close = 15.6, + Volume = 1175082297, + Change = -9.8, + Index = 20 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-08-12", + Open = 15.4, + High = 16, + Low = 15, + Close = 15.3, + Volume = 560129569, + Change = -1, + Index = 21 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-08-21", + Open = 15.3, + High = 15.7, + Low = 14.1, + Close = 14.7, + Volume = 677293701, + Change = -3.5, + Index = 22 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-08-30", + Open = 14.9, + High = 15.5, + Low = 14.1, + Close = 15, + Volume = 650239370, + Change = 1.3, + Index = 23 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-09-11", + Open = 14.9, + High = 16.5, + Low = 14.6, + Close = 16.5, + Volume = 636766167, + Change = 10.3, + Index = 24 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-09-20", + Open = 16.5, + High = 16.9, + Low = 15.9, + Close = 16, + Volume = 572802643, + Change = -2.9, + Index = 25 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-10-01", + Open = 16, + High = 16.6, + Low = 14.6, + Close = 16.3, + Volume = 931821239, + Change = 2, + Index = 26 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-10-10", + Open = 16.2, + High = 16.6, + Low = 15, + Close = 16.3, + Volume = 891798049, + Change = 0.6, + Index = 27 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-10-21", + Open = 16.5, + High = 17.7, + Low = 16.5, + Close = 16.9, + Volume = 713093463, + Change = 2.6, + Index = 28 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-10-30", + Open = 17, + High = 22.7, + Low = 16.7, + Close = 21, + Volume = 1752943598, + Change = 23.9, + Index = 29 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-11-08", + Open = 20.9, + High = 22.8, + Low = 20.6, + Close = 22.5, + Volume = 834957256, + Change = 7.7, + Index = 30 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-11-19", + Open = 22.9, + High = 24, + Low = 22.8, + Close = 24, + Volume = 738746390, + Change = 4.5, + Index = 31 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-11-29", + Open = 24, + High = 24.1, + Low = 21.8, + Close = 22, + Volume = 870685288, + Change = -8.4, + Index = 32 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-12-10", + Open = 22, + High = 23.4, + Low = 21.8, + Close = 23.3, + Volume = 712016613, + Change = 5.9, + Index = 33 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-12-19", + Open = 23.5, + High = 27.1, + Low = 23.4, + Close = 26.9, + Volume = 1203765433, + Change = 14.8, + Index = 34 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-12-31", + Open = 27.4, + High = 29, + Low = 26.7, + Close = 27.9, + Volume = 1195073357, + Change = 2, + Index = 35 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-01-10", + Open = 28.3, + High = 33.3, + Low = 28.1, + Close = 31.9, + Volume = 1925386078, + Change = 12.6, + Index = 36 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-01-22", + Open = 32.9, + High = 39.6, + Low = 32.8, + Close = 38, + Volume = 2364043518, + Change = 15.4, + Index = 37 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-01-31", + Open = 37.6, + High = 43.5, + Low = 36, + Close = 43.4, + Volume = 1835141382, + Change = 15.3, + Index = 38 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-02-11", + Open = 44.9, + High = 64.6, + Low = 44.9, + Close = 51.6, + Volume = 3748903126, + Change = 14.9, + Index = 39 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-02-21", + Open = 51.9, + High = 63, + Low = 49, + Close = 60.1, + Volume = 1921517039, + Change = 15.8, + Index = 40 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-03-03", + Open = 55.9, + High = 57.6, + Low = 40.8, + Close = 49.7, + Volume = 2121850940, + Change = -11.1, + Index = 41 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-03-12", + Open = 50.9, + High = 51.1, + Low = 36.4, + Close = 37.4, + Volume = 1553329923, + Change = -26.6, + Index = 42 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-03-23", + Open = 39.7, + High = 40.5, + Low = 23.4, + Close = 29, + Volume = 2487688157, + Change = -27, + Index = 43 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-04-01", + Open = 31.8, + High = 37.3, + Low = 31.6, + Close = 32.1, + Volume = 1785601357, + Change = 0.9, + Index = 44 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-04-13", + Open = 32.1, + High = 43.5, + Low = 29.8, + Close = 43.4, + Volume = 1860352620, + Change = 35.3, + Index = 45 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-04-22", + Open = 46.6, + High = 51.7, + Low = 44.9, + Close = 48.8, + Volume = 2056797321, + Change = 4.7, + Index = 46 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-05-01", + Open = 48.5, + High = 58, + Low = 45.5, + Close = 46.8, + Volume = 2093959203, + Change = -3.6, + Index = 47 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-05-12", + Open = 46.7, + High = 56.2, + Low = 46.5, + Close = 54, + Volume = 1611543246, + Change = 15.5, + Index = 48 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-05-21", + Open = 54.7, + High = 55.6, + Low = 50.9, + Close = 55.2, + Volume = 1262468113, + Change = 0.8, + Index = 49 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-06-02", + Open = 54.8, + High = 60.6, + Low = 52.3, + Close = 58.8, + Volume = 1160487993, + Change = 7.2, + Index = 50 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-06-11", + Open = 59.2, + High = 68.5, + Low = 57.2, + Close = 64.9, + Volume = 1270377400, + Change = 9.5, + Index = 51 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-06-22", + Open = 65.3, + High = 67.9, + Low = 60.6, + Close = 66.3, + Volume = 1217946366, + Change = 1.5, + Index = 52 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-07-01", + Open = 66.6, + High = 75.7, + Low = 62.5, + Close = 74.6, + Volume = 1120591270, + Change = 12.1, + Index = 53 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-07-13", + Open = 81.4, + High = 119.7, + Low = 79, + Close = 99.8, + Volume = 2244920779, + Change = 22.6, + Index = 54 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-07-22", + Open = 103.7, + High = 111.7, + Low = 95.4, + Close = 106.2, + Volume = 1662846099, + Change = 2.3, + Index = 55 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-07-31", + Open = 111.9, + High = 112.6, + Low = 91.1, + Close = 95.4, + Volume = 1573159944, + Change = -14.8, + Index = 56 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-08-11", + Open = 96.6, + High = 101.8, + Low = 91, + Close = 91.6, + Volume = 798587331, + Change = -5.2, + Index = 57 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-08-20", + Open = 98, + High = 134.8, + Low = 95.7, + Close = 133.5, + Volume = 1866534416, + Change = 36.2, + Index = 58 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-08-31", + Open = 136.3, + High = 166.7, + Low = 128.5, + Close = 166.1, + Volume = 2008507459, + Change = 21.9, + Index = 59 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-09-10", + Open = 167.4, + High = 167.5, + Low = 110, + Close = 123.8, + Volume = 1992227059, + Change = -26, + Index = 60 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-09-21", + Open = 127.3, + High = 154, + Low = 120.2, + Close = 149.8, + Volume = 1758737696, + Change = 17.7, + Index = 61 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-09-30", + Open = 143.2, + High = 145.9, + Low = 117.1, + Close = 143, + Volume = 1459893236, + Change = -0.1, + Index = 62 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-10-09", + Open = 146.9, + High = 149.6, + Low = 135.4, + Close = 144.7, + Volume = 985545158, + Change = -1.5, + Index = 63 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-10-20", + Open = 147.3, + High = 155.3, + Low = 139.7, + Close = 140.6, + Volume = 773077727, + Change = -4.5, + Index = 64 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-10-29", + Open = 140.9, + High = 148.4, + Low = 135.3, + Close = 136.9, + Volume = 615339122, + Change = -2.8, + Index = 65 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-11-09", + Open = 135.6, + High = 150.8, + Low = 126.4, + Close = 140.4, + Volume = 669171368, + Change = 3.5, + Index = 66 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-11-18", + Open = 140, + High = 165.3, + Low = 132, + Close = 162.2, + Volume = 760451265, + Change = 15.8, + Index = 67 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-11-30", + Open = 164, + High = 202.6, + Low = 162.5, + Close = 189.2, + Volume = 1046371155, + Change = 15.4, + Index = 68 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-12-09", + Open = 199.2, + High = 218.1, + Low = 180.4, + Close = 201.5, + Volume = 1055933265, + Change = 1.2, + Index = 69 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-12-18", + Open = 191.5, + High = 231.7, + Low = 188.8, + Close = 231.7, + Volume = 1593943601, + Change = 21, + Index = 70 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-12-30", + Open = 222.1, + High = 232.2, + Low = 204.7, + Close = 231.6, + Volume = 791942570, + Change = 4.3, + Index = 71 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-01-11", + Open = 233.3, + High = 294.8, + Low = 230.4, + Close = 270.4, + Volume = 1084025779, + Change = 15.9, + Index = 72 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-01-21", + Open = 277, + High = 289.3, + Low = 273, + Close = 281.7, + Volume = 663774487, + Change = 1.7, + Index = 73 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-02-01", + Open = 278.1, + High = 300.1, + Low = 260, + Close = 279.9, + Volume = 595397009, + Change = 0.7, + Index = 74 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-02-10", + Open = 281.6, + High = 293.5, + Low = 266.7, + Close = 268.3, + Volume = 445813486, + Change = -4.7, + Index = 75 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-02-22", + Open = 270.8, + High = 276.6, + Low = 236.7, + Close = 238.2, + Volume = 496372009, + Change = -12.1, + Index = 76 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-03-03", + Open = 220.7, + High = 290.7, + Low = 206.3, + Close = 217.7, + Volume = 793689739, + Change = -1.3, + Index = 77 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-03-12", + Open = 218.6, + High = 291.3, + Low = 179.8, + Close = 231.2, + Volume = 1215209162, + Change = 5.8, + Index = 78 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-03-23", + Open = 231.4, + High = 237.7, + Low = 208.2, + Close = 220.7, + Volume = 744776145, + Change = -4.6, + Index = 79 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-04-01", + Open = 222.6, + High = 230.8, + Low = 197, + Close = 220.6, + Volume = 730733684, + Change = -0.9, + Index = 80 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-04-13", + Open = 235.9, + High = 254.3, + Low = 222.6, + Close = 254.1, + Volume = 646721884, + Change = 7.7, + Index = 81 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-04-22", + Open = 256.9, + High = 260.3, + Low = 230.6, + Close = 239.9, + Volume = 740840774, + Change = -6.6, + Index = 82 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-05-03", + Open = 239.9, + High = 249.8, + Low = 222, + Close = 228.3, + Volume = 623423313, + Change = -4.8, + Index = 83 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-05-12", + Open = 226.3, + High = 230, + Low = 195.6, + Close = 196.6, + Volume = 643844974, + Change = -13.1, + Index = 84 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-05-21", + Open = 200.5, + High = 202.2, + Low = 182.3, + Close = 193.6, + Volume = 729192883, + Change = -3.4, + Index = 85 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-06-02", + Open = 193.9, + High = 211.9, + Low = 191.2, + Close = 201.7, + Volume = 545095944, + Change = 4, + Index = 86 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-06-11", + Open = 200.6, + High = 207.7, + Low = 190.4, + Close = 203.3, + Volume = 478366128, + Change = 1.3, + Index = 87 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-06-22", + Open = 204.1, + High = 210.5, + Low = 197.8, + Close = 207.9, + Volume = 454698495, + Change = 1.9, + Index = 88 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-07-01", + Open = 210.7, + High = 232.5, + Low = 210, + Close = 226, + Volume = 558441596, + Change = 7.3, + Index = 89 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-07-13", + Open = 226.3, + High = 233.3, + Low = 206.8, + Close = 222.8, + Volume = 470942387, + Change = -1.5, + Index = 90 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-07-22", + Open = 223.6, + High = 226.2, + Low = 207.1, + Close = 216.4, + Volume = 372195097, + Change = -3.2, + Index = 91 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-08-02", + Open = 215.5, + High = 242.3, + Low = 209.1, + Close = 236.6, + Volume = 547284685, + Change = 9.8, + Index = 92 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-08-11", + Open = 239.7, + High = 241.6, + Low = 232.5, + Close = 235.9, + Volume = 315341455, + Change = -1.6, + Index = 93 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-08-20", + Open = 235.4, + High = 243.3, + Low = 216.3, + Close = 226.8, + Volume = 392227478, + Change = -3.7, + Index = 94 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-08-31", + Open = 228.5, + High = 246.8, + Low = 226.9, + Close = 245.2, + Volume = 337503634, + Change = 7.3, + Index = 95 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-09-10", + Open = 244.7, + High = 254.8, + Low = 241.4, + Close = 245.4, + Volume = 328100734, + Change = 0.3, + Index = 96 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-09-21", + Open = 246.7, + High = 253.7, + Low = 236.3, + Close = 246.5, + Volume = 420153012, + Change = -0.1, + Index = 97 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-09-30", + Open = 247.8, + High = 266.3, + Low = 246.4, + Close = 258.5, + Volume = 422393262, + Change = 4.3, + Index = 98 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-10-11", + Open = 259.5, + High = 269, + Low = 254.5, + Close = 264, + Volume = 392144589, + Change = 1.7, + Index = 99 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-10-20", + Open = 267, + High = 292.6, + Low = 265.5, + Close = 288.6, + Volume = 368796877, + Change = 8.1, + Index = 100 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-10-29", + Open = 285.3, + High = 371.7, + Low = 285.2, + Close = 371.3, + Volume = 825862313, + Change = 30.1, + Index = 101 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-11-09", + Open = 381.7, + High = 414.5, + Low = 337.2, + Close = 341.2, + Volume = 818978542, + Change = -10.6, + Index = 102 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-11-18", + Open = 336.8, + High = 373.2, + Low = 326.2, + Close = 365.5, + Volume = 613304311, + Change = 8.5, + Index = 103 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-11-30", + Open = 366.3, + High = 400.6, + Low = 354, + Close = 381.6, + Volume = 515052382, + Change = 4.2, + Index = 104 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-12-09", + Open = 386.9, + High = 390.9, + Low = 316.8, + Close = 334.6, + Volume = 473333567, + Change = -13.5, + Index = 105 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-12-20", + Open = 336.2, + High = 340.3, + Low = 297.8, + Close = 300, + Volume = 524367113, + Change = -10.8, + Index = 106 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-12-30", + Open = 305.6, + High = 373, + Low = 295.4, + Close = 356.8, + Volume = 492530059, + Change = 16.7, + Index = 107 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-01-10", + Open = 357.8, + High = 402.7, + Low = 326.7, + Close = 352.7, + Volume = 592103938, + Change = -1.4, + Index = 108 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-01-20", + Open = 351.2, + High = 371.9, + Low = 331.3, + Close = 332.1, + Volume = 532857144, + Change = -5.4, + Index = 109 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-01-31", + Open = 332.1, + High = 334.8, + Low = 264, + Close = 312.2, + Volume = 833589022, + Change = -6, + Index = 110 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-02-09", + Open = 311.7, + High = 315.9, + Low = 293.5, + Close = 310.7, + Volume = 456395505, + Change = -0.3, + Index = 111 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-02-18", + Open = 302.8, + High = 314.6, + Low = 279.2, + Close = 285.7, + Volume = 446153356, + Change = -5.7, + Index = 112 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-03-02", + Open = 278, + High = 296.6, + Low = 233.3, + Close = 293.3, + Volume = 638352514, + Change = 5.5, + Index = 113 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-03-11", + Open = 292.9, + High = 295.5, + Low = 260.7, + Close = 265.1, + Volume = 466566467, + Change = -9.5, + Index = 114 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-03-22", + Open = 260.2, + High = 332.6, + Low = 252, + Close = 331.3, + Volume = 576869668, + Change = 27.3, + Index = 115 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-03-31", + Open = 326.6, + High = 371.6, + Low = 325.5, + Close = 359.2, + Volume = 536607263, + Change = 10, + Index = 116 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-04-11", + Open = 360.4, + High = 384.3, + Low = 324.9, + Close = 325.3, + Volume = 499682510, + Change = -9.7, + Index = 117 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-04-21", + Open = 332.5, + High = 364.1, + Low = 324.4, + Close = 336.3, + Volume = 457210487, + Change = 1.1, + Index = 118 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-05-02", + Open = 338.3, + High = 345, + Low = 273.9, + Close = 301, + Volume = 639990965, + Change = -11, + Index = 119 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-05-11", + Open = 301.1, + High = 318.5, + Low = 242.4, + Close = 244.7, + Volume = 583211967, + Change = -18.7, + Index = 120 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-05-20", + Open = 233.7, + High = 262.4, + Low = 211, + Close = 221.3, + Volume = 721880082, + Change = -5.3, + Index = 121 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-06-01", + Open = 218.3, + High = 259.6, + Low = 206.9, + Close = 246.8, + Volume = 644596235, + Change = 13, + Index = 122 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-06-10", + Open = 244.2, + High = 264.2, + Low = 227.9, + Close = 232.2, + Volume = 633672873, + Change = -4.9, + Index = 123 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-06-22", + Open = 223.2, + High = 246.8, + Low = 208.7, + Close = 236.1, + Volume = 744240764, + Change = 5.8, + Index = 124 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-07-01", + Open = 237.9, + High = 252.1, + Low = 218.9, + Close = 227.3, + Volume = 631776422, + Change = -4.5, + Index = 125 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-07-13", + Open = 223, + High = 255, + Low = 216.2, + Close = 237, + Volume = 625812242, + Change = 6.3, + Index = 126 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-07-22", + Open = 234.9, + High = 280.8, + Low = 229.3, + Close = 272.2, + Volume = 646037224, + Change = 15.9, + Index = 127 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-08-02", + Open = 272.2, + High = 311.9, + Low = 256.3, + Close = 300.6, + Volume = 611660612, + Change = 10.4, + Index = 128 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-08-11", + Open = 305, + High = 313.6, + Low = 279.4, + Close = 286.6, + Volume = 616204291, + Change = -6, + Index = 129 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-08-22", + Open = 289.4, + High = 314.7, + Low = 285, + Close = 289.9, + Volume = 490658060, + Change = 0.2, + Index = 130 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-08-31", + Open = 291.5, + High = 303.6, + Low = 271.8, + Close = 275.6, + Volume = 376152572, + Change = -5.4, + Index = 131 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-09-12", + Open = 272.6, + High = 305.5, + Low = 265.7, + Close = 304.4, + Volume = 367924580, + Change = 11.7, + Index = 132 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-09-21", + Open = 292.9, + High = 313.8, + Low = 290.4, + Close = 300.8, + Volume = 477171180, + Change = 2.7, + Index = 133 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-09-30", + Open = 299.9, + High = 301.3, + Low = 262.5, + Close = 265.2, + Volume = 454307920, + Change = -11.5, + Index = 134 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-10-11", + Open = 254.5, + High = 257.5, + Low = 215, + Close = 216.5, + Volume = 593078170, + Change = -14.9, + Index = 135 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-10-20", + Open = 215.3, + High = 229.8, + Low = 202, + Close = 207.3, + Volume = 592158560, + Change = -3.7, + Index = 136 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-10-31", + Open = 206.4, + High = 233.8, + Low = 198.6, + Close = 227.5, + Volume = 550341050, + Change = 10.2, + Index = 137 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-11-09", + Open = 234, + High = 237.4, + Low = 177.1, + Close = 177.6, + Volume = 630702790, + Change = -24.1, + Index = 138 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-11-18", + Open = 189.9, + High = 200.8, + Low = 176.6, + Close = 180.2, + Volume = 637579480, + Change = -5.1, + Index = 139 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-11-30", + Open = 175.8, + High = 194.8, + Low = 166.2, + Close = 194.7, + Volume = 617126140, + Change = 10.7, + Index = 140 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-12-09", + Open = 197.1, + High = 198.9, + Low = 169.1, + Close = 179, + Volume = 625675690, + Change = -9.1, + Index = 141 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-12-20", + Open = 176.1, + High = 177.4, + Low = 137.7, + Close = 137.8, + Volume = 986660100, + Change = -21.7, + Index = 142 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-12-30", + Open = 139.3, + High = 141.3, + Low = 108.2, + Close = 123.2, + Volume = 1331911900, + Change = -11.6, + Index = 143 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-01-11", + Open = 118.5, + High = 126, + Low = 101.8, + Close = 123.2, + Volume = 1332426500, + Change = 4, + Index = 144 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-01-23", + Open = 122.6, + High = 145.4, + Low = 115.6, + Close = 143.8, + Volume = 1244541500, + Change = 17.3, + Index = 145 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-02-01", + Open = 143, + High = 183.8, + Low = 138.1, + Close = 181.4, + Volume = 1534337700, + Change = 26.9, + Index = 146 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-02-10", + Open = 187.3, + High = 214, + Low = 182.6, + Close = 196.9, + Volume = 1423167800, + Change = 5.1, + Index = 147 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-02-22", + Open = 194.4, + High = 217.6, + Low = 187.6, + Close = 200.9, + Volume = 1386211900, + Change = 3.3, + Index = 148 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-03-03", + Open = 203.9, + High = 211.2, + Low = 186, + Close = 197.8, + Volume = 1095786600, + Change = -3, + Index = 149 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-03-14", + Open = 198.5, + High = 198.6, + Low = 163.9, + Close = 183.3, + Volume = 1101144600, + Change = -7.7, + Index = 150 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-03-23", + Open = 180.8, + High = 200.7, + Low = 176, + Close = 192.2, + Volume = 978213300, + Change = 6.3, + Index = 151 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-04-03", + Open = 191.6, + High = 207.8, + Low = 185.4, + Close = 194.8, + Volume = 909718040, + Change = 1.6, + Index = 152 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-04-13", + Open = 197.3, + High = 198.7, + Low = 176.1, + Close = 185.9, + Volume = 905319000, + Change = -5.8, + Index = 153 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-04-24", + Open = 184, + High = 189.7, + Low = 158.6, + Close = 162.6, + Volume = 905416980, + Change = -11.6, + Index = 154 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-05-03", + Open = 159.8, + High = 165.5, + Low = 152.4, + Close = 160.6, + Volume = 881897100, + Change = 0.5, + Index = 155 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-05-12", + Open = 162.7, + High = 177.4, + Low = 159.6, + Close = 168, + Volume = 785510430, + Change = 3.2, + Index = 156 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-05-23", + Open = 167.7, + High = 193, + Low = 164.4, + Close = 185.8, + Volume = 864025390, + Change = 10.8, + Index = 157 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-06-02", + Open = 182.2, + High = 217.2, + Low = 178.2, + Close = 214, + Volume = 988496020, + Change = 17.4, + Index = 158 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-06-13", + Open = 217.8, + High = 259.7, + Low = 212.5, + Close = 258.7, + Volume = 1161622400, + Change = 18.8, + Index = 159 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-06-23", + Open = 260.2, + High = 277, + Low = 247.3, + Close = 256.6, + Volume = 1220407300, + Change = -1.4, + Index = 160 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-07-05", + Open = 250.1, + High = 284.2, + Low = 240.7, + Close = 282.5, + Volume = 999163700, + Change = 13, + Index = 161 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-07-14", + Open = 278.1, + High = 285.3, + Low = 265.1, + Close = 281.4, + Volume = 774400400, + Change = 1.2, + Index = 162 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-07-25", + Open = 286.6, + High = 299.3, + Low = 254.1, + Close = 265.3, + Volume = 973076400, + Change = -7.4, + Index = 163 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-08-03", + Open = 263.2, + High = 269.1, + Low = 250.5, + Close = 259.3, + Volume = 678809820, + Change = -1.5, + Index = 164 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-08-14", + Open = 261, + High = 264.8, + Low = 233.8, + Close = 239.8, + Volume = 716008860, + Change = -8.1, + Index = 165 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-08-23", + Open = 238.7, + High = 240.8, + Low = 212.4, + Close = 236.9, + Volume = 825055300, + Change = -0.8, + Index = 166 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-09-01", + Open = 238.7, + High = 261.2, + Low = 228.2, + Close = 245, + Volume = 811502630, + Change = 2.7, + Index = 167 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-09-13", + Open = 245, + High = 278.4, + Low = 243.3, + Close = 271.3, + Volume = 902643400, + Change = 10.7, + Index = 168 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-09-22", + Open = 271.3, + High = 279, + Low = 244.5, + Close = 244.9, + Volume = 816639600, + Change = -9.7, + Index = 169 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-10-03", + Open = 243.4, + High = 254.8, + Low = 234.6, + Close = 246.5, + Volume = 814604700, + Change = 1.3, + Index = 170 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-10-12", + Open = 248.1, + High = 268.9, + Low = 247.6, + Close = 258.9, + Volume = 806250900, + Change = 4.3, + Index = 171 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-10-23", + Open = 258.9, + High = 259.6, + Low = 202.5, + Close = 212.1, + Volume = 869390890, + Change = -18.1, + Index = 172 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-11-01", + Open = 216.5, + High = 222, + Low = 194.1, + Close = 205.7, + Volume = 811468170, + Change = -5, + Index = 173 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-11-10", + Open = 213, + High = 226.4, + Low = 205.7, + Close = 214.6, + Volume = 859763700, + Change = 0.8, + Index = 174 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-11-21", + Open = 215.6, + High = 246.7, + Low = 211.6, + Close = 241.2, + Volume = 959006600, + Change = 11.9, + Index = 175 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-12-01", + Open = 242, + High = 252.8, + Low = 231.4, + Close = 238.8, + Volume = 832910200, + Change = -1.3, + Index = 176 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-12-12", + Open = 235.8, + High = 246.7, + Low = 233.3, + Close = 237, + Volume = 772018400, + Change = 0.5, + Index = 177 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-12-21", + Open = 234.2, + High = 259.8, + Low = 228.2, + Close = 254.5, + Volume = 900893400, + Change = 8.7, + Index = 178 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-01-03", + Open = 256.8, + High = 265.1, + Low = 236.3, + Close = 238.4, + Volume = 727005170, + Change = -7.1, + Index = 179 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-01-12", + Open = 239.2, + High = 242.7, + Low = 217.2, + Close = 218.9, + Volume = 697536380, + Change = -8.5, + Index = 180 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-01-24", + Open = 215.1, + High = 223.5, + Low = 206.3, + Close = 207.8, + Volume = 777303400, + Change = -3.4, + Index = 181 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-02-02", + Open = 189.7, + High = 196.4, + Low = 180.1, + Close = 187.9, + Volume = 846092780, + Change = -0.9, + Index = 182 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-02-13", + Open = 184.3, + High = 194.7, + Low = 175, + Close = 184, + Volume = 718274070, + Change = -0.1, + Index = 183 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-02-23", + Open = 185.3, + High = 203.2, + Low = 183.4, + Close = 192, + Volume = 693352670, + Change = 3.6, + Index = 184 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-03-05", + Open = 192.3, + High = 205.6, + Low = 177.6, + Close = 180.7, + Volume = 742344460, + Change = -6, + Index = 185 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-03-14", + Open = 180, + High = 182.9, + Low = 160.5, + Close = 162.5, + Volume = 701227950, + Change = -9.7, + Index = 186 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-03-25", + Open = 163.2, + High = 178.2, + Low = 160.8, + Close = 172.6, + Volume = 589466660, + Change = 5.8, + Index = 187 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-04-04", + Open = 178.6, + High = 184.2, + Low = 163.3, + Close = 171.1, + Volume = 676969950, + Change = -4.2, + Index = 188 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-04-15", + Open = 169.1, + High = 179.2, + Low = 160.5, + Close = 161.5, + Volume = 694829970, + Change = -4.5, + Index = 189 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-04-24", + Open = 156.7, + High = 168, + Low = 138.8, + Close = 162.1, + Volume = 775433710, + Change = 3.4, + Index = 190 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-05-03", + Open = 159, + High = 198.9, + Low = 158.4, + Close = 181.2, + Volume = 864614000, + Change = 14, + Index = 191 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-05-14", + Open = 183.8, + High = 187.6, + Low = 167.8, + Close = 177.6, + Volume = 531409380, + Change = -3.4, + Index = 192 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-05-23", + Open = 179.9, + High = 186.9, + Low = 171.4, + Close = 173.7, + Volume = 554203970, + Change = -3.4, + Index = 193 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-06-04", + Open = 174.8, + High = 182.7, + Low = 173.2, + Close = 174.8, + Volume = 453828370, + Change = 0, + Index = 194 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-06-13", + Open = 175.4, + High = 191.1, + Low = 167.4, + Close = 182.5, + Volume = 509090870, + Change = 4.1, + Index = 195 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-06-25", + Open = 185.8, + High = 188.8, + Low = 176.9, + Close = 187.4, + Volume = 505399520, + Change = 0.8, + Index = 196 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-07-05", + Open = 186.5, + High = 252.4, + Low = 186.4, + Close = 251.5, + Volume = 925723660, + Change = 34.8, + Index = 197 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-07-16", + Open = 247.7, + High = 271, + Low = 233.1, + Close = 256.6, + Volume = 1097390000, + Change = 3.6, + Index = 198 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-07-25", + Open = 252.7, + High = 258.5, + Low = 214.7, + Close = 220.2, + Volume = 795590700, + Change = -12.9, + Index = 199 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-08-05", + Open = 221.2, + High = 234.7, + Low = 182, + Close = 198.9, + Volume = 658914080, + Change = -10.1, + Index = 200 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-08-14", + Open = 200.8, + High = 208.5, + Low = 191.5, + Close = 201.4, + Volume = 479168160, + Change = 0.3, + Index = 201 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-08-23", + Open = 205, + High = 228.2, + Low = 204.8, + Close = 220.3, + Volume = 560235700, + Change = 7.5, + Index = 202 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-09-04", + Open = 218.8, + High = 222.2, + Low = 202.6, + Close = 219.4, + Volume = 469284350, + Change = 0.3, + Index = 203 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-09-13", + Open = 223.5, + High = 235, + Low = 210.5, + Close = 230.3, + Volume = 592950440, + Change = 3, + Index = 204 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-09-24", + Open = 229.3, + High = 257.2, + Low = 223.5, + Close = 254.3, + Volume = 577086700, + Change = 10.9, + Index = 205 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-10-03", + Open = 252.5, + High = 264.9, + Low = 237.8, + Close = 240.7, + Volume = 546148740, + Change = -4.7, + Index = 206 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-10-14", + Open = 246.7, + High = 251, + Low = 213.7, + Close = 219.2, + Volume = 589440130, + Change = -11.2, + Index = 207 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-10-23", + Open = 220, + High = 224.3, + Low = 212.1, + Close = 213.6, + Volume = 384561880, + Change = -2.9, + Index = 208 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-11-01", + Open = 244.7, + High = 273.5, + Low = 242.6, + Close = 249, + Volume = 732392780, + Change = 1.8, + Index = 209 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-11-12", + Open = 244.6, + High = 358.6, + Low = 238.9, + Close = 328.5, + Volume = 991653160, + Change = 34.3, + Index = 210 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-11-21", + Open = 335.8, + High = 348.5, + Low = 309.2, + Close = 339.6, + Volume = 700324320, + Change = 1.1, + Index = 211 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-12-03", + Open = 341.1, + High = 361.9, + Low = 326.6, + Close = 351.4, + Volume = 478645220, + Change = 3, + Index = 212 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-12-12", + Open = 353, + High = 429.3, + Low = 348.6, + Close = 418.1, + Volume = 599082110, + Change = 18.4, + Index = 213 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-12-23", + Open = 420, + High = 481.5, + Low = 415.4, + Close = 430.6, + Volume = 807128120, + Change = 2.5, + Index = 214 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-01-03", + Open = 435.9, + High = 465.3, + Low = 373, + Close = 410.4, + Volume = 565769940, + Change = -5.8, + Index = 215 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-01-15", + Open = 423.2, + High = 429.8, + Low = 377.3, + Close = 428.2, + Volume = 530063170, + Change = 1.2, + Index = 216 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-01-27", + Open = 423.5, + High = 439.7, + Low = 389, + Close = 397.2, + Volume = 476854060, + Change = -6.2, + Index = 217 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-02-05", + Open = 396.9, + High = 420, + Low = 374.4, + Close = 378.2, + Volume = 507024510, + Change = -4.7, + Index = 218 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-02-14", + Open = 373, + High = 380.6, + Low = 325.1, + Close = 355.8, + Volume = 607376290, + Change = -4.6, + Index = 219 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-02-26", + Open = 355, + High = 367.3, + Low = 288, + Close = 290.8, + Volume = 549149490, + Change = -18.1, + Index = 220 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-03-07", + Open = 291.2, + High = 303.9, + Low = 250.7, + Close = 262.7, + Volume = 754567280, + Change = -9.8, + Index = 221 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-03-18", + Open = 252.5, + High = 253.4, + Low = 217, + Close = 225.3, + Volume = 944623000, + Change = -10.8, + Index = 222 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-03-27", + Open = 231.6, + High = 291.8, + Low = 229.2, + Close = 273.1, + Volume = 982018670, + Change = 17.9, + Index = 223 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-04-07", + Open = 275.6, + High = 285, + Low = 214.2, + Close = 233.3, + Volume = 1117950500, + Change = -15.3, + Index = 224 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-04-16", + Open = 245, + High = 274.7, + Low = 217.8, + Close = 241.6, + Volume = 993815820, + Change = -1.4, + Index = 225 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-04-28", + Open = 243.5, + High = 294.9, + Low = 222.8, + Close = 285.9, + Volume = 866169890, + Change = 17.4, + Index = 226 + }); + } +} diff --git a/samples/charts/data-chart/data-annotation-band-layer/_Imports.razor b/samples/charts/data-chart/data-annotation-band-layer/_Imports.razor new file mode 100644 index 0000000000..d27d337cb1 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-band-layer/_Imports.razor @@ -0,0 +1,9 @@ +// these namespaces are global to the app +@using System.Net.Http +@using System.Net.Http.Json +@using Microsoft.AspNetCore.Components.Forms +@using Microsoft.AspNetCore.Components.Routing +@using Microsoft.AspNetCore.Components.Web +@using Microsoft.AspNetCore.Components.WebAssembly.Http +@using Microsoft.JSInterop +@using Infragistics.Samples diff --git a/samples/charts/data-chart/data-annotation-band-layer/wwwroot/index.css b/samples/charts/data-chart/data-annotation-band-layer/wwwroot/index.css new file mode 100644 index 0000000000..50ca13caa6 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-band-layer/wwwroot/index.css @@ -0,0 +1,4 @@ +/* +CSS styles are loaded from the shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/data-chart/data-annotation-band-layer/wwwroot/index.html b/samples/charts/data-chart/data-annotation-band-layer/wwwroot/index.html new file mode 100644 index 0000000000..8833030d8e --- /dev/null +++ b/samples/charts/data-chart/data-annotation-band-layer/wwwroot/index.html @@ -0,0 +1,30 @@ + + + + + + + + + + Samples | IgniteUI for Blazor | Infragistics + + + + + + + + + +
+ An unhandled error has occurred. + Reload + 🗙 +
+ + + + + + diff --git a/samples/charts/data-chart/data-annotation-line-layer/AnnotationLineData1.cs b/samples/charts/data-chart/data-annotation-line-layer/AnnotationLineData1.cs new file mode 100644 index 0000000000..2a902fb753 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-line-layer/AnnotationLineData1.cs @@ -0,0 +1,34 @@ +using System; +using System.Collections.Generic; +public class AnnotationLineData1Item +{ + public double StartX { get; set; } + public double StartY { get; set; } + public double EndX { get; set; } + public double EndY { get; set; } + public string Label { get; set; } +} + +public class AnnotationLineData1 + : List +{ + public AnnotationLineData1() + { + this.Add(new AnnotationLineData1Item() + { + StartX = 190, + StartY = 138, + EndX = 230, + EndY = 138, + Label = @"52-Week Low" + }); + this.Add(new AnnotationLineData1Item() + { + StartX = 190, + StartY = 481, + EndX = 230, + EndY = 481, + Label = @"52-Week High" + }); + } +} diff --git a/samples/charts/data-chart/data-annotation-line-layer/AnnotationLineData2.cs b/samples/charts/data-chart/data-annotation-line-layer/AnnotationLineData2.cs new file mode 100644 index 0000000000..606a283e5d --- /dev/null +++ b/samples/charts/data-chart/data-annotation-line-layer/AnnotationLineData2.cs @@ -0,0 +1,36 @@ +using System; +using System.Collections.Generic; +public class AnnotationLineData2Item +{ + public double StartX { get; set; } + public double StartY { get; set; } + public double EndX { get; set; } + public double EndY { get; set; } + public string Label { get; set; } +} + +public class AnnotationLineData2 + : List +{ + public AnnotationLineData2() + { + this.Add(new AnnotationLineData2Item() + { + StartX = 48, + StartY = 25, + EndX = 105, + EndY = 250, + Label = @"Growth & +Support" + }); + this.Add(new AnnotationLineData2Item() + { + StartX = 108, + StartY = 440, + EndX = 155, + EndY = 210, + Label = @"Decline & +Resistance" + }); + } +} diff --git a/samples/charts/data-chart/data-annotation-line-layer/App.razor b/samples/charts/data-chart/data-annotation-line-layer/App.razor new file mode 100644 index 0000000000..b202cf62eb --- /dev/null +++ b/samples/charts/data-chart/data-annotation-line-layer/App.razor @@ -0,0 +1,209 @@ +@using IgniteUI.Blazor.Controls + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
+
+ +@code { + + private Action BindElements { get; set; } + + protected override async Task OnAfterRenderAsync(bool firstRender) + { + var chart = this.chart; + var xAxis = this.xAxis; + var yAxisLeft = this.yAxisLeft; + var yAxisRight = this.yAxisRight; + var series1 = this.series1; + var tooltip = this.tooltip; + var lineLayer52WeekRange = this.lineLayer52WeekRange; + var lineLayerGrowthAndDecline = this.lineLayerGrowthAndDecline; + + this.BindElements = () => { + lineLayer52WeekRange.TargetAxis = this.yAxisRight; + lineLayerGrowthAndDecline.TargetAxis = this.xAxis; + }; + this.BindElements(); + + } + + private IgbDataChart chart; + private IgbCategoryXAxis xAxis; + private IgbNumericYAxis yAxisLeft; + private IgbNumericYAxis yAxisRight; + private IgbFinancialPriceSeries series1; + private IgbDataToolTipLayer tooltip; + private IgbDataAnnotationLineLayer lineLayer52WeekRange; + private IgbDataAnnotationLineLayer lineLayerGrowthAndDecline; + + private StockTesla _stockTesla = null; + public StockTesla StockTesla + { + get + { + if (_stockTesla == null) + { + _stockTesla = new StockTesla(); + } + return _stockTesla; + } + } + + private AnnotationLineData1 _annotationLineData1 = null; + public AnnotationLineData1 AnnotationLineData1 + { + get + { + if (_annotationLineData1 == null) + { + _annotationLineData1 = new AnnotationLineData1(); + } + return _annotationLineData1; + } + } + + private AnnotationLineData2 _annotationLineData2 = null; + public AnnotationLineData2 AnnotationLineData2 + { + get + { + if (_annotationLineData2 == null) + { + _annotationLineData2 = new AnnotationLineData2(); + } + return _annotationLineData2; + } + } + +} \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-line-layer/BlazorClientApp.csproj b/samples/charts/data-chart/data-annotation-line-layer/BlazorClientApp.csproj new file mode 100644 index 0000000000..ed10c7849c --- /dev/null +++ b/samples/charts/data-chart/data-annotation-line-layer/BlazorClientApp.csproj @@ -0,0 +1,21 @@ + + + + net9.0 + 3.0 + Infragistics.Samples + Infragistics.Samples + + + + 1701;1702,IDE0028,BL0005,0219,CS1998 + + + + + + + + + + diff --git a/samples/charts/data-chart/data-annotation-line-layer/BlazorClientApp.sln b/samples/charts/data-chart/data-annotation-line-layer/BlazorClientApp.sln new file mode 100644 index 0000000000..1e2eda208a --- /dev/null +++ b/samples/charts/data-chart/data-annotation-line-layer/BlazorClientApp.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BlazorClientApp", "BlazorClientApp.csproj", "{F69CC3F0-BCD1-4CE6-9F39-CBED14E7FA78}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {F69CC3F0-BCD1-4CE6-9F39-CBED14E7FA78}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F69CC3F0-BCD1-4CE6-9F39-CBED14E7FA78}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F69CC3F0-BCD1-4CE6-9F39-CBED14E7FA78}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F69CC3F0-BCD1-4CE6-9F39-CBED14E7FA78}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {FC52AAC8-4488-40AE-9621-75F6BA744B18} + EndGlobalSection +EndGlobal diff --git a/samples/charts/data-chart/data-annotation-line-layer/Program.cs b/samples/charts/data-chart/data-annotation-line-layer/Program.cs new file mode 100644 index 0000000000..77d15648d2 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-line-layer/Program.cs @@ -0,0 +1,38 @@ +using System; +using System.Net.Http; +using System.Collections.Generic; +using System.Threading.Tasks; +using System.Text; +using Microsoft.AspNetCore.Components.WebAssembly.Hosting; +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.Logging; +using IgniteUI.Blazor.Controls; // for registering Ignite UI modules + +namespace Infragistics.Samples +{ + public class Program + { + public static async Task Main(string[] args) + { + var builder = WebAssemblyHostBuilder.CreateDefault(args); + builder.RootComponents.Add("app"); + builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) }); + // registering Ignite UI modules + builder.Services.AddIgniteUIBlazor( + typeof(IgbDataChartCoreModule), + typeof(IgbDataChartCategoryModule), + typeof(IgbDataChartCategoryCoreModule), + typeof(IgbDataChartFinancialCoreModule), + typeof(IgbDataChartFinancialModule), + typeof(IgbDataChartFinancialOverlaysModule), + typeof(IgbDataChartInteractivityModule), + typeof(IgbDataChartAnnotationModule), + typeof(IgbDataAnnotationLineLayerModule), + typeof(IgbNumberAbbreviatorModule), + typeof(IgbAnnotationLayerProxyModule) + ); + await builder.Build().RunAsync(); + } + } +} diff --git a/samples/charts/data-chart/data-annotation-line-layer/Properties/launchSettings.json b/samples/charts/data-chart/data-annotation-line-layer/Properties/launchSettings.json new file mode 100644 index 0000000000..18bd6fb5bc --- /dev/null +++ b/samples/charts/data-chart/data-annotation-line-layer/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:4200", + "sslPort": 44385 + } + }, + "profiles": { + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "BlazorSamples": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:4200" + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-line-layer/StockTesla.cs b/samples/charts/data-chart/data-annotation-line-layer/StockTesla.cs new file mode 100644 index 0000000000..9b2caebc66 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-line-layer/StockTesla.cs @@ -0,0 +1,2518 @@ +using System; +using System.Collections.Generic; +public class StockTeslaItem +{ + public string Date { get; set; } + public double Open { get; set; } + public double High { get; set; } + public double Low { get; set; } + public double Close { get; set; } + public double Volume { get; set; } + public double Change { get; set; } + public double Index { get; set; } +} + +public class StockTesla + : List +{ + public StockTesla() + { + this.Add(new StockTeslaItem() + { + Date = @"2019-01-10", + Open = 20.4, + High = 23, + Low = 19.8, + Close = 23, + Volume = 779333701, + Change = 12.7, + Index = 0 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-01-22", + Open = 22.8, + High = 23.5, + Low = 19.7, + Close = 19.9, + Volume = 911781100, + Change = -12.6, + Index = 1 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-01-31", + Open = 19.5, + High = 20.8, + Low = 18.6, + Close = 20.5, + Volume = 926375717, + Change = 5, + Index = 2 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-02-11", + Open = 20.4, + High = 21.6, + Low = 19.9, + Close = 20.9, + Volume = 687520471, + Change = 2.4, + Index = 3 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-02-21", + Open = 21.1, + High = 21.2, + Low = 19.4, + Close = 19.4, + Volume = 597552272, + Change = -7.9, + Index = 4 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-03-04", + Open = 19.6, + High = 21.3, + Low = 18.9, + Close = 19, + Volume = 1218669201, + Change = -3.1, + Index = 5 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-03-13", + Open = 18.8, + High = 19.5, + Low = 18, + Close = 19.3, + Volume = 1034156904, + Change = 2.5, + Index = 6 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-03-22", + Open = 19.5, + High = 19.7, + Low = 17.6, + Close = 17.6, + Volume = 980694095, + Change = -9.5, + Index = 7 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-04-02", + Open = 17.3, + High = 19.3, + Low = 17, + Close = 19.1, + Volume = 788473494, + Change = 10.1, + Index = 8 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-04-11", + Open = 19.2, + High = 19.7, + Low = 17.4, + Close = 17.9, + Volume = 1165555442, + Change = -6.6, + Index = 9 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-04-23", + Open = 18, + High = 18.3, + Low = 17, + Close = 17.6, + Volume = 870373200, + Change = -2.3, + Index = 10 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-05-02", + Open = 17.6, + High = 17.7, + Low = 15.4, + Close = 16.3, + Volume = 1629432326, + Change = -7.5, + Index = 11 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-05-13", + Open = 16.3, + High = 17.2, + Low = 15, + Close = 15.1, + Volume = 1131045605, + Change = -6.9, + Index = 12 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-05-22", + Open = 15.3, + High = 15.6, + Low = 12.8, + Close = 12.8, + Volume = 1455503588, + Change = -15.9, + Index = 13 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-06-03", + Open = 13, + High = 13.3, + Low = 11.8, + Close = 11.9, + Volume = 1415442268, + Change = -7.9, + Index = 14 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-06-12", + Open = 12.1, + High = 14.9, + Low = 12, + Close = 14, + Volume = 1515000443, + Change = 15.6, + Index = 15 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-06-21", + Open = 14, + High = 15.6, + Low = 13.8, + Close = 14.8, + Volume = 1009123371, + Change = 5.5, + Index = 16 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-07-02", + Open = 14.9, + High = 15.5, + Low = 14.5, + Close = 15, + Volume = 766921642, + Change = 0.6, + Index = 17 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-07-12", + Open = 16, + High = 16.4, + Low = 15.2, + Close = 16.3, + Volume = 887983836, + Change = 2.4, + Index = 18 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-07-23", + Open = 16.5, + High = 17.5, + Low = 16.3, + Close = 17.3, + Volume = 788941000, + Change = 4.9, + Index = 19 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-08-01", + Open = 17.3, + High = 17.7, + Low = 14.8, + Close = 15.6, + Volume = 1175082297, + Change = -9.8, + Index = 20 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-08-12", + Open = 15.4, + High = 16, + Low = 15, + Close = 15.3, + Volume = 560129569, + Change = -1, + Index = 21 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-08-21", + Open = 15.3, + High = 15.7, + Low = 14.1, + Close = 14.7, + Volume = 677293701, + Change = -3.5, + Index = 22 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-08-30", + Open = 14.9, + High = 15.5, + Low = 14.1, + Close = 15, + Volume = 650239370, + Change = 1.3, + Index = 23 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-09-11", + Open = 14.9, + High = 16.5, + Low = 14.6, + Close = 16.5, + Volume = 636766167, + Change = 10.3, + Index = 24 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-09-20", + Open = 16.5, + High = 16.9, + Low = 15.9, + Close = 16, + Volume = 572802643, + Change = -2.9, + Index = 25 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-10-01", + Open = 16, + High = 16.6, + Low = 14.6, + Close = 16.3, + Volume = 931821239, + Change = 2, + Index = 26 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-10-10", + Open = 16.2, + High = 16.6, + Low = 15, + Close = 16.3, + Volume = 891798049, + Change = 0.6, + Index = 27 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-10-21", + Open = 16.5, + High = 17.7, + Low = 16.5, + Close = 16.9, + Volume = 713093463, + Change = 2.6, + Index = 28 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-10-30", + Open = 17, + High = 22.7, + Low = 16.7, + Close = 21, + Volume = 1752943598, + Change = 23.9, + Index = 29 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-11-08", + Open = 20.9, + High = 22.8, + Low = 20.6, + Close = 22.5, + Volume = 834957256, + Change = 7.7, + Index = 30 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-11-19", + Open = 22.9, + High = 24, + Low = 22.8, + Close = 24, + Volume = 738746390, + Change = 4.5, + Index = 31 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-11-29", + Open = 24, + High = 24.1, + Low = 21.8, + Close = 22, + Volume = 870685288, + Change = -8.4, + Index = 32 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-12-10", + Open = 22, + High = 23.4, + Low = 21.8, + Close = 23.3, + Volume = 712016613, + Change = 5.9, + Index = 33 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-12-19", + Open = 23.5, + High = 27.1, + Low = 23.4, + Close = 26.9, + Volume = 1203765433, + Change = 14.8, + Index = 34 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-12-31", + Open = 27.4, + High = 29, + Low = 26.7, + Close = 27.9, + Volume = 1195073357, + Change = 2, + Index = 35 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-01-10", + Open = 28.3, + High = 33.3, + Low = 28.1, + Close = 31.9, + Volume = 1925386078, + Change = 12.6, + Index = 36 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-01-22", + Open = 32.9, + High = 39.6, + Low = 32.8, + Close = 38, + Volume = 2364043518, + Change = 15.4, + Index = 37 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-01-31", + Open = 37.6, + High = 43.5, + Low = 36, + Close = 43.4, + Volume = 1835141382, + Change = 15.3, + Index = 38 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-02-11", + Open = 44.9, + High = 64.6, + Low = 44.9, + Close = 51.6, + Volume = 3748903126, + Change = 14.9, + Index = 39 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-02-21", + Open = 51.9, + High = 63, + Low = 49, + Close = 60.1, + Volume = 1921517039, + Change = 15.8, + Index = 40 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-03-03", + Open = 55.9, + High = 57.6, + Low = 40.8, + Close = 49.7, + Volume = 2121850940, + Change = -11.1, + Index = 41 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-03-12", + Open = 50.9, + High = 51.1, + Low = 36.4, + Close = 37.4, + Volume = 1553329923, + Change = -26.6, + Index = 42 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-03-23", + Open = 39.7, + High = 40.5, + Low = 23.4, + Close = 29, + Volume = 2487688157, + Change = -27, + Index = 43 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-04-01", + Open = 31.8, + High = 37.3, + Low = 31.6, + Close = 32.1, + Volume = 1785601357, + Change = 0.9, + Index = 44 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-04-13", + Open = 32.1, + High = 43.5, + Low = 29.8, + Close = 43.4, + Volume = 1860352620, + Change = 35.3, + Index = 45 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-04-22", + Open = 46.6, + High = 51.7, + Low = 44.9, + Close = 48.8, + Volume = 2056797321, + Change = 4.7, + Index = 46 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-05-01", + Open = 48.5, + High = 58, + Low = 45.5, + Close = 46.8, + Volume = 2093959203, + Change = -3.6, + Index = 47 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-05-12", + Open = 46.7, + High = 56.2, + Low = 46.5, + Close = 54, + Volume = 1611543246, + Change = 15.5, + Index = 48 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-05-21", + Open = 54.7, + High = 55.6, + Low = 50.9, + Close = 55.2, + Volume = 1262468113, + Change = 0.8, + Index = 49 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-06-02", + Open = 54.8, + High = 60.6, + Low = 52.3, + Close = 58.8, + Volume = 1160487993, + Change = 7.2, + Index = 50 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-06-11", + Open = 59.2, + High = 68.5, + Low = 57.2, + Close = 64.9, + Volume = 1270377400, + Change = 9.5, + Index = 51 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-06-22", + Open = 65.3, + High = 67.9, + Low = 60.6, + Close = 66.3, + Volume = 1217946366, + Change = 1.5, + Index = 52 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-07-01", + Open = 66.6, + High = 75.7, + Low = 62.5, + Close = 74.6, + Volume = 1120591270, + Change = 12.1, + Index = 53 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-07-13", + Open = 81.4, + High = 119.7, + Low = 79, + Close = 99.8, + Volume = 2244920779, + Change = 22.6, + Index = 54 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-07-22", + Open = 103.7, + High = 111.7, + Low = 95.4, + Close = 106.2, + Volume = 1662846099, + Change = 2.3, + Index = 55 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-07-31", + Open = 111.9, + High = 112.6, + Low = 91.1, + Close = 95.4, + Volume = 1573159944, + Change = -14.8, + Index = 56 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-08-11", + Open = 96.6, + High = 101.8, + Low = 91, + Close = 91.6, + Volume = 798587331, + Change = -5.2, + Index = 57 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-08-20", + Open = 98, + High = 134.8, + Low = 95.7, + Close = 133.5, + Volume = 1866534416, + Change = 36.2, + Index = 58 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-08-31", + Open = 136.3, + High = 166.7, + Low = 128.5, + Close = 166.1, + Volume = 2008507459, + Change = 21.9, + Index = 59 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-09-10", + Open = 167.4, + High = 167.5, + Low = 110, + Close = 123.8, + Volume = 1992227059, + Change = -26, + Index = 60 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-09-21", + Open = 127.3, + High = 154, + Low = 120.2, + Close = 149.8, + Volume = 1758737696, + Change = 17.7, + Index = 61 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-09-30", + Open = 143.2, + High = 145.9, + Low = 117.1, + Close = 143, + Volume = 1459893236, + Change = -0.1, + Index = 62 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-10-09", + Open = 146.9, + High = 149.6, + Low = 135.4, + Close = 144.7, + Volume = 985545158, + Change = -1.5, + Index = 63 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-10-20", + Open = 147.3, + High = 155.3, + Low = 139.7, + Close = 140.6, + Volume = 773077727, + Change = -4.5, + Index = 64 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-10-29", + Open = 140.9, + High = 148.4, + Low = 135.3, + Close = 136.9, + Volume = 615339122, + Change = -2.8, + Index = 65 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-11-09", + Open = 135.6, + High = 150.8, + Low = 126.4, + Close = 140.4, + Volume = 669171368, + Change = 3.5, + Index = 66 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-11-18", + Open = 140, + High = 165.3, + Low = 132, + Close = 162.2, + Volume = 760451265, + Change = 15.8, + Index = 67 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-11-30", + Open = 164, + High = 202.6, + Low = 162.5, + Close = 189.2, + Volume = 1046371155, + Change = 15.4, + Index = 68 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-12-09", + Open = 199.2, + High = 218.1, + Low = 180.4, + Close = 201.5, + Volume = 1055933265, + Change = 1.2, + Index = 69 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-12-18", + Open = 191.5, + High = 231.7, + Low = 188.8, + Close = 231.7, + Volume = 1593943601, + Change = 21, + Index = 70 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-12-30", + Open = 222.1, + High = 232.2, + Low = 204.7, + Close = 231.6, + Volume = 791942570, + Change = 4.3, + Index = 71 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-01-11", + Open = 233.3, + High = 294.8, + Low = 230.4, + Close = 270.4, + Volume = 1084025779, + Change = 15.9, + Index = 72 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-01-21", + Open = 277, + High = 289.3, + Low = 273, + Close = 281.7, + Volume = 663774487, + Change = 1.7, + Index = 73 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-02-01", + Open = 278.1, + High = 300.1, + Low = 260, + Close = 279.9, + Volume = 595397009, + Change = 0.7, + Index = 74 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-02-10", + Open = 281.6, + High = 293.5, + Low = 266.7, + Close = 268.3, + Volume = 445813486, + Change = -4.7, + Index = 75 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-02-22", + Open = 270.8, + High = 276.6, + Low = 236.7, + Close = 238.2, + Volume = 496372009, + Change = -12.1, + Index = 76 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-03-03", + Open = 220.7, + High = 290.7, + Low = 206.3, + Close = 217.7, + Volume = 793689739, + Change = -1.3, + Index = 77 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-03-12", + Open = 218.6, + High = 291.3, + Low = 179.8, + Close = 231.2, + Volume = 1215209162, + Change = 5.8, + Index = 78 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-03-23", + Open = 231.4, + High = 237.7, + Low = 208.2, + Close = 220.7, + Volume = 744776145, + Change = -4.6, + Index = 79 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-04-01", + Open = 222.6, + High = 230.8, + Low = 197, + Close = 220.6, + Volume = 730733684, + Change = -0.9, + Index = 80 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-04-13", + Open = 235.9, + High = 254.3, + Low = 222.6, + Close = 254.1, + Volume = 646721884, + Change = 7.7, + Index = 81 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-04-22", + Open = 256.9, + High = 260.3, + Low = 230.6, + Close = 239.9, + Volume = 740840774, + Change = -6.6, + Index = 82 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-05-03", + Open = 239.9, + High = 249.8, + Low = 222, + Close = 228.3, + Volume = 623423313, + Change = -4.8, + Index = 83 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-05-12", + Open = 226.3, + High = 230, + Low = 195.6, + Close = 196.6, + Volume = 643844974, + Change = -13.1, + Index = 84 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-05-21", + Open = 200.5, + High = 202.2, + Low = 182.3, + Close = 193.6, + Volume = 729192883, + Change = -3.4, + Index = 85 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-06-02", + Open = 193.9, + High = 211.9, + Low = 191.2, + Close = 201.7, + Volume = 545095944, + Change = 4, + Index = 86 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-06-11", + Open = 200.6, + High = 207.7, + Low = 190.4, + Close = 203.3, + Volume = 478366128, + Change = 1.3, + Index = 87 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-06-22", + Open = 204.1, + High = 210.5, + Low = 197.8, + Close = 207.9, + Volume = 454698495, + Change = 1.9, + Index = 88 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-07-01", + Open = 210.7, + High = 232.5, + Low = 210, + Close = 226, + Volume = 558441596, + Change = 7.3, + Index = 89 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-07-13", + Open = 226.3, + High = 233.3, + Low = 206.8, + Close = 222.8, + Volume = 470942387, + Change = -1.5, + Index = 90 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-07-22", + Open = 223.6, + High = 226.2, + Low = 207.1, + Close = 216.4, + Volume = 372195097, + Change = -3.2, + Index = 91 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-08-02", + Open = 215.5, + High = 242.3, + Low = 209.1, + Close = 236.6, + Volume = 547284685, + Change = 9.8, + Index = 92 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-08-11", + Open = 239.7, + High = 241.6, + Low = 232.5, + Close = 235.9, + Volume = 315341455, + Change = -1.6, + Index = 93 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-08-20", + Open = 235.4, + High = 243.3, + Low = 216.3, + Close = 226.8, + Volume = 392227478, + Change = -3.7, + Index = 94 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-08-31", + Open = 228.5, + High = 246.8, + Low = 226.9, + Close = 245.2, + Volume = 337503634, + Change = 7.3, + Index = 95 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-09-10", + Open = 244.7, + High = 254.8, + Low = 241.4, + Close = 245.4, + Volume = 328100734, + Change = 0.3, + Index = 96 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-09-21", + Open = 246.7, + High = 253.7, + Low = 236.3, + Close = 246.5, + Volume = 420153012, + Change = -0.1, + Index = 97 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-09-30", + Open = 247.8, + High = 266.3, + Low = 246.4, + Close = 258.5, + Volume = 422393262, + Change = 4.3, + Index = 98 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-10-11", + Open = 259.5, + High = 269, + Low = 254.5, + Close = 264, + Volume = 392144589, + Change = 1.7, + Index = 99 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-10-20", + Open = 267, + High = 292.6, + Low = 265.5, + Close = 288.6, + Volume = 368796877, + Change = 8.1, + Index = 100 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-10-29", + Open = 285.3, + High = 371.7, + Low = 285.2, + Close = 371.3, + Volume = 825862313, + Change = 30.1, + Index = 101 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-11-09", + Open = 381.7, + High = 414.5, + Low = 337.2, + Close = 341.2, + Volume = 818978542, + Change = -10.6, + Index = 102 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-11-18", + Open = 336.8, + High = 373.2, + Low = 326.2, + Close = 365.5, + Volume = 613304311, + Change = 8.5, + Index = 103 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-11-30", + Open = 366.3, + High = 400.6, + Low = 354, + Close = 381.6, + Volume = 515052382, + Change = 4.2, + Index = 104 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-12-09", + Open = 386.9, + High = 390.9, + Low = 316.8, + Close = 334.6, + Volume = 473333567, + Change = -13.5, + Index = 105 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-12-20", + Open = 336.2, + High = 340.3, + Low = 297.8, + Close = 300, + Volume = 524367113, + Change = -10.8, + Index = 106 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-12-30", + Open = 305.6, + High = 373, + Low = 295.4, + Close = 356.8, + Volume = 492530059, + Change = 16.7, + Index = 107 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-01-10", + Open = 357.8, + High = 402.7, + Low = 326.7, + Close = 352.7, + Volume = 592103938, + Change = -1.4, + Index = 108 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-01-20", + Open = 351.2, + High = 371.9, + Low = 331.3, + Close = 332.1, + Volume = 532857144, + Change = -5.4, + Index = 109 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-01-31", + Open = 332.1, + High = 334.8, + Low = 264, + Close = 312.2, + Volume = 833589022, + Change = -6, + Index = 110 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-02-09", + Open = 311.7, + High = 315.9, + Low = 293.5, + Close = 310.7, + Volume = 456395505, + Change = -0.3, + Index = 111 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-02-18", + Open = 302.8, + High = 314.6, + Low = 279.2, + Close = 285.7, + Volume = 446153356, + Change = -5.7, + Index = 112 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-03-02", + Open = 278, + High = 296.6, + Low = 233.3, + Close = 293.3, + Volume = 638352514, + Change = 5.5, + Index = 113 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-03-11", + Open = 292.9, + High = 295.5, + Low = 260.7, + Close = 265.1, + Volume = 466566467, + Change = -9.5, + Index = 114 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-03-22", + Open = 260.2, + High = 332.6, + Low = 252, + Close = 331.3, + Volume = 576869668, + Change = 27.3, + Index = 115 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-03-31", + Open = 326.6, + High = 371.6, + Low = 325.5, + Close = 359.2, + Volume = 536607263, + Change = 10, + Index = 116 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-04-11", + Open = 360.4, + High = 384.3, + Low = 324.9, + Close = 325.3, + Volume = 499682510, + Change = -9.7, + Index = 117 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-04-21", + Open = 332.5, + High = 364.1, + Low = 324.4, + Close = 336.3, + Volume = 457210487, + Change = 1.1, + Index = 118 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-05-02", + Open = 338.3, + High = 345, + Low = 273.9, + Close = 301, + Volume = 639990965, + Change = -11, + Index = 119 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-05-11", + Open = 301.1, + High = 318.5, + Low = 242.4, + Close = 244.7, + Volume = 583211967, + Change = -18.7, + Index = 120 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-05-20", + Open = 233.7, + High = 262.4, + Low = 211, + Close = 221.3, + Volume = 721880082, + Change = -5.3, + Index = 121 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-06-01", + Open = 218.3, + High = 259.6, + Low = 206.9, + Close = 246.8, + Volume = 644596235, + Change = 13, + Index = 122 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-06-10", + Open = 244.2, + High = 264.2, + Low = 227.9, + Close = 232.2, + Volume = 633672873, + Change = -4.9, + Index = 123 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-06-22", + Open = 223.2, + High = 246.8, + Low = 208.7, + Close = 236.1, + Volume = 744240764, + Change = 5.8, + Index = 124 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-07-01", + Open = 237.9, + High = 252.1, + Low = 218.9, + Close = 227.3, + Volume = 631776422, + Change = -4.5, + Index = 125 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-07-13", + Open = 223, + High = 255, + Low = 216.2, + Close = 237, + Volume = 625812242, + Change = 6.3, + Index = 126 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-07-22", + Open = 234.9, + High = 280.8, + Low = 229.3, + Close = 272.2, + Volume = 646037224, + Change = 15.9, + Index = 127 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-08-02", + Open = 272.2, + High = 311.9, + Low = 256.3, + Close = 300.6, + Volume = 611660612, + Change = 10.4, + Index = 128 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-08-11", + Open = 305, + High = 313.6, + Low = 279.4, + Close = 286.6, + Volume = 616204291, + Change = -6, + Index = 129 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-08-22", + Open = 289.4, + High = 314.7, + Low = 285, + Close = 289.9, + Volume = 490658060, + Change = 0.2, + Index = 130 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-08-31", + Open = 291.5, + High = 303.6, + Low = 271.8, + Close = 275.6, + Volume = 376152572, + Change = -5.4, + Index = 131 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-09-12", + Open = 272.6, + High = 305.5, + Low = 265.7, + Close = 304.4, + Volume = 367924580, + Change = 11.7, + Index = 132 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-09-21", + Open = 292.9, + High = 313.8, + Low = 290.4, + Close = 300.8, + Volume = 477171180, + Change = 2.7, + Index = 133 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-09-30", + Open = 299.9, + High = 301.3, + Low = 262.5, + Close = 265.2, + Volume = 454307920, + Change = -11.5, + Index = 134 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-10-11", + Open = 254.5, + High = 257.5, + Low = 215, + Close = 216.5, + Volume = 593078170, + Change = -14.9, + Index = 135 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-10-20", + Open = 215.3, + High = 229.8, + Low = 202, + Close = 207.3, + Volume = 592158560, + Change = -3.7, + Index = 136 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-10-31", + Open = 206.4, + High = 233.8, + Low = 198.6, + Close = 227.5, + Volume = 550341050, + Change = 10.2, + Index = 137 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-11-09", + Open = 234, + High = 237.4, + Low = 177.1, + Close = 177.6, + Volume = 630702790, + Change = -24.1, + Index = 138 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-11-18", + Open = 189.9, + High = 200.8, + Low = 176.6, + Close = 180.2, + Volume = 637579480, + Change = -5.1, + Index = 139 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-11-30", + Open = 175.8, + High = 194.8, + Low = 166.2, + Close = 194.7, + Volume = 617126140, + Change = 10.7, + Index = 140 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-12-09", + Open = 197.1, + High = 198.9, + Low = 169.1, + Close = 179, + Volume = 625675690, + Change = -9.1, + Index = 141 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-12-20", + Open = 176.1, + High = 177.4, + Low = 137.7, + Close = 137.8, + Volume = 986660100, + Change = -21.7, + Index = 142 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-12-30", + Open = 139.3, + High = 141.3, + Low = 108.2, + Close = 123.2, + Volume = 1331911900, + Change = -11.6, + Index = 143 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-01-11", + Open = 118.5, + High = 126, + Low = 101.8, + Close = 123.2, + Volume = 1332426500, + Change = 4, + Index = 144 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-01-23", + Open = 122.6, + High = 145.4, + Low = 115.6, + Close = 143.8, + Volume = 1244541500, + Change = 17.3, + Index = 145 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-02-01", + Open = 143, + High = 183.8, + Low = 138.1, + Close = 181.4, + Volume = 1534337700, + Change = 26.9, + Index = 146 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-02-10", + Open = 187.3, + High = 214, + Low = 182.6, + Close = 196.9, + Volume = 1423167800, + Change = 5.1, + Index = 147 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-02-22", + Open = 194.4, + High = 217.6, + Low = 187.6, + Close = 200.9, + Volume = 1386211900, + Change = 3.3, + Index = 148 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-03-03", + Open = 203.9, + High = 211.2, + Low = 186, + Close = 197.8, + Volume = 1095786600, + Change = -3, + Index = 149 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-03-14", + Open = 198.5, + High = 198.6, + Low = 163.9, + Close = 183.3, + Volume = 1101144600, + Change = -7.7, + Index = 150 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-03-23", + Open = 180.8, + High = 200.7, + Low = 176, + Close = 192.2, + Volume = 978213300, + Change = 6.3, + Index = 151 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-04-03", + Open = 191.6, + High = 207.8, + Low = 185.4, + Close = 194.8, + Volume = 909718040, + Change = 1.6, + Index = 152 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-04-13", + Open = 197.3, + High = 198.7, + Low = 176.1, + Close = 185.9, + Volume = 905319000, + Change = -5.8, + Index = 153 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-04-24", + Open = 184, + High = 189.7, + Low = 158.6, + Close = 162.6, + Volume = 905416980, + Change = -11.6, + Index = 154 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-05-03", + Open = 159.8, + High = 165.5, + Low = 152.4, + Close = 160.6, + Volume = 881897100, + Change = 0.5, + Index = 155 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-05-12", + Open = 162.7, + High = 177.4, + Low = 159.6, + Close = 168, + Volume = 785510430, + Change = 3.2, + Index = 156 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-05-23", + Open = 167.7, + High = 193, + Low = 164.4, + Close = 185.8, + Volume = 864025390, + Change = 10.8, + Index = 157 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-06-02", + Open = 182.2, + High = 217.2, + Low = 178.2, + Close = 214, + Volume = 988496020, + Change = 17.4, + Index = 158 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-06-13", + Open = 217.8, + High = 259.7, + Low = 212.5, + Close = 258.7, + Volume = 1161622400, + Change = 18.8, + Index = 159 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-06-23", + Open = 260.2, + High = 277, + Low = 247.3, + Close = 256.6, + Volume = 1220407300, + Change = -1.4, + Index = 160 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-07-05", + Open = 250.1, + High = 284.2, + Low = 240.7, + Close = 282.5, + Volume = 999163700, + Change = 13, + Index = 161 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-07-14", + Open = 278.1, + High = 285.3, + Low = 265.1, + Close = 281.4, + Volume = 774400400, + Change = 1.2, + Index = 162 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-07-25", + Open = 286.6, + High = 299.3, + Low = 254.1, + Close = 265.3, + Volume = 973076400, + Change = -7.4, + Index = 163 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-08-03", + Open = 263.2, + High = 269.1, + Low = 250.5, + Close = 259.3, + Volume = 678809820, + Change = -1.5, + Index = 164 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-08-14", + Open = 261, + High = 264.8, + Low = 233.8, + Close = 239.8, + Volume = 716008860, + Change = -8.1, + Index = 165 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-08-23", + Open = 238.7, + High = 240.8, + Low = 212.4, + Close = 236.9, + Volume = 825055300, + Change = -0.8, + Index = 166 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-09-01", + Open = 238.7, + High = 261.2, + Low = 228.2, + Close = 245, + Volume = 811502630, + Change = 2.7, + Index = 167 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-09-13", + Open = 245, + High = 278.4, + Low = 243.3, + Close = 271.3, + Volume = 902643400, + Change = 10.7, + Index = 168 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-09-22", + Open = 271.3, + High = 279, + Low = 244.5, + Close = 244.9, + Volume = 816639600, + Change = -9.7, + Index = 169 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-10-03", + Open = 243.4, + High = 254.8, + Low = 234.6, + Close = 246.5, + Volume = 814604700, + Change = 1.3, + Index = 170 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-10-12", + Open = 248.1, + High = 268.9, + Low = 247.6, + Close = 258.9, + Volume = 806250900, + Change = 4.3, + Index = 171 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-10-23", + Open = 258.9, + High = 259.6, + Low = 202.5, + Close = 212.1, + Volume = 869390890, + Change = -18.1, + Index = 172 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-11-01", + Open = 216.5, + High = 222, + Low = 194.1, + Close = 205.7, + Volume = 811468170, + Change = -5, + Index = 173 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-11-10", + Open = 213, + High = 226.4, + Low = 205.7, + Close = 214.6, + Volume = 859763700, + Change = 0.8, + Index = 174 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-11-21", + Open = 215.6, + High = 246.7, + Low = 211.6, + Close = 241.2, + Volume = 959006600, + Change = 11.9, + Index = 175 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-12-01", + Open = 242, + High = 252.8, + Low = 231.4, + Close = 238.8, + Volume = 832910200, + Change = -1.3, + Index = 176 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-12-12", + Open = 235.8, + High = 246.7, + Low = 233.3, + Close = 237, + Volume = 772018400, + Change = 0.5, + Index = 177 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-12-21", + Open = 234.2, + High = 259.8, + Low = 228.2, + Close = 254.5, + Volume = 900893400, + Change = 8.7, + Index = 178 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-01-03", + Open = 256.8, + High = 265.1, + Low = 236.3, + Close = 238.4, + Volume = 727005170, + Change = -7.1, + Index = 179 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-01-12", + Open = 239.2, + High = 242.7, + Low = 217.2, + Close = 218.9, + Volume = 697536380, + Change = -8.5, + Index = 180 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-01-24", + Open = 215.1, + High = 223.5, + Low = 206.3, + Close = 207.8, + Volume = 777303400, + Change = -3.4, + Index = 181 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-02-02", + Open = 189.7, + High = 196.4, + Low = 180.1, + Close = 187.9, + Volume = 846092780, + Change = -0.9, + Index = 182 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-02-13", + Open = 184.3, + High = 194.7, + Low = 175, + Close = 184, + Volume = 718274070, + Change = -0.1, + Index = 183 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-02-23", + Open = 185.3, + High = 203.2, + Low = 183.4, + Close = 192, + Volume = 693352670, + Change = 3.6, + Index = 184 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-03-05", + Open = 192.3, + High = 205.6, + Low = 177.6, + Close = 180.7, + Volume = 742344460, + Change = -6, + Index = 185 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-03-14", + Open = 180, + High = 182.9, + Low = 160.5, + Close = 162.5, + Volume = 701227950, + Change = -9.7, + Index = 186 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-03-25", + Open = 163.2, + High = 178.2, + Low = 160.8, + Close = 172.6, + Volume = 589466660, + Change = 5.8, + Index = 187 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-04-04", + Open = 178.6, + High = 184.2, + Low = 163.3, + Close = 171.1, + Volume = 676969950, + Change = -4.2, + Index = 188 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-04-15", + Open = 169.1, + High = 179.2, + Low = 160.5, + Close = 161.5, + Volume = 694829970, + Change = -4.5, + Index = 189 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-04-24", + Open = 156.7, + High = 168, + Low = 138.8, + Close = 162.1, + Volume = 775433710, + Change = 3.4, + Index = 190 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-05-03", + Open = 159, + High = 198.9, + Low = 158.4, + Close = 181.2, + Volume = 864614000, + Change = 14, + Index = 191 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-05-14", + Open = 183.8, + High = 187.6, + Low = 167.8, + Close = 177.6, + Volume = 531409380, + Change = -3.4, + Index = 192 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-05-23", + Open = 179.9, + High = 186.9, + Low = 171.4, + Close = 173.7, + Volume = 554203970, + Change = -3.4, + Index = 193 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-06-04", + Open = 174.8, + High = 182.7, + Low = 173.2, + Close = 174.8, + Volume = 453828370, + Change = 0, + Index = 194 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-06-13", + Open = 175.4, + High = 191.1, + Low = 167.4, + Close = 182.5, + Volume = 509090870, + Change = 4.1, + Index = 195 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-06-25", + Open = 185.8, + High = 188.8, + Low = 176.9, + Close = 187.4, + Volume = 505399520, + Change = 0.8, + Index = 196 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-07-05", + Open = 186.5, + High = 252.4, + Low = 186.4, + Close = 251.5, + Volume = 925723660, + Change = 34.8, + Index = 197 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-07-16", + Open = 247.7, + High = 271, + Low = 233.1, + Close = 256.6, + Volume = 1097390000, + Change = 3.6, + Index = 198 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-07-25", + Open = 252.7, + High = 258.5, + Low = 214.7, + Close = 220.2, + Volume = 795590700, + Change = -12.9, + Index = 199 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-08-05", + Open = 221.2, + High = 234.7, + Low = 182, + Close = 198.9, + Volume = 658914080, + Change = -10.1, + Index = 200 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-08-14", + Open = 200.8, + High = 208.5, + Low = 191.5, + Close = 201.4, + Volume = 479168160, + Change = 0.3, + Index = 201 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-08-23", + Open = 205, + High = 228.2, + Low = 204.8, + Close = 220.3, + Volume = 560235700, + Change = 7.5, + Index = 202 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-09-04", + Open = 218.8, + High = 222.2, + Low = 202.6, + Close = 219.4, + Volume = 469284350, + Change = 0.3, + Index = 203 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-09-13", + Open = 223.5, + High = 235, + Low = 210.5, + Close = 230.3, + Volume = 592950440, + Change = 3, + Index = 204 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-09-24", + Open = 229.3, + High = 257.2, + Low = 223.5, + Close = 254.3, + Volume = 577086700, + Change = 10.9, + Index = 205 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-10-03", + Open = 252.5, + High = 264.9, + Low = 237.8, + Close = 240.7, + Volume = 546148740, + Change = -4.7, + Index = 206 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-10-14", + Open = 246.7, + High = 251, + Low = 213.7, + Close = 219.2, + Volume = 589440130, + Change = -11.2, + Index = 207 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-10-23", + Open = 220, + High = 224.3, + Low = 212.1, + Close = 213.6, + Volume = 384561880, + Change = -2.9, + Index = 208 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-11-01", + Open = 244.7, + High = 273.5, + Low = 242.6, + Close = 249, + Volume = 732392780, + Change = 1.8, + Index = 209 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-11-12", + Open = 244.6, + High = 358.6, + Low = 238.9, + Close = 328.5, + Volume = 991653160, + Change = 34.3, + Index = 210 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-11-21", + Open = 335.8, + High = 348.5, + Low = 309.2, + Close = 339.6, + Volume = 700324320, + Change = 1.1, + Index = 211 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-12-03", + Open = 341.1, + High = 361.9, + Low = 326.6, + Close = 351.4, + Volume = 478645220, + Change = 3, + Index = 212 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-12-12", + Open = 353, + High = 429.3, + Low = 348.6, + Close = 418.1, + Volume = 599082110, + Change = 18.4, + Index = 213 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-12-23", + Open = 420, + High = 481.5, + Low = 415.4, + Close = 430.6, + Volume = 807128120, + Change = 2.5, + Index = 214 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-01-03", + Open = 435.9, + High = 465.3, + Low = 373, + Close = 410.4, + Volume = 565769940, + Change = -5.8, + Index = 215 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-01-15", + Open = 423.2, + High = 429.8, + Low = 377.3, + Close = 428.2, + Volume = 530063170, + Change = 1.2, + Index = 216 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-01-27", + Open = 423.5, + High = 439.7, + Low = 389, + Close = 397.2, + Volume = 476854060, + Change = -6.2, + Index = 217 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-02-05", + Open = 396.9, + High = 420, + Low = 374.4, + Close = 378.2, + Volume = 507024510, + Change = -4.7, + Index = 218 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-02-14", + Open = 373, + High = 380.6, + Low = 325.1, + Close = 355.8, + Volume = 607376290, + Change = -4.6, + Index = 219 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-02-26", + Open = 355, + High = 367.3, + Low = 288, + Close = 290.8, + Volume = 549149490, + Change = -18.1, + Index = 220 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-03-07", + Open = 291.2, + High = 303.9, + Low = 250.7, + Close = 262.7, + Volume = 754567280, + Change = -9.8, + Index = 221 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-03-18", + Open = 252.5, + High = 253.4, + Low = 217, + Close = 225.3, + Volume = 944623000, + Change = -10.8, + Index = 222 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-03-27", + Open = 231.6, + High = 291.8, + Low = 229.2, + Close = 273.1, + Volume = 982018670, + Change = 17.9, + Index = 223 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-04-07", + Open = 275.6, + High = 285, + Low = 214.2, + Close = 233.3, + Volume = 1117950500, + Change = -15.3, + Index = 224 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-04-16", + Open = 245, + High = 274.7, + Low = 217.8, + Close = 241.6, + Volume = 993815820, + Change = -1.4, + Index = 225 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-04-28", + Open = 243.5, + High = 294.9, + Low = 222.8, + Close = 285.9, + Volume = 866169890, + Change = 17.4, + Index = 226 + }); + } +} diff --git a/samples/charts/data-chart/data-annotation-line-layer/_Imports.razor b/samples/charts/data-chart/data-annotation-line-layer/_Imports.razor new file mode 100644 index 0000000000..d27d337cb1 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-line-layer/_Imports.razor @@ -0,0 +1,9 @@ +// these namespaces are global to the app +@using System.Net.Http +@using System.Net.Http.Json +@using Microsoft.AspNetCore.Components.Forms +@using Microsoft.AspNetCore.Components.Routing +@using Microsoft.AspNetCore.Components.Web +@using Microsoft.AspNetCore.Components.WebAssembly.Http +@using Microsoft.JSInterop +@using Infragistics.Samples diff --git a/samples/charts/data-chart/data-annotation-line-layer/wwwroot/index.css b/samples/charts/data-chart/data-annotation-line-layer/wwwroot/index.css new file mode 100644 index 0000000000..50ca13caa6 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-line-layer/wwwroot/index.css @@ -0,0 +1,4 @@ +/* +CSS styles are loaded from the shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/data-chart/data-annotation-line-layer/wwwroot/index.html b/samples/charts/data-chart/data-annotation-line-layer/wwwroot/index.html new file mode 100644 index 0000000000..8833030d8e --- /dev/null +++ b/samples/charts/data-chart/data-annotation-line-layer/wwwroot/index.html @@ -0,0 +1,30 @@ + + + + + + + + + + Samples | IgniteUI for Blazor | Infragistics + + + + + + + + + +
+ An unhandled error has occurred. + Reload + 🗙 +
+ + + + + + diff --git a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/AnnotationSliceMultiOverlayData.cs b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/AnnotationSliceMultiOverlayData.cs new file mode 100644 index 0000000000..b4590835f1 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/AnnotationSliceMultiOverlayData.cs @@ -0,0 +1,18 @@ +using System; +using System.Collections.Generic; +public class AnnotationSliceMultiOverlayDataItem +{ + public double Value { get; set; } +} + +public class AnnotationSliceMultiOverlayData + : List +{ + public AnnotationSliceMultiOverlayData() + { + this.Add(new AnnotationSliceMultiOverlayDataItem() + { + Value = 50 + }); + } +} diff --git a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/App.razor b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/App.razor new file mode 100644 index 0000000000..dbffe97267 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/App.razor @@ -0,0 +1,149 @@ +@using IgniteUI.Blazor.Controls + +
+
+ + + + + + + + + + + + + + + + + + + + + +
+
+ +@code { + + private Action BindElements { get; set; } + + protected override async Task OnAfterRenderAsync(bool firstRender) + { + var chart = this.chart; + var xAxis = this.xAxis; + var yAxis = this.yAxis; + var series1 = this.series1; + var valueOverlay = this.valueOverlay; + var valueLayer = this.valueLayer; + var annoLayer = this.annoLayer; + + this.BindElements = () => { + valueLayer.TargetAxis = this.yAxis; + annoLayer.TargetAxis = this.yAxis; + }; + this.BindElements(); + + } + + private IgbDataChart chart; + private IgbCategoryXAxis xAxis; + private IgbNumericYAxis yAxis; + private IgbLineSeries series1; + private IgbValueOverlay valueOverlay; + private IgbValueLayer valueLayer; + private IgbDataAnnotationSliceLayer annoLayer; + + private StockTesla _stockTesla = null; + public StockTesla StockTesla + { + get + { + if (_stockTesla == null) + { + _stockTesla = new StockTesla(); + } + return _stockTesla; + } + } + + private AnnotationSliceMultiOverlayData _annotationSliceMultiOverlayData = null; + public AnnotationSliceMultiOverlayData AnnotationSliceMultiOverlayData + { + get + { + if (_annotationSliceMultiOverlayData == null) + { + _annotationSliceMultiOverlayData = new AnnotationSliceMultiOverlayData(); + } + return _annotationSliceMultiOverlayData; + } + } + +} \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/BlazorClientApp.csproj b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/BlazorClientApp.csproj new file mode 100644 index 0000000000..ed10c7849c --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/BlazorClientApp.csproj @@ -0,0 +1,21 @@ + + + + net9.0 + 3.0 + Infragistics.Samples + Infragistics.Samples + + + + 1701;1702,IDE0028,BL0005,0219,CS1998 + + + + + + + + + + diff --git a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/BlazorClientApp.sln b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/BlazorClientApp.sln new file mode 100644 index 0000000000..1e2eda208a --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/BlazorClientApp.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BlazorClientApp", "BlazorClientApp.csproj", "{F69CC3F0-BCD1-4CE6-9F39-CBED14E7FA78}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {F69CC3F0-BCD1-4CE6-9F39-CBED14E7FA78}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F69CC3F0-BCD1-4CE6-9F39-CBED14E7FA78}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F69CC3F0-BCD1-4CE6-9F39-CBED14E7FA78}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F69CC3F0-BCD1-4CE6-9F39-CBED14E7FA78}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {FC52AAC8-4488-40AE-9621-75F6BA744B18} + EndGlobalSection +EndGlobal diff --git a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/Program.cs b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/Program.cs new file mode 100644 index 0000000000..08d1783856 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/Program.cs @@ -0,0 +1,37 @@ +using System; +using System.Net.Http; +using System.Collections.Generic; +using System.Threading.Tasks; +using System.Text; +using Microsoft.AspNetCore.Components.WebAssembly.Hosting; +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.Logging; +using IgniteUI.Blazor.Controls; // for registering Ignite UI modules + +namespace Infragistics.Samples +{ + public class Program + { + public static async Task Main(string[] args) + { + var builder = WebAssemblyHostBuilder.CreateDefault(args); + builder.RootComponents.Add("app"); + builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) }); + // registering Ignite UI modules + builder.Services.AddIgniteUIBlazor( + typeof(IgbDataChartCoreModule), + typeof(IgbDataChartCategoryModule), + typeof(IgbDataChartCategoryCoreModule), + typeof(IgbDataChartInteractivityModule), + typeof(IgbAnnotationLayerProxyModule), + typeof(IgbDataChartAnnotationModule), + typeof(IgbDataAnnotationSliceLayerModule), + typeof(IgbNumberAbbreviatorModule), + typeof(IgbAnnotationLayerProxyModule), + typeof(IgbValueOverlayModule) + ); + await builder.Build().RunAsync(); + } + } +} diff --git a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/Properties/launchSettings.json b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/Properties/launchSettings.json new file mode 100644 index 0000000000..18bd6fb5bc --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:4200", + "sslPort": 44385 + } + }, + "profiles": { + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "BlazorSamples": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:4200" + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/StockTesla.cs b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/StockTesla.cs new file mode 100644 index 0000000000..9b2caebc66 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/StockTesla.cs @@ -0,0 +1,2518 @@ +using System; +using System.Collections.Generic; +public class StockTeslaItem +{ + public string Date { get; set; } + public double Open { get; set; } + public double High { get; set; } + public double Low { get; set; } + public double Close { get; set; } + public double Volume { get; set; } + public double Change { get; set; } + public double Index { get; set; } +} + +public class StockTesla + : List +{ + public StockTesla() + { + this.Add(new StockTeslaItem() + { + Date = @"2019-01-10", + Open = 20.4, + High = 23, + Low = 19.8, + Close = 23, + Volume = 779333701, + Change = 12.7, + Index = 0 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-01-22", + Open = 22.8, + High = 23.5, + Low = 19.7, + Close = 19.9, + Volume = 911781100, + Change = -12.6, + Index = 1 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-01-31", + Open = 19.5, + High = 20.8, + Low = 18.6, + Close = 20.5, + Volume = 926375717, + Change = 5, + Index = 2 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-02-11", + Open = 20.4, + High = 21.6, + Low = 19.9, + Close = 20.9, + Volume = 687520471, + Change = 2.4, + Index = 3 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-02-21", + Open = 21.1, + High = 21.2, + Low = 19.4, + Close = 19.4, + Volume = 597552272, + Change = -7.9, + Index = 4 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-03-04", + Open = 19.6, + High = 21.3, + Low = 18.9, + Close = 19, + Volume = 1218669201, + Change = -3.1, + Index = 5 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-03-13", + Open = 18.8, + High = 19.5, + Low = 18, + Close = 19.3, + Volume = 1034156904, + Change = 2.5, + Index = 6 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-03-22", + Open = 19.5, + High = 19.7, + Low = 17.6, + Close = 17.6, + Volume = 980694095, + Change = -9.5, + Index = 7 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-04-02", + Open = 17.3, + High = 19.3, + Low = 17, + Close = 19.1, + Volume = 788473494, + Change = 10.1, + Index = 8 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-04-11", + Open = 19.2, + High = 19.7, + Low = 17.4, + Close = 17.9, + Volume = 1165555442, + Change = -6.6, + Index = 9 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-04-23", + Open = 18, + High = 18.3, + Low = 17, + Close = 17.6, + Volume = 870373200, + Change = -2.3, + Index = 10 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-05-02", + Open = 17.6, + High = 17.7, + Low = 15.4, + Close = 16.3, + Volume = 1629432326, + Change = -7.5, + Index = 11 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-05-13", + Open = 16.3, + High = 17.2, + Low = 15, + Close = 15.1, + Volume = 1131045605, + Change = -6.9, + Index = 12 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-05-22", + Open = 15.3, + High = 15.6, + Low = 12.8, + Close = 12.8, + Volume = 1455503588, + Change = -15.9, + Index = 13 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-06-03", + Open = 13, + High = 13.3, + Low = 11.8, + Close = 11.9, + Volume = 1415442268, + Change = -7.9, + Index = 14 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-06-12", + Open = 12.1, + High = 14.9, + Low = 12, + Close = 14, + Volume = 1515000443, + Change = 15.6, + Index = 15 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-06-21", + Open = 14, + High = 15.6, + Low = 13.8, + Close = 14.8, + Volume = 1009123371, + Change = 5.5, + Index = 16 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-07-02", + Open = 14.9, + High = 15.5, + Low = 14.5, + Close = 15, + Volume = 766921642, + Change = 0.6, + Index = 17 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-07-12", + Open = 16, + High = 16.4, + Low = 15.2, + Close = 16.3, + Volume = 887983836, + Change = 2.4, + Index = 18 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-07-23", + Open = 16.5, + High = 17.5, + Low = 16.3, + Close = 17.3, + Volume = 788941000, + Change = 4.9, + Index = 19 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-08-01", + Open = 17.3, + High = 17.7, + Low = 14.8, + Close = 15.6, + Volume = 1175082297, + Change = -9.8, + Index = 20 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-08-12", + Open = 15.4, + High = 16, + Low = 15, + Close = 15.3, + Volume = 560129569, + Change = -1, + Index = 21 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-08-21", + Open = 15.3, + High = 15.7, + Low = 14.1, + Close = 14.7, + Volume = 677293701, + Change = -3.5, + Index = 22 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-08-30", + Open = 14.9, + High = 15.5, + Low = 14.1, + Close = 15, + Volume = 650239370, + Change = 1.3, + Index = 23 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-09-11", + Open = 14.9, + High = 16.5, + Low = 14.6, + Close = 16.5, + Volume = 636766167, + Change = 10.3, + Index = 24 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-09-20", + Open = 16.5, + High = 16.9, + Low = 15.9, + Close = 16, + Volume = 572802643, + Change = -2.9, + Index = 25 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-10-01", + Open = 16, + High = 16.6, + Low = 14.6, + Close = 16.3, + Volume = 931821239, + Change = 2, + Index = 26 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-10-10", + Open = 16.2, + High = 16.6, + Low = 15, + Close = 16.3, + Volume = 891798049, + Change = 0.6, + Index = 27 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-10-21", + Open = 16.5, + High = 17.7, + Low = 16.5, + Close = 16.9, + Volume = 713093463, + Change = 2.6, + Index = 28 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-10-30", + Open = 17, + High = 22.7, + Low = 16.7, + Close = 21, + Volume = 1752943598, + Change = 23.9, + Index = 29 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-11-08", + Open = 20.9, + High = 22.8, + Low = 20.6, + Close = 22.5, + Volume = 834957256, + Change = 7.7, + Index = 30 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-11-19", + Open = 22.9, + High = 24, + Low = 22.8, + Close = 24, + Volume = 738746390, + Change = 4.5, + Index = 31 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-11-29", + Open = 24, + High = 24.1, + Low = 21.8, + Close = 22, + Volume = 870685288, + Change = -8.4, + Index = 32 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-12-10", + Open = 22, + High = 23.4, + Low = 21.8, + Close = 23.3, + Volume = 712016613, + Change = 5.9, + Index = 33 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-12-19", + Open = 23.5, + High = 27.1, + Low = 23.4, + Close = 26.9, + Volume = 1203765433, + Change = 14.8, + Index = 34 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-12-31", + Open = 27.4, + High = 29, + Low = 26.7, + Close = 27.9, + Volume = 1195073357, + Change = 2, + Index = 35 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-01-10", + Open = 28.3, + High = 33.3, + Low = 28.1, + Close = 31.9, + Volume = 1925386078, + Change = 12.6, + Index = 36 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-01-22", + Open = 32.9, + High = 39.6, + Low = 32.8, + Close = 38, + Volume = 2364043518, + Change = 15.4, + Index = 37 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-01-31", + Open = 37.6, + High = 43.5, + Low = 36, + Close = 43.4, + Volume = 1835141382, + Change = 15.3, + Index = 38 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-02-11", + Open = 44.9, + High = 64.6, + Low = 44.9, + Close = 51.6, + Volume = 3748903126, + Change = 14.9, + Index = 39 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-02-21", + Open = 51.9, + High = 63, + Low = 49, + Close = 60.1, + Volume = 1921517039, + Change = 15.8, + Index = 40 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-03-03", + Open = 55.9, + High = 57.6, + Low = 40.8, + Close = 49.7, + Volume = 2121850940, + Change = -11.1, + Index = 41 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-03-12", + Open = 50.9, + High = 51.1, + Low = 36.4, + Close = 37.4, + Volume = 1553329923, + Change = -26.6, + Index = 42 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-03-23", + Open = 39.7, + High = 40.5, + Low = 23.4, + Close = 29, + Volume = 2487688157, + Change = -27, + Index = 43 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-04-01", + Open = 31.8, + High = 37.3, + Low = 31.6, + Close = 32.1, + Volume = 1785601357, + Change = 0.9, + Index = 44 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-04-13", + Open = 32.1, + High = 43.5, + Low = 29.8, + Close = 43.4, + Volume = 1860352620, + Change = 35.3, + Index = 45 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-04-22", + Open = 46.6, + High = 51.7, + Low = 44.9, + Close = 48.8, + Volume = 2056797321, + Change = 4.7, + Index = 46 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-05-01", + Open = 48.5, + High = 58, + Low = 45.5, + Close = 46.8, + Volume = 2093959203, + Change = -3.6, + Index = 47 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-05-12", + Open = 46.7, + High = 56.2, + Low = 46.5, + Close = 54, + Volume = 1611543246, + Change = 15.5, + Index = 48 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-05-21", + Open = 54.7, + High = 55.6, + Low = 50.9, + Close = 55.2, + Volume = 1262468113, + Change = 0.8, + Index = 49 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-06-02", + Open = 54.8, + High = 60.6, + Low = 52.3, + Close = 58.8, + Volume = 1160487993, + Change = 7.2, + Index = 50 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-06-11", + Open = 59.2, + High = 68.5, + Low = 57.2, + Close = 64.9, + Volume = 1270377400, + Change = 9.5, + Index = 51 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-06-22", + Open = 65.3, + High = 67.9, + Low = 60.6, + Close = 66.3, + Volume = 1217946366, + Change = 1.5, + Index = 52 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-07-01", + Open = 66.6, + High = 75.7, + Low = 62.5, + Close = 74.6, + Volume = 1120591270, + Change = 12.1, + Index = 53 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-07-13", + Open = 81.4, + High = 119.7, + Low = 79, + Close = 99.8, + Volume = 2244920779, + Change = 22.6, + Index = 54 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-07-22", + Open = 103.7, + High = 111.7, + Low = 95.4, + Close = 106.2, + Volume = 1662846099, + Change = 2.3, + Index = 55 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-07-31", + Open = 111.9, + High = 112.6, + Low = 91.1, + Close = 95.4, + Volume = 1573159944, + Change = -14.8, + Index = 56 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-08-11", + Open = 96.6, + High = 101.8, + Low = 91, + Close = 91.6, + Volume = 798587331, + Change = -5.2, + Index = 57 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-08-20", + Open = 98, + High = 134.8, + Low = 95.7, + Close = 133.5, + Volume = 1866534416, + Change = 36.2, + Index = 58 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-08-31", + Open = 136.3, + High = 166.7, + Low = 128.5, + Close = 166.1, + Volume = 2008507459, + Change = 21.9, + Index = 59 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-09-10", + Open = 167.4, + High = 167.5, + Low = 110, + Close = 123.8, + Volume = 1992227059, + Change = -26, + Index = 60 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-09-21", + Open = 127.3, + High = 154, + Low = 120.2, + Close = 149.8, + Volume = 1758737696, + Change = 17.7, + Index = 61 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-09-30", + Open = 143.2, + High = 145.9, + Low = 117.1, + Close = 143, + Volume = 1459893236, + Change = -0.1, + Index = 62 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-10-09", + Open = 146.9, + High = 149.6, + Low = 135.4, + Close = 144.7, + Volume = 985545158, + Change = -1.5, + Index = 63 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-10-20", + Open = 147.3, + High = 155.3, + Low = 139.7, + Close = 140.6, + Volume = 773077727, + Change = -4.5, + Index = 64 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-10-29", + Open = 140.9, + High = 148.4, + Low = 135.3, + Close = 136.9, + Volume = 615339122, + Change = -2.8, + Index = 65 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-11-09", + Open = 135.6, + High = 150.8, + Low = 126.4, + Close = 140.4, + Volume = 669171368, + Change = 3.5, + Index = 66 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-11-18", + Open = 140, + High = 165.3, + Low = 132, + Close = 162.2, + Volume = 760451265, + Change = 15.8, + Index = 67 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-11-30", + Open = 164, + High = 202.6, + Low = 162.5, + Close = 189.2, + Volume = 1046371155, + Change = 15.4, + Index = 68 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-12-09", + Open = 199.2, + High = 218.1, + Low = 180.4, + Close = 201.5, + Volume = 1055933265, + Change = 1.2, + Index = 69 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-12-18", + Open = 191.5, + High = 231.7, + Low = 188.8, + Close = 231.7, + Volume = 1593943601, + Change = 21, + Index = 70 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-12-30", + Open = 222.1, + High = 232.2, + Low = 204.7, + Close = 231.6, + Volume = 791942570, + Change = 4.3, + Index = 71 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-01-11", + Open = 233.3, + High = 294.8, + Low = 230.4, + Close = 270.4, + Volume = 1084025779, + Change = 15.9, + Index = 72 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-01-21", + Open = 277, + High = 289.3, + Low = 273, + Close = 281.7, + Volume = 663774487, + Change = 1.7, + Index = 73 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-02-01", + Open = 278.1, + High = 300.1, + Low = 260, + Close = 279.9, + Volume = 595397009, + Change = 0.7, + Index = 74 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-02-10", + Open = 281.6, + High = 293.5, + Low = 266.7, + Close = 268.3, + Volume = 445813486, + Change = -4.7, + Index = 75 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-02-22", + Open = 270.8, + High = 276.6, + Low = 236.7, + Close = 238.2, + Volume = 496372009, + Change = -12.1, + Index = 76 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-03-03", + Open = 220.7, + High = 290.7, + Low = 206.3, + Close = 217.7, + Volume = 793689739, + Change = -1.3, + Index = 77 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-03-12", + Open = 218.6, + High = 291.3, + Low = 179.8, + Close = 231.2, + Volume = 1215209162, + Change = 5.8, + Index = 78 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-03-23", + Open = 231.4, + High = 237.7, + Low = 208.2, + Close = 220.7, + Volume = 744776145, + Change = -4.6, + Index = 79 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-04-01", + Open = 222.6, + High = 230.8, + Low = 197, + Close = 220.6, + Volume = 730733684, + Change = -0.9, + Index = 80 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-04-13", + Open = 235.9, + High = 254.3, + Low = 222.6, + Close = 254.1, + Volume = 646721884, + Change = 7.7, + Index = 81 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-04-22", + Open = 256.9, + High = 260.3, + Low = 230.6, + Close = 239.9, + Volume = 740840774, + Change = -6.6, + Index = 82 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-05-03", + Open = 239.9, + High = 249.8, + Low = 222, + Close = 228.3, + Volume = 623423313, + Change = -4.8, + Index = 83 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-05-12", + Open = 226.3, + High = 230, + Low = 195.6, + Close = 196.6, + Volume = 643844974, + Change = -13.1, + Index = 84 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-05-21", + Open = 200.5, + High = 202.2, + Low = 182.3, + Close = 193.6, + Volume = 729192883, + Change = -3.4, + Index = 85 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-06-02", + Open = 193.9, + High = 211.9, + Low = 191.2, + Close = 201.7, + Volume = 545095944, + Change = 4, + Index = 86 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-06-11", + Open = 200.6, + High = 207.7, + Low = 190.4, + Close = 203.3, + Volume = 478366128, + Change = 1.3, + Index = 87 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-06-22", + Open = 204.1, + High = 210.5, + Low = 197.8, + Close = 207.9, + Volume = 454698495, + Change = 1.9, + Index = 88 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-07-01", + Open = 210.7, + High = 232.5, + Low = 210, + Close = 226, + Volume = 558441596, + Change = 7.3, + Index = 89 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-07-13", + Open = 226.3, + High = 233.3, + Low = 206.8, + Close = 222.8, + Volume = 470942387, + Change = -1.5, + Index = 90 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-07-22", + Open = 223.6, + High = 226.2, + Low = 207.1, + Close = 216.4, + Volume = 372195097, + Change = -3.2, + Index = 91 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-08-02", + Open = 215.5, + High = 242.3, + Low = 209.1, + Close = 236.6, + Volume = 547284685, + Change = 9.8, + Index = 92 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-08-11", + Open = 239.7, + High = 241.6, + Low = 232.5, + Close = 235.9, + Volume = 315341455, + Change = -1.6, + Index = 93 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-08-20", + Open = 235.4, + High = 243.3, + Low = 216.3, + Close = 226.8, + Volume = 392227478, + Change = -3.7, + Index = 94 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-08-31", + Open = 228.5, + High = 246.8, + Low = 226.9, + Close = 245.2, + Volume = 337503634, + Change = 7.3, + Index = 95 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-09-10", + Open = 244.7, + High = 254.8, + Low = 241.4, + Close = 245.4, + Volume = 328100734, + Change = 0.3, + Index = 96 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-09-21", + Open = 246.7, + High = 253.7, + Low = 236.3, + Close = 246.5, + Volume = 420153012, + Change = -0.1, + Index = 97 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-09-30", + Open = 247.8, + High = 266.3, + Low = 246.4, + Close = 258.5, + Volume = 422393262, + Change = 4.3, + Index = 98 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-10-11", + Open = 259.5, + High = 269, + Low = 254.5, + Close = 264, + Volume = 392144589, + Change = 1.7, + Index = 99 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-10-20", + Open = 267, + High = 292.6, + Low = 265.5, + Close = 288.6, + Volume = 368796877, + Change = 8.1, + Index = 100 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-10-29", + Open = 285.3, + High = 371.7, + Low = 285.2, + Close = 371.3, + Volume = 825862313, + Change = 30.1, + Index = 101 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-11-09", + Open = 381.7, + High = 414.5, + Low = 337.2, + Close = 341.2, + Volume = 818978542, + Change = -10.6, + Index = 102 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-11-18", + Open = 336.8, + High = 373.2, + Low = 326.2, + Close = 365.5, + Volume = 613304311, + Change = 8.5, + Index = 103 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-11-30", + Open = 366.3, + High = 400.6, + Low = 354, + Close = 381.6, + Volume = 515052382, + Change = 4.2, + Index = 104 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-12-09", + Open = 386.9, + High = 390.9, + Low = 316.8, + Close = 334.6, + Volume = 473333567, + Change = -13.5, + Index = 105 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-12-20", + Open = 336.2, + High = 340.3, + Low = 297.8, + Close = 300, + Volume = 524367113, + Change = -10.8, + Index = 106 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-12-30", + Open = 305.6, + High = 373, + Low = 295.4, + Close = 356.8, + Volume = 492530059, + Change = 16.7, + Index = 107 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-01-10", + Open = 357.8, + High = 402.7, + Low = 326.7, + Close = 352.7, + Volume = 592103938, + Change = -1.4, + Index = 108 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-01-20", + Open = 351.2, + High = 371.9, + Low = 331.3, + Close = 332.1, + Volume = 532857144, + Change = -5.4, + Index = 109 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-01-31", + Open = 332.1, + High = 334.8, + Low = 264, + Close = 312.2, + Volume = 833589022, + Change = -6, + Index = 110 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-02-09", + Open = 311.7, + High = 315.9, + Low = 293.5, + Close = 310.7, + Volume = 456395505, + Change = -0.3, + Index = 111 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-02-18", + Open = 302.8, + High = 314.6, + Low = 279.2, + Close = 285.7, + Volume = 446153356, + Change = -5.7, + Index = 112 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-03-02", + Open = 278, + High = 296.6, + Low = 233.3, + Close = 293.3, + Volume = 638352514, + Change = 5.5, + Index = 113 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-03-11", + Open = 292.9, + High = 295.5, + Low = 260.7, + Close = 265.1, + Volume = 466566467, + Change = -9.5, + Index = 114 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-03-22", + Open = 260.2, + High = 332.6, + Low = 252, + Close = 331.3, + Volume = 576869668, + Change = 27.3, + Index = 115 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-03-31", + Open = 326.6, + High = 371.6, + Low = 325.5, + Close = 359.2, + Volume = 536607263, + Change = 10, + Index = 116 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-04-11", + Open = 360.4, + High = 384.3, + Low = 324.9, + Close = 325.3, + Volume = 499682510, + Change = -9.7, + Index = 117 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-04-21", + Open = 332.5, + High = 364.1, + Low = 324.4, + Close = 336.3, + Volume = 457210487, + Change = 1.1, + Index = 118 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-05-02", + Open = 338.3, + High = 345, + Low = 273.9, + Close = 301, + Volume = 639990965, + Change = -11, + Index = 119 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-05-11", + Open = 301.1, + High = 318.5, + Low = 242.4, + Close = 244.7, + Volume = 583211967, + Change = -18.7, + Index = 120 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-05-20", + Open = 233.7, + High = 262.4, + Low = 211, + Close = 221.3, + Volume = 721880082, + Change = -5.3, + Index = 121 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-06-01", + Open = 218.3, + High = 259.6, + Low = 206.9, + Close = 246.8, + Volume = 644596235, + Change = 13, + Index = 122 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-06-10", + Open = 244.2, + High = 264.2, + Low = 227.9, + Close = 232.2, + Volume = 633672873, + Change = -4.9, + Index = 123 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-06-22", + Open = 223.2, + High = 246.8, + Low = 208.7, + Close = 236.1, + Volume = 744240764, + Change = 5.8, + Index = 124 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-07-01", + Open = 237.9, + High = 252.1, + Low = 218.9, + Close = 227.3, + Volume = 631776422, + Change = -4.5, + Index = 125 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-07-13", + Open = 223, + High = 255, + Low = 216.2, + Close = 237, + Volume = 625812242, + Change = 6.3, + Index = 126 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-07-22", + Open = 234.9, + High = 280.8, + Low = 229.3, + Close = 272.2, + Volume = 646037224, + Change = 15.9, + Index = 127 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-08-02", + Open = 272.2, + High = 311.9, + Low = 256.3, + Close = 300.6, + Volume = 611660612, + Change = 10.4, + Index = 128 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-08-11", + Open = 305, + High = 313.6, + Low = 279.4, + Close = 286.6, + Volume = 616204291, + Change = -6, + Index = 129 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-08-22", + Open = 289.4, + High = 314.7, + Low = 285, + Close = 289.9, + Volume = 490658060, + Change = 0.2, + Index = 130 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-08-31", + Open = 291.5, + High = 303.6, + Low = 271.8, + Close = 275.6, + Volume = 376152572, + Change = -5.4, + Index = 131 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-09-12", + Open = 272.6, + High = 305.5, + Low = 265.7, + Close = 304.4, + Volume = 367924580, + Change = 11.7, + Index = 132 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-09-21", + Open = 292.9, + High = 313.8, + Low = 290.4, + Close = 300.8, + Volume = 477171180, + Change = 2.7, + Index = 133 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-09-30", + Open = 299.9, + High = 301.3, + Low = 262.5, + Close = 265.2, + Volume = 454307920, + Change = -11.5, + Index = 134 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-10-11", + Open = 254.5, + High = 257.5, + Low = 215, + Close = 216.5, + Volume = 593078170, + Change = -14.9, + Index = 135 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-10-20", + Open = 215.3, + High = 229.8, + Low = 202, + Close = 207.3, + Volume = 592158560, + Change = -3.7, + Index = 136 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-10-31", + Open = 206.4, + High = 233.8, + Low = 198.6, + Close = 227.5, + Volume = 550341050, + Change = 10.2, + Index = 137 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-11-09", + Open = 234, + High = 237.4, + Low = 177.1, + Close = 177.6, + Volume = 630702790, + Change = -24.1, + Index = 138 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-11-18", + Open = 189.9, + High = 200.8, + Low = 176.6, + Close = 180.2, + Volume = 637579480, + Change = -5.1, + Index = 139 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-11-30", + Open = 175.8, + High = 194.8, + Low = 166.2, + Close = 194.7, + Volume = 617126140, + Change = 10.7, + Index = 140 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-12-09", + Open = 197.1, + High = 198.9, + Low = 169.1, + Close = 179, + Volume = 625675690, + Change = -9.1, + Index = 141 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-12-20", + Open = 176.1, + High = 177.4, + Low = 137.7, + Close = 137.8, + Volume = 986660100, + Change = -21.7, + Index = 142 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-12-30", + Open = 139.3, + High = 141.3, + Low = 108.2, + Close = 123.2, + Volume = 1331911900, + Change = -11.6, + Index = 143 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-01-11", + Open = 118.5, + High = 126, + Low = 101.8, + Close = 123.2, + Volume = 1332426500, + Change = 4, + Index = 144 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-01-23", + Open = 122.6, + High = 145.4, + Low = 115.6, + Close = 143.8, + Volume = 1244541500, + Change = 17.3, + Index = 145 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-02-01", + Open = 143, + High = 183.8, + Low = 138.1, + Close = 181.4, + Volume = 1534337700, + Change = 26.9, + Index = 146 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-02-10", + Open = 187.3, + High = 214, + Low = 182.6, + Close = 196.9, + Volume = 1423167800, + Change = 5.1, + Index = 147 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-02-22", + Open = 194.4, + High = 217.6, + Low = 187.6, + Close = 200.9, + Volume = 1386211900, + Change = 3.3, + Index = 148 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-03-03", + Open = 203.9, + High = 211.2, + Low = 186, + Close = 197.8, + Volume = 1095786600, + Change = -3, + Index = 149 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-03-14", + Open = 198.5, + High = 198.6, + Low = 163.9, + Close = 183.3, + Volume = 1101144600, + Change = -7.7, + Index = 150 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-03-23", + Open = 180.8, + High = 200.7, + Low = 176, + Close = 192.2, + Volume = 978213300, + Change = 6.3, + Index = 151 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-04-03", + Open = 191.6, + High = 207.8, + Low = 185.4, + Close = 194.8, + Volume = 909718040, + Change = 1.6, + Index = 152 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-04-13", + Open = 197.3, + High = 198.7, + Low = 176.1, + Close = 185.9, + Volume = 905319000, + Change = -5.8, + Index = 153 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-04-24", + Open = 184, + High = 189.7, + Low = 158.6, + Close = 162.6, + Volume = 905416980, + Change = -11.6, + Index = 154 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-05-03", + Open = 159.8, + High = 165.5, + Low = 152.4, + Close = 160.6, + Volume = 881897100, + Change = 0.5, + Index = 155 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-05-12", + Open = 162.7, + High = 177.4, + Low = 159.6, + Close = 168, + Volume = 785510430, + Change = 3.2, + Index = 156 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-05-23", + Open = 167.7, + High = 193, + Low = 164.4, + Close = 185.8, + Volume = 864025390, + Change = 10.8, + Index = 157 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-06-02", + Open = 182.2, + High = 217.2, + Low = 178.2, + Close = 214, + Volume = 988496020, + Change = 17.4, + Index = 158 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-06-13", + Open = 217.8, + High = 259.7, + Low = 212.5, + Close = 258.7, + Volume = 1161622400, + Change = 18.8, + Index = 159 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-06-23", + Open = 260.2, + High = 277, + Low = 247.3, + Close = 256.6, + Volume = 1220407300, + Change = -1.4, + Index = 160 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-07-05", + Open = 250.1, + High = 284.2, + Low = 240.7, + Close = 282.5, + Volume = 999163700, + Change = 13, + Index = 161 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-07-14", + Open = 278.1, + High = 285.3, + Low = 265.1, + Close = 281.4, + Volume = 774400400, + Change = 1.2, + Index = 162 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-07-25", + Open = 286.6, + High = 299.3, + Low = 254.1, + Close = 265.3, + Volume = 973076400, + Change = -7.4, + Index = 163 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-08-03", + Open = 263.2, + High = 269.1, + Low = 250.5, + Close = 259.3, + Volume = 678809820, + Change = -1.5, + Index = 164 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-08-14", + Open = 261, + High = 264.8, + Low = 233.8, + Close = 239.8, + Volume = 716008860, + Change = -8.1, + Index = 165 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-08-23", + Open = 238.7, + High = 240.8, + Low = 212.4, + Close = 236.9, + Volume = 825055300, + Change = -0.8, + Index = 166 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-09-01", + Open = 238.7, + High = 261.2, + Low = 228.2, + Close = 245, + Volume = 811502630, + Change = 2.7, + Index = 167 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-09-13", + Open = 245, + High = 278.4, + Low = 243.3, + Close = 271.3, + Volume = 902643400, + Change = 10.7, + Index = 168 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-09-22", + Open = 271.3, + High = 279, + Low = 244.5, + Close = 244.9, + Volume = 816639600, + Change = -9.7, + Index = 169 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-10-03", + Open = 243.4, + High = 254.8, + Low = 234.6, + Close = 246.5, + Volume = 814604700, + Change = 1.3, + Index = 170 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-10-12", + Open = 248.1, + High = 268.9, + Low = 247.6, + Close = 258.9, + Volume = 806250900, + Change = 4.3, + Index = 171 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-10-23", + Open = 258.9, + High = 259.6, + Low = 202.5, + Close = 212.1, + Volume = 869390890, + Change = -18.1, + Index = 172 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-11-01", + Open = 216.5, + High = 222, + Low = 194.1, + Close = 205.7, + Volume = 811468170, + Change = -5, + Index = 173 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-11-10", + Open = 213, + High = 226.4, + Low = 205.7, + Close = 214.6, + Volume = 859763700, + Change = 0.8, + Index = 174 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-11-21", + Open = 215.6, + High = 246.7, + Low = 211.6, + Close = 241.2, + Volume = 959006600, + Change = 11.9, + Index = 175 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-12-01", + Open = 242, + High = 252.8, + Low = 231.4, + Close = 238.8, + Volume = 832910200, + Change = -1.3, + Index = 176 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-12-12", + Open = 235.8, + High = 246.7, + Low = 233.3, + Close = 237, + Volume = 772018400, + Change = 0.5, + Index = 177 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-12-21", + Open = 234.2, + High = 259.8, + Low = 228.2, + Close = 254.5, + Volume = 900893400, + Change = 8.7, + Index = 178 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-01-03", + Open = 256.8, + High = 265.1, + Low = 236.3, + Close = 238.4, + Volume = 727005170, + Change = -7.1, + Index = 179 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-01-12", + Open = 239.2, + High = 242.7, + Low = 217.2, + Close = 218.9, + Volume = 697536380, + Change = -8.5, + Index = 180 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-01-24", + Open = 215.1, + High = 223.5, + Low = 206.3, + Close = 207.8, + Volume = 777303400, + Change = -3.4, + Index = 181 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-02-02", + Open = 189.7, + High = 196.4, + Low = 180.1, + Close = 187.9, + Volume = 846092780, + Change = -0.9, + Index = 182 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-02-13", + Open = 184.3, + High = 194.7, + Low = 175, + Close = 184, + Volume = 718274070, + Change = -0.1, + Index = 183 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-02-23", + Open = 185.3, + High = 203.2, + Low = 183.4, + Close = 192, + Volume = 693352670, + Change = 3.6, + Index = 184 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-03-05", + Open = 192.3, + High = 205.6, + Low = 177.6, + Close = 180.7, + Volume = 742344460, + Change = -6, + Index = 185 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-03-14", + Open = 180, + High = 182.9, + Low = 160.5, + Close = 162.5, + Volume = 701227950, + Change = -9.7, + Index = 186 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-03-25", + Open = 163.2, + High = 178.2, + Low = 160.8, + Close = 172.6, + Volume = 589466660, + Change = 5.8, + Index = 187 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-04-04", + Open = 178.6, + High = 184.2, + Low = 163.3, + Close = 171.1, + Volume = 676969950, + Change = -4.2, + Index = 188 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-04-15", + Open = 169.1, + High = 179.2, + Low = 160.5, + Close = 161.5, + Volume = 694829970, + Change = -4.5, + Index = 189 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-04-24", + Open = 156.7, + High = 168, + Low = 138.8, + Close = 162.1, + Volume = 775433710, + Change = 3.4, + Index = 190 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-05-03", + Open = 159, + High = 198.9, + Low = 158.4, + Close = 181.2, + Volume = 864614000, + Change = 14, + Index = 191 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-05-14", + Open = 183.8, + High = 187.6, + Low = 167.8, + Close = 177.6, + Volume = 531409380, + Change = -3.4, + Index = 192 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-05-23", + Open = 179.9, + High = 186.9, + Low = 171.4, + Close = 173.7, + Volume = 554203970, + Change = -3.4, + Index = 193 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-06-04", + Open = 174.8, + High = 182.7, + Low = 173.2, + Close = 174.8, + Volume = 453828370, + Change = 0, + Index = 194 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-06-13", + Open = 175.4, + High = 191.1, + Low = 167.4, + Close = 182.5, + Volume = 509090870, + Change = 4.1, + Index = 195 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-06-25", + Open = 185.8, + High = 188.8, + Low = 176.9, + Close = 187.4, + Volume = 505399520, + Change = 0.8, + Index = 196 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-07-05", + Open = 186.5, + High = 252.4, + Low = 186.4, + Close = 251.5, + Volume = 925723660, + Change = 34.8, + Index = 197 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-07-16", + Open = 247.7, + High = 271, + Low = 233.1, + Close = 256.6, + Volume = 1097390000, + Change = 3.6, + Index = 198 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-07-25", + Open = 252.7, + High = 258.5, + Low = 214.7, + Close = 220.2, + Volume = 795590700, + Change = -12.9, + Index = 199 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-08-05", + Open = 221.2, + High = 234.7, + Low = 182, + Close = 198.9, + Volume = 658914080, + Change = -10.1, + Index = 200 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-08-14", + Open = 200.8, + High = 208.5, + Low = 191.5, + Close = 201.4, + Volume = 479168160, + Change = 0.3, + Index = 201 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-08-23", + Open = 205, + High = 228.2, + Low = 204.8, + Close = 220.3, + Volume = 560235700, + Change = 7.5, + Index = 202 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-09-04", + Open = 218.8, + High = 222.2, + Low = 202.6, + Close = 219.4, + Volume = 469284350, + Change = 0.3, + Index = 203 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-09-13", + Open = 223.5, + High = 235, + Low = 210.5, + Close = 230.3, + Volume = 592950440, + Change = 3, + Index = 204 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-09-24", + Open = 229.3, + High = 257.2, + Low = 223.5, + Close = 254.3, + Volume = 577086700, + Change = 10.9, + Index = 205 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-10-03", + Open = 252.5, + High = 264.9, + Low = 237.8, + Close = 240.7, + Volume = 546148740, + Change = -4.7, + Index = 206 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-10-14", + Open = 246.7, + High = 251, + Low = 213.7, + Close = 219.2, + Volume = 589440130, + Change = -11.2, + Index = 207 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-10-23", + Open = 220, + High = 224.3, + Low = 212.1, + Close = 213.6, + Volume = 384561880, + Change = -2.9, + Index = 208 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-11-01", + Open = 244.7, + High = 273.5, + Low = 242.6, + Close = 249, + Volume = 732392780, + Change = 1.8, + Index = 209 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-11-12", + Open = 244.6, + High = 358.6, + Low = 238.9, + Close = 328.5, + Volume = 991653160, + Change = 34.3, + Index = 210 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-11-21", + Open = 335.8, + High = 348.5, + Low = 309.2, + Close = 339.6, + Volume = 700324320, + Change = 1.1, + Index = 211 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-12-03", + Open = 341.1, + High = 361.9, + Low = 326.6, + Close = 351.4, + Volume = 478645220, + Change = 3, + Index = 212 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-12-12", + Open = 353, + High = 429.3, + Low = 348.6, + Close = 418.1, + Volume = 599082110, + Change = 18.4, + Index = 213 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-12-23", + Open = 420, + High = 481.5, + Low = 415.4, + Close = 430.6, + Volume = 807128120, + Change = 2.5, + Index = 214 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-01-03", + Open = 435.9, + High = 465.3, + Low = 373, + Close = 410.4, + Volume = 565769940, + Change = -5.8, + Index = 215 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-01-15", + Open = 423.2, + High = 429.8, + Low = 377.3, + Close = 428.2, + Volume = 530063170, + Change = 1.2, + Index = 216 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-01-27", + Open = 423.5, + High = 439.7, + Low = 389, + Close = 397.2, + Volume = 476854060, + Change = -6.2, + Index = 217 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-02-05", + Open = 396.9, + High = 420, + Low = 374.4, + Close = 378.2, + Volume = 507024510, + Change = -4.7, + Index = 218 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-02-14", + Open = 373, + High = 380.6, + Low = 325.1, + Close = 355.8, + Volume = 607376290, + Change = -4.6, + Index = 219 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-02-26", + Open = 355, + High = 367.3, + Low = 288, + Close = 290.8, + Volume = 549149490, + Change = -18.1, + Index = 220 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-03-07", + Open = 291.2, + High = 303.9, + Low = 250.7, + Close = 262.7, + Volume = 754567280, + Change = -9.8, + Index = 221 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-03-18", + Open = 252.5, + High = 253.4, + Low = 217, + Close = 225.3, + Volume = 944623000, + Change = -10.8, + Index = 222 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-03-27", + Open = 231.6, + High = 291.8, + Low = 229.2, + Close = 273.1, + Volume = 982018670, + Change = 17.9, + Index = 223 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-04-07", + Open = 275.6, + High = 285, + Low = 214.2, + Close = 233.3, + Volume = 1117950500, + Change = -15.3, + Index = 224 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-04-16", + Open = 245, + High = 274.7, + Low = 217.8, + Close = 241.6, + Volume = 993815820, + Change = -1.4, + Index = 225 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-04-28", + Open = 243.5, + High = 294.9, + Low = 222.8, + Close = 285.9, + Volume = 866169890, + Change = 17.4, + Index = 226 + }); + } +} diff --git a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/_Imports.razor b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/_Imports.razor new file mode 100644 index 0000000000..d27d337cb1 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/_Imports.razor @@ -0,0 +1,9 @@ +// these namespaces are global to the app +@using System.Net.Http +@using System.Net.Http.Json +@using Microsoft.AspNetCore.Components.Forms +@using Microsoft.AspNetCore.Components.Routing +@using Microsoft.AspNetCore.Components.Web +@using Microsoft.AspNetCore.Components.WebAssembly.Http +@using Microsoft.JSInterop +@using Infragistics.Samples diff --git a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/wwwroot/index.css b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/wwwroot/index.css new file mode 100644 index 0000000000..50ca13caa6 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/wwwroot/index.css @@ -0,0 +1,4 @@ +/* +CSS styles are loaded from the shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/wwwroot/index.html b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/wwwroot/index.html new file mode 100644 index 0000000000..8833030d8e --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/wwwroot/index.html @@ -0,0 +1,30 @@ + + + + + + + + + + Samples | IgniteUI for Blazor | Infragistics + + + + + + + + + +
+ An unhandled error has occurred. + Reload + 🗙 +
+ + + + + + diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/AnnotationLineData1.cs b/samples/charts/data-chart/data-annotation-multiple-with-stocks/AnnotationLineData1.cs new file mode 100644 index 0000000000..2a902fb753 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/AnnotationLineData1.cs @@ -0,0 +1,34 @@ +using System; +using System.Collections.Generic; +public class AnnotationLineData1Item +{ + public double StartX { get; set; } + public double StartY { get; set; } + public double EndX { get; set; } + public double EndY { get; set; } + public string Label { get; set; } +} + +public class AnnotationLineData1 + : List +{ + public AnnotationLineData1() + { + this.Add(new AnnotationLineData1Item() + { + StartX = 190, + StartY = 138, + EndX = 230, + EndY = 138, + Label = @"52-Week Low" + }); + this.Add(new AnnotationLineData1Item() + { + StartX = 190, + StartY = 481, + EndX = 230, + EndY = 481, + Label = @"52-Week High" + }); + } +} diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/AnnotationLineData2.cs b/samples/charts/data-chart/data-annotation-multiple-with-stocks/AnnotationLineData2.cs new file mode 100644 index 0000000000..606a283e5d --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/AnnotationLineData2.cs @@ -0,0 +1,36 @@ +using System; +using System.Collections.Generic; +public class AnnotationLineData2Item +{ + public double StartX { get; set; } + public double StartY { get; set; } + public double EndX { get; set; } + public double EndY { get; set; } + public string Label { get; set; } +} + +public class AnnotationLineData2 + : List +{ + public AnnotationLineData2() + { + this.Add(new AnnotationLineData2Item() + { + StartX = 48, + StartY = 25, + EndX = 105, + EndY = 250, + Label = @"Growth & +Support" + }); + this.Add(new AnnotationLineData2Item() + { + StartX = 108, + StartY = 440, + EndX = 155, + EndY = 210, + Label = @"Decline & +Resistance" + }); + } +} diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/AnnotationSliceEarningsBeatData.cs b/samples/charts/data-chart/data-annotation-multiple-with-stocks/AnnotationSliceEarningsBeatData.cs new file mode 100644 index 0000000000..f87a27faca --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/AnnotationSliceEarningsBeatData.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +public class AnnotationSliceEarningsBeatDataItem +{ + public double Value { get; set; } + public string Label { get; set; } +} + +public class AnnotationSliceEarningsBeatData + : List +{ + public AnnotationSliceEarningsBeatData() + { + this.Add(new AnnotationSliceEarningsBeatDataItem() + { + Value = 155, + Label = @"Earnings Beat" + }); + this.Add(new AnnotationSliceEarningsBeatDataItem() + { + Value = 86, + Label = @"Earnings Beat" + }); + this.Add(new AnnotationSliceEarningsBeatDataItem() + { + Value = 28, + Label = @"Earnings Miss" + }); + } +} diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/AnnotationSliceEarningsMissData.cs b/samples/charts/data-chart/data-annotation-multiple-with-stocks/AnnotationSliceEarningsMissData.cs new file mode 100644 index 0000000000..e08f7353d8 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/AnnotationSliceEarningsMissData.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +public class AnnotationSliceEarningsMissDataItem +{ + public double Value { get; set; } + public string Label { get; set; } +} + +public class AnnotationSliceEarningsMissData + : List +{ + public AnnotationSliceEarningsMissData() + { + this.Add(new AnnotationSliceEarningsMissDataItem() + { + Value = 9, + Label = @"Earnings Miss" + }); + this.Add(new AnnotationSliceEarningsMissDataItem() + { + Value = 179, + Label = @"Earnings Miss" + }); + this.Add(new AnnotationSliceEarningsMissDataItem() + { + Value = 215, + Label = @"Earnings Miss" + }); + } +} diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/AnnotationSliceStockSplitData.cs b/samples/charts/data-chart/data-annotation-multiple-with-stocks/AnnotationSliceStockSplitData.cs new file mode 100644 index 0000000000..878d6a47b1 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/AnnotationSliceStockSplitData.cs @@ -0,0 +1,25 @@ +using System; +using System.Collections.Generic; +public class AnnotationSliceStockSplitDataItem +{ + public double Value { get; set; } + public string Label { get; set; } +} + +public class AnnotationSliceStockSplitData + : List +{ + public AnnotationSliceStockSplitData() + { + this.Add(new AnnotationSliceStockSplitDataItem() + { + Value = 126, + Label = @"Stock Split 3-1" + }); + this.Add(new AnnotationSliceStockSplitDataItem() + { + Value = 61, + Label = @"Stock Split 5-1" + }); + } +} diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/AnnotationStripData.cs b/samples/charts/data-chart/data-annotation-multiple-with-stocks/AnnotationStripData.cs new file mode 100644 index 0000000000..67a5852584 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/AnnotationStripData.cs @@ -0,0 +1,34 @@ +using System; +using System.Collections.Generic; +public class AnnotationStripDataItem +{ + public double Start { get; set; } + public double End { get; set; } + public string Label { get; set; } +} + +public class AnnotationStripData + : List +{ + public AnnotationStripData() + { + this.Add(new AnnotationStripDataItem() + { + Start = 40, + End = 45, + Label = @"Covid - Market Crash" + }); + this.Add(new AnnotationStripDataItem() + { + Start = 100, + End = 144, + Label = @"Fed Rate Up 0.25 - 5.25%" + }); + this.Add(new AnnotationStripDataItem() + { + Start = 190, + End = 205, + Label = @"Fed Rate Down 5.25% to 4.45%" + }); + } +} diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/App.razor b/samples/charts/data-chart/data-annotation-multiple-with-stocks/App.razor new file mode 100644 index 0000000000..14c5c69c77 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/App.razor @@ -0,0 +1,371 @@ +@using IgniteUI.Blazor.Controls + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ +@code { + + private Action BindElements { get; set; } + + protected override async Task OnAfterRenderAsync(bool firstRender) + { + var chart = this.chart; + var xAxisBottom = this.xAxisBottom; + var xAxis = this.xAxis; + var xAxisTop = this.xAxisTop; + var yAxisLeft = this.yAxisLeft; + var yAxisRight = this.yAxisRight; + var series1 = this.series1; + var tooltip = this.tooltip; + var stripLayer = this.stripLayer; + var lineLayer52WeekRange = this.lineLayer52WeekRange; + var lineLayerGrowthAndDecline = this.lineLayerGrowthAndDecline; + var sliceLayerStockSplit = this.sliceLayerStockSplit; + var sliceLayerEarningsMissAnnotations = this.sliceLayerEarningsMissAnnotations; + var sliceLayerEarningsBeatAnnotations = this.sliceLayerEarningsBeatAnnotations; + + this.BindElements = () => { + stripLayer.TargetAxis = this.xAxisTop; + lineLayer52WeekRange.TargetAxis = this.yAxisRight; + lineLayerGrowthAndDecline.TargetAxis = this.xAxis; + sliceLayerStockSplit.TargetAxis = this.xAxisBottom; + sliceLayerEarningsMissAnnotations.TargetAxis = this.xAxisBottom; + sliceLayerEarningsBeatAnnotations.TargetAxis = this.xAxisBottom; + }; + this.BindElements(); + + } + + private IgbDataChart chart; + private IgbCategoryXAxis xAxisBottom; + private IgbCategoryXAxis xAxis; + private IgbCategoryXAxis xAxisTop; + private IgbNumericYAxis yAxisLeft; + private IgbNumericYAxis yAxisRight; + private IgbFinancialPriceSeries series1; + private IgbDataToolTipLayer tooltip; + private IgbDataAnnotationStripLayer stripLayer; + private IgbDataAnnotationLineLayer lineLayer52WeekRange; + private IgbDataAnnotationLineLayer lineLayerGrowthAndDecline; + private IgbDataAnnotationSliceLayer sliceLayerStockSplit; + private IgbDataAnnotationSliceLayer sliceLayerEarningsMissAnnotations; + private IgbDataAnnotationSliceLayer sliceLayerEarningsBeatAnnotations; + + private StockTesla _stockTesla = null; + public StockTesla StockTesla + { + get + { + if (_stockTesla == null) + { + _stockTesla = new StockTesla(); + } + return _stockTesla; + } + } + + private AnnotationStripData _annotationStripData = null; + public AnnotationStripData AnnotationStripData + { + get + { + if (_annotationStripData == null) + { + _annotationStripData = new AnnotationStripData(); + } + return _annotationStripData; + } + } + + private AnnotationLineData1 _annotationLineData1 = null; + public AnnotationLineData1 AnnotationLineData1 + { + get + { + if (_annotationLineData1 == null) + { + _annotationLineData1 = new AnnotationLineData1(); + } + return _annotationLineData1; + } + } + + private AnnotationLineData2 _annotationLineData2 = null; + public AnnotationLineData2 AnnotationLineData2 + { + get + { + if (_annotationLineData2 == null) + { + _annotationLineData2 = new AnnotationLineData2(); + } + return _annotationLineData2; + } + } + + private AnnotationSliceStockSplitData _annotationSliceStockSplitData = null; + public AnnotationSliceStockSplitData AnnotationSliceStockSplitData + { + get + { + if (_annotationSliceStockSplitData == null) + { + _annotationSliceStockSplitData = new AnnotationSliceStockSplitData(); + } + return _annotationSliceStockSplitData; + } + } + + private AnnotationSliceEarningsMissData _annotationSliceEarningsMissData = null; + public AnnotationSliceEarningsMissData AnnotationSliceEarningsMissData + { + get + { + if (_annotationSliceEarningsMissData == null) + { + _annotationSliceEarningsMissData = new AnnotationSliceEarningsMissData(); + } + return _annotationSliceEarningsMissData; + } + } + + private AnnotationSliceEarningsBeatData _annotationSliceEarningsBeatData = null; + public AnnotationSliceEarningsBeatData AnnotationSliceEarningsBeatData + { + get + { + if (_annotationSliceEarningsBeatData == null) + { + _annotationSliceEarningsBeatData = new AnnotationSliceEarningsBeatData(); + } + return _annotationSliceEarningsBeatData; + } + } + +} \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/BlazorClientApp.csproj b/samples/charts/data-chart/data-annotation-multiple-with-stocks/BlazorClientApp.csproj new file mode 100644 index 0000000000..ed10c7849c --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/BlazorClientApp.csproj @@ -0,0 +1,21 @@ + + + + net9.0 + 3.0 + Infragistics.Samples + Infragistics.Samples + + + + 1701;1702,IDE0028,BL0005,0219,CS1998 + + + + + + + + + + diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/BlazorClientApp.sln b/samples/charts/data-chart/data-annotation-multiple-with-stocks/BlazorClientApp.sln new file mode 100644 index 0000000000..1e2eda208a --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/BlazorClientApp.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BlazorClientApp", "BlazorClientApp.csproj", "{F69CC3F0-BCD1-4CE6-9F39-CBED14E7FA78}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {F69CC3F0-BCD1-4CE6-9F39-CBED14E7FA78}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F69CC3F0-BCD1-4CE6-9F39-CBED14E7FA78}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F69CC3F0-BCD1-4CE6-9F39-CBED14E7FA78}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F69CC3F0-BCD1-4CE6-9F39-CBED14E7FA78}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {FC52AAC8-4488-40AE-9621-75F6BA744B18} + EndGlobalSection +EndGlobal diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/Program.cs b/samples/charts/data-chart/data-annotation-multiple-with-stocks/Program.cs new file mode 100644 index 0000000000..c5743e8955 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/Program.cs @@ -0,0 +1,40 @@ +using System; +using System.Net.Http; +using System.Collections.Generic; +using System.Threading.Tasks; +using System.Text; +using Microsoft.AspNetCore.Components.WebAssembly.Hosting; +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.Logging; +using IgniteUI.Blazor.Controls; // for registering Ignite UI modules + +namespace Infragistics.Samples +{ + public class Program + { + public static async Task Main(string[] args) + { + var builder = WebAssemblyHostBuilder.CreateDefault(args); + builder.RootComponents.Add("app"); + builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) }); + // registering Ignite UI modules + builder.Services.AddIgniteUIBlazor( + typeof(IgbDataChartCoreModule), + typeof(IgbDataChartCategoryModule), + typeof(IgbDataChartCategoryCoreModule), + typeof(IgbDataChartFinancialCoreModule), + typeof(IgbDataChartFinancialModule), + typeof(IgbDataChartFinancialOverlaysModule), + typeof(IgbDataChartInteractivityModule), + typeof(IgbDataChartAnnotationModule), + typeof(IgbDataAnnotationStripLayerModule), + typeof(IgbDataAnnotationSliceLayerModule), + typeof(IgbDataAnnotationLineLayerModule), + typeof(IgbNumberAbbreviatorModule), + typeof(IgbAnnotationLayerProxyModule) + ); + await builder.Build().RunAsync(); + } + } +} diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/Properties/launchSettings.json b/samples/charts/data-chart/data-annotation-multiple-with-stocks/Properties/launchSettings.json new file mode 100644 index 0000000000..18bd6fb5bc --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:4200", + "sslPort": 44385 + } + }, + "profiles": { + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "BlazorSamples": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:4200" + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/StockTesla.cs b/samples/charts/data-chart/data-annotation-multiple-with-stocks/StockTesla.cs new file mode 100644 index 0000000000..9b2caebc66 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/StockTesla.cs @@ -0,0 +1,2518 @@ +using System; +using System.Collections.Generic; +public class StockTeslaItem +{ + public string Date { get; set; } + public double Open { get; set; } + public double High { get; set; } + public double Low { get; set; } + public double Close { get; set; } + public double Volume { get; set; } + public double Change { get; set; } + public double Index { get; set; } +} + +public class StockTesla + : List +{ + public StockTesla() + { + this.Add(new StockTeslaItem() + { + Date = @"2019-01-10", + Open = 20.4, + High = 23, + Low = 19.8, + Close = 23, + Volume = 779333701, + Change = 12.7, + Index = 0 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-01-22", + Open = 22.8, + High = 23.5, + Low = 19.7, + Close = 19.9, + Volume = 911781100, + Change = -12.6, + Index = 1 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-01-31", + Open = 19.5, + High = 20.8, + Low = 18.6, + Close = 20.5, + Volume = 926375717, + Change = 5, + Index = 2 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-02-11", + Open = 20.4, + High = 21.6, + Low = 19.9, + Close = 20.9, + Volume = 687520471, + Change = 2.4, + Index = 3 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-02-21", + Open = 21.1, + High = 21.2, + Low = 19.4, + Close = 19.4, + Volume = 597552272, + Change = -7.9, + Index = 4 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-03-04", + Open = 19.6, + High = 21.3, + Low = 18.9, + Close = 19, + Volume = 1218669201, + Change = -3.1, + Index = 5 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-03-13", + Open = 18.8, + High = 19.5, + Low = 18, + Close = 19.3, + Volume = 1034156904, + Change = 2.5, + Index = 6 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-03-22", + Open = 19.5, + High = 19.7, + Low = 17.6, + Close = 17.6, + Volume = 980694095, + Change = -9.5, + Index = 7 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-04-02", + Open = 17.3, + High = 19.3, + Low = 17, + Close = 19.1, + Volume = 788473494, + Change = 10.1, + Index = 8 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-04-11", + Open = 19.2, + High = 19.7, + Low = 17.4, + Close = 17.9, + Volume = 1165555442, + Change = -6.6, + Index = 9 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-04-23", + Open = 18, + High = 18.3, + Low = 17, + Close = 17.6, + Volume = 870373200, + Change = -2.3, + Index = 10 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-05-02", + Open = 17.6, + High = 17.7, + Low = 15.4, + Close = 16.3, + Volume = 1629432326, + Change = -7.5, + Index = 11 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-05-13", + Open = 16.3, + High = 17.2, + Low = 15, + Close = 15.1, + Volume = 1131045605, + Change = -6.9, + Index = 12 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-05-22", + Open = 15.3, + High = 15.6, + Low = 12.8, + Close = 12.8, + Volume = 1455503588, + Change = -15.9, + Index = 13 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-06-03", + Open = 13, + High = 13.3, + Low = 11.8, + Close = 11.9, + Volume = 1415442268, + Change = -7.9, + Index = 14 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-06-12", + Open = 12.1, + High = 14.9, + Low = 12, + Close = 14, + Volume = 1515000443, + Change = 15.6, + Index = 15 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-06-21", + Open = 14, + High = 15.6, + Low = 13.8, + Close = 14.8, + Volume = 1009123371, + Change = 5.5, + Index = 16 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-07-02", + Open = 14.9, + High = 15.5, + Low = 14.5, + Close = 15, + Volume = 766921642, + Change = 0.6, + Index = 17 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-07-12", + Open = 16, + High = 16.4, + Low = 15.2, + Close = 16.3, + Volume = 887983836, + Change = 2.4, + Index = 18 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-07-23", + Open = 16.5, + High = 17.5, + Low = 16.3, + Close = 17.3, + Volume = 788941000, + Change = 4.9, + Index = 19 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-08-01", + Open = 17.3, + High = 17.7, + Low = 14.8, + Close = 15.6, + Volume = 1175082297, + Change = -9.8, + Index = 20 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-08-12", + Open = 15.4, + High = 16, + Low = 15, + Close = 15.3, + Volume = 560129569, + Change = -1, + Index = 21 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-08-21", + Open = 15.3, + High = 15.7, + Low = 14.1, + Close = 14.7, + Volume = 677293701, + Change = -3.5, + Index = 22 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-08-30", + Open = 14.9, + High = 15.5, + Low = 14.1, + Close = 15, + Volume = 650239370, + Change = 1.3, + Index = 23 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-09-11", + Open = 14.9, + High = 16.5, + Low = 14.6, + Close = 16.5, + Volume = 636766167, + Change = 10.3, + Index = 24 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-09-20", + Open = 16.5, + High = 16.9, + Low = 15.9, + Close = 16, + Volume = 572802643, + Change = -2.9, + Index = 25 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-10-01", + Open = 16, + High = 16.6, + Low = 14.6, + Close = 16.3, + Volume = 931821239, + Change = 2, + Index = 26 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-10-10", + Open = 16.2, + High = 16.6, + Low = 15, + Close = 16.3, + Volume = 891798049, + Change = 0.6, + Index = 27 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-10-21", + Open = 16.5, + High = 17.7, + Low = 16.5, + Close = 16.9, + Volume = 713093463, + Change = 2.6, + Index = 28 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-10-30", + Open = 17, + High = 22.7, + Low = 16.7, + Close = 21, + Volume = 1752943598, + Change = 23.9, + Index = 29 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-11-08", + Open = 20.9, + High = 22.8, + Low = 20.6, + Close = 22.5, + Volume = 834957256, + Change = 7.7, + Index = 30 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-11-19", + Open = 22.9, + High = 24, + Low = 22.8, + Close = 24, + Volume = 738746390, + Change = 4.5, + Index = 31 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-11-29", + Open = 24, + High = 24.1, + Low = 21.8, + Close = 22, + Volume = 870685288, + Change = -8.4, + Index = 32 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-12-10", + Open = 22, + High = 23.4, + Low = 21.8, + Close = 23.3, + Volume = 712016613, + Change = 5.9, + Index = 33 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-12-19", + Open = 23.5, + High = 27.1, + Low = 23.4, + Close = 26.9, + Volume = 1203765433, + Change = 14.8, + Index = 34 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-12-31", + Open = 27.4, + High = 29, + Low = 26.7, + Close = 27.9, + Volume = 1195073357, + Change = 2, + Index = 35 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-01-10", + Open = 28.3, + High = 33.3, + Low = 28.1, + Close = 31.9, + Volume = 1925386078, + Change = 12.6, + Index = 36 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-01-22", + Open = 32.9, + High = 39.6, + Low = 32.8, + Close = 38, + Volume = 2364043518, + Change = 15.4, + Index = 37 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-01-31", + Open = 37.6, + High = 43.5, + Low = 36, + Close = 43.4, + Volume = 1835141382, + Change = 15.3, + Index = 38 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-02-11", + Open = 44.9, + High = 64.6, + Low = 44.9, + Close = 51.6, + Volume = 3748903126, + Change = 14.9, + Index = 39 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-02-21", + Open = 51.9, + High = 63, + Low = 49, + Close = 60.1, + Volume = 1921517039, + Change = 15.8, + Index = 40 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-03-03", + Open = 55.9, + High = 57.6, + Low = 40.8, + Close = 49.7, + Volume = 2121850940, + Change = -11.1, + Index = 41 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-03-12", + Open = 50.9, + High = 51.1, + Low = 36.4, + Close = 37.4, + Volume = 1553329923, + Change = -26.6, + Index = 42 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-03-23", + Open = 39.7, + High = 40.5, + Low = 23.4, + Close = 29, + Volume = 2487688157, + Change = -27, + Index = 43 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-04-01", + Open = 31.8, + High = 37.3, + Low = 31.6, + Close = 32.1, + Volume = 1785601357, + Change = 0.9, + Index = 44 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-04-13", + Open = 32.1, + High = 43.5, + Low = 29.8, + Close = 43.4, + Volume = 1860352620, + Change = 35.3, + Index = 45 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-04-22", + Open = 46.6, + High = 51.7, + Low = 44.9, + Close = 48.8, + Volume = 2056797321, + Change = 4.7, + Index = 46 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-05-01", + Open = 48.5, + High = 58, + Low = 45.5, + Close = 46.8, + Volume = 2093959203, + Change = -3.6, + Index = 47 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-05-12", + Open = 46.7, + High = 56.2, + Low = 46.5, + Close = 54, + Volume = 1611543246, + Change = 15.5, + Index = 48 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-05-21", + Open = 54.7, + High = 55.6, + Low = 50.9, + Close = 55.2, + Volume = 1262468113, + Change = 0.8, + Index = 49 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-06-02", + Open = 54.8, + High = 60.6, + Low = 52.3, + Close = 58.8, + Volume = 1160487993, + Change = 7.2, + Index = 50 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-06-11", + Open = 59.2, + High = 68.5, + Low = 57.2, + Close = 64.9, + Volume = 1270377400, + Change = 9.5, + Index = 51 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-06-22", + Open = 65.3, + High = 67.9, + Low = 60.6, + Close = 66.3, + Volume = 1217946366, + Change = 1.5, + Index = 52 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-07-01", + Open = 66.6, + High = 75.7, + Low = 62.5, + Close = 74.6, + Volume = 1120591270, + Change = 12.1, + Index = 53 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-07-13", + Open = 81.4, + High = 119.7, + Low = 79, + Close = 99.8, + Volume = 2244920779, + Change = 22.6, + Index = 54 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-07-22", + Open = 103.7, + High = 111.7, + Low = 95.4, + Close = 106.2, + Volume = 1662846099, + Change = 2.3, + Index = 55 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-07-31", + Open = 111.9, + High = 112.6, + Low = 91.1, + Close = 95.4, + Volume = 1573159944, + Change = -14.8, + Index = 56 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-08-11", + Open = 96.6, + High = 101.8, + Low = 91, + Close = 91.6, + Volume = 798587331, + Change = -5.2, + Index = 57 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-08-20", + Open = 98, + High = 134.8, + Low = 95.7, + Close = 133.5, + Volume = 1866534416, + Change = 36.2, + Index = 58 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-08-31", + Open = 136.3, + High = 166.7, + Low = 128.5, + Close = 166.1, + Volume = 2008507459, + Change = 21.9, + Index = 59 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-09-10", + Open = 167.4, + High = 167.5, + Low = 110, + Close = 123.8, + Volume = 1992227059, + Change = -26, + Index = 60 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-09-21", + Open = 127.3, + High = 154, + Low = 120.2, + Close = 149.8, + Volume = 1758737696, + Change = 17.7, + Index = 61 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-09-30", + Open = 143.2, + High = 145.9, + Low = 117.1, + Close = 143, + Volume = 1459893236, + Change = -0.1, + Index = 62 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-10-09", + Open = 146.9, + High = 149.6, + Low = 135.4, + Close = 144.7, + Volume = 985545158, + Change = -1.5, + Index = 63 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-10-20", + Open = 147.3, + High = 155.3, + Low = 139.7, + Close = 140.6, + Volume = 773077727, + Change = -4.5, + Index = 64 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-10-29", + Open = 140.9, + High = 148.4, + Low = 135.3, + Close = 136.9, + Volume = 615339122, + Change = -2.8, + Index = 65 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-11-09", + Open = 135.6, + High = 150.8, + Low = 126.4, + Close = 140.4, + Volume = 669171368, + Change = 3.5, + Index = 66 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-11-18", + Open = 140, + High = 165.3, + Low = 132, + Close = 162.2, + Volume = 760451265, + Change = 15.8, + Index = 67 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-11-30", + Open = 164, + High = 202.6, + Low = 162.5, + Close = 189.2, + Volume = 1046371155, + Change = 15.4, + Index = 68 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-12-09", + Open = 199.2, + High = 218.1, + Low = 180.4, + Close = 201.5, + Volume = 1055933265, + Change = 1.2, + Index = 69 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-12-18", + Open = 191.5, + High = 231.7, + Low = 188.8, + Close = 231.7, + Volume = 1593943601, + Change = 21, + Index = 70 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-12-30", + Open = 222.1, + High = 232.2, + Low = 204.7, + Close = 231.6, + Volume = 791942570, + Change = 4.3, + Index = 71 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-01-11", + Open = 233.3, + High = 294.8, + Low = 230.4, + Close = 270.4, + Volume = 1084025779, + Change = 15.9, + Index = 72 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-01-21", + Open = 277, + High = 289.3, + Low = 273, + Close = 281.7, + Volume = 663774487, + Change = 1.7, + Index = 73 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-02-01", + Open = 278.1, + High = 300.1, + Low = 260, + Close = 279.9, + Volume = 595397009, + Change = 0.7, + Index = 74 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-02-10", + Open = 281.6, + High = 293.5, + Low = 266.7, + Close = 268.3, + Volume = 445813486, + Change = -4.7, + Index = 75 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-02-22", + Open = 270.8, + High = 276.6, + Low = 236.7, + Close = 238.2, + Volume = 496372009, + Change = -12.1, + Index = 76 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-03-03", + Open = 220.7, + High = 290.7, + Low = 206.3, + Close = 217.7, + Volume = 793689739, + Change = -1.3, + Index = 77 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-03-12", + Open = 218.6, + High = 291.3, + Low = 179.8, + Close = 231.2, + Volume = 1215209162, + Change = 5.8, + Index = 78 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-03-23", + Open = 231.4, + High = 237.7, + Low = 208.2, + Close = 220.7, + Volume = 744776145, + Change = -4.6, + Index = 79 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-04-01", + Open = 222.6, + High = 230.8, + Low = 197, + Close = 220.6, + Volume = 730733684, + Change = -0.9, + Index = 80 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-04-13", + Open = 235.9, + High = 254.3, + Low = 222.6, + Close = 254.1, + Volume = 646721884, + Change = 7.7, + Index = 81 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-04-22", + Open = 256.9, + High = 260.3, + Low = 230.6, + Close = 239.9, + Volume = 740840774, + Change = -6.6, + Index = 82 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-05-03", + Open = 239.9, + High = 249.8, + Low = 222, + Close = 228.3, + Volume = 623423313, + Change = -4.8, + Index = 83 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-05-12", + Open = 226.3, + High = 230, + Low = 195.6, + Close = 196.6, + Volume = 643844974, + Change = -13.1, + Index = 84 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-05-21", + Open = 200.5, + High = 202.2, + Low = 182.3, + Close = 193.6, + Volume = 729192883, + Change = -3.4, + Index = 85 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-06-02", + Open = 193.9, + High = 211.9, + Low = 191.2, + Close = 201.7, + Volume = 545095944, + Change = 4, + Index = 86 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-06-11", + Open = 200.6, + High = 207.7, + Low = 190.4, + Close = 203.3, + Volume = 478366128, + Change = 1.3, + Index = 87 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-06-22", + Open = 204.1, + High = 210.5, + Low = 197.8, + Close = 207.9, + Volume = 454698495, + Change = 1.9, + Index = 88 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-07-01", + Open = 210.7, + High = 232.5, + Low = 210, + Close = 226, + Volume = 558441596, + Change = 7.3, + Index = 89 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-07-13", + Open = 226.3, + High = 233.3, + Low = 206.8, + Close = 222.8, + Volume = 470942387, + Change = -1.5, + Index = 90 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-07-22", + Open = 223.6, + High = 226.2, + Low = 207.1, + Close = 216.4, + Volume = 372195097, + Change = -3.2, + Index = 91 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-08-02", + Open = 215.5, + High = 242.3, + Low = 209.1, + Close = 236.6, + Volume = 547284685, + Change = 9.8, + Index = 92 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-08-11", + Open = 239.7, + High = 241.6, + Low = 232.5, + Close = 235.9, + Volume = 315341455, + Change = -1.6, + Index = 93 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-08-20", + Open = 235.4, + High = 243.3, + Low = 216.3, + Close = 226.8, + Volume = 392227478, + Change = -3.7, + Index = 94 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-08-31", + Open = 228.5, + High = 246.8, + Low = 226.9, + Close = 245.2, + Volume = 337503634, + Change = 7.3, + Index = 95 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-09-10", + Open = 244.7, + High = 254.8, + Low = 241.4, + Close = 245.4, + Volume = 328100734, + Change = 0.3, + Index = 96 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-09-21", + Open = 246.7, + High = 253.7, + Low = 236.3, + Close = 246.5, + Volume = 420153012, + Change = -0.1, + Index = 97 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-09-30", + Open = 247.8, + High = 266.3, + Low = 246.4, + Close = 258.5, + Volume = 422393262, + Change = 4.3, + Index = 98 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-10-11", + Open = 259.5, + High = 269, + Low = 254.5, + Close = 264, + Volume = 392144589, + Change = 1.7, + Index = 99 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-10-20", + Open = 267, + High = 292.6, + Low = 265.5, + Close = 288.6, + Volume = 368796877, + Change = 8.1, + Index = 100 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-10-29", + Open = 285.3, + High = 371.7, + Low = 285.2, + Close = 371.3, + Volume = 825862313, + Change = 30.1, + Index = 101 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-11-09", + Open = 381.7, + High = 414.5, + Low = 337.2, + Close = 341.2, + Volume = 818978542, + Change = -10.6, + Index = 102 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-11-18", + Open = 336.8, + High = 373.2, + Low = 326.2, + Close = 365.5, + Volume = 613304311, + Change = 8.5, + Index = 103 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-11-30", + Open = 366.3, + High = 400.6, + Low = 354, + Close = 381.6, + Volume = 515052382, + Change = 4.2, + Index = 104 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-12-09", + Open = 386.9, + High = 390.9, + Low = 316.8, + Close = 334.6, + Volume = 473333567, + Change = -13.5, + Index = 105 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-12-20", + Open = 336.2, + High = 340.3, + Low = 297.8, + Close = 300, + Volume = 524367113, + Change = -10.8, + Index = 106 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-12-30", + Open = 305.6, + High = 373, + Low = 295.4, + Close = 356.8, + Volume = 492530059, + Change = 16.7, + Index = 107 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-01-10", + Open = 357.8, + High = 402.7, + Low = 326.7, + Close = 352.7, + Volume = 592103938, + Change = -1.4, + Index = 108 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-01-20", + Open = 351.2, + High = 371.9, + Low = 331.3, + Close = 332.1, + Volume = 532857144, + Change = -5.4, + Index = 109 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-01-31", + Open = 332.1, + High = 334.8, + Low = 264, + Close = 312.2, + Volume = 833589022, + Change = -6, + Index = 110 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-02-09", + Open = 311.7, + High = 315.9, + Low = 293.5, + Close = 310.7, + Volume = 456395505, + Change = -0.3, + Index = 111 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-02-18", + Open = 302.8, + High = 314.6, + Low = 279.2, + Close = 285.7, + Volume = 446153356, + Change = -5.7, + Index = 112 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-03-02", + Open = 278, + High = 296.6, + Low = 233.3, + Close = 293.3, + Volume = 638352514, + Change = 5.5, + Index = 113 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-03-11", + Open = 292.9, + High = 295.5, + Low = 260.7, + Close = 265.1, + Volume = 466566467, + Change = -9.5, + Index = 114 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-03-22", + Open = 260.2, + High = 332.6, + Low = 252, + Close = 331.3, + Volume = 576869668, + Change = 27.3, + Index = 115 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-03-31", + Open = 326.6, + High = 371.6, + Low = 325.5, + Close = 359.2, + Volume = 536607263, + Change = 10, + Index = 116 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-04-11", + Open = 360.4, + High = 384.3, + Low = 324.9, + Close = 325.3, + Volume = 499682510, + Change = -9.7, + Index = 117 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-04-21", + Open = 332.5, + High = 364.1, + Low = 324.4, + Close = 336.3, + Volume = 457210487, + Change = 1.1, + Index = 118 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-05-02", + Open = 338.3, + High = 345, + Low = 273.9, + Close = 301, + Volume = 639990965, + Change = -11, + Index = 119 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-05-11", + Open = 301.1, + High = 318.5, + Low = 242.4, + Close = 244.7, + Volume = 583211967, + Change = -18.7, + Index = 120 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-05-20", + Open = 233.7, + High = 262.4, + Low = 211, + Close = 221.3, + Volume = 721880082, + Change = -5.3, + Index = 121 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-06-01", + Open = 218.3, + High = 259.6, + Low = 206.9, + Close = 246.8, + Volume = 644596235, + Change = 13, + Index = 122 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-06-10", + Open = 244.2, + High = 264.2, + Low = 227.9, + Close = 232.2, + Volume = 633672873, + Change = -4.9, + Index = 123 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-06-22", + Open = 223.2, + High = 246.8, + Low = 208.7, + Close = 236.1, + Volume = 744240764, + Change = 5.8, + Index = 124 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-07-01", + Open = 237.9, + High = 252.1, + Low = 218.9, + Close = 227.3, + Volume = 631776422, + Change = -4.5, + Index = 125 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-07-13", + Open = 223, + High = 255, + Low = 216.2, + Close = 237, + Volume = 625812242, + Change = 6.3, + Index = 126 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-07-22", + Open = 234.9, + High = 280.8, + Low = 229.3, + Close = 272.2, + Volume = 646037224, + Change = 15.9, + Index = 127 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-08-02", + Open = 272.2, + High = 311.9, + Low = 256.3, + Close = 300.6, + Volume = 611660612, + Change = 10.4, + Index = 128 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-08-11", + Open = 305, + High = 313.6, + Low = 279.4, + Close = 286.6, + Volume = 616204291, + Change = -6, + Index = 129 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-08-22", + Open = 289.4, + High = 314.7, + Low = 285, + Close = 289.9, + Volume = 490658060, + Change = 0.2, + Index = 130 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-08-31", + Open = 291.5, + High = 303.6, + Low = 271.8, + Close = 275.6, + Volume = 376152572, + Change = -5.4, + Index = 131 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-09-12", + Open = 272.6, + High = 305.5, + Low = 265.7, + Close = 304.4, + Volume = 367924580, + Change = 11.7, + Index = 132 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-09-21", + Open = 292.9, + High = 313.8, + Low = 290.4, + Close = 300.8, + Volume = 477171180, + Change = 2.7, + Index = 133 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-09-30", + Open = 299.9, + High = 301.3, + Low = 262.5, + Close = 265.2, + Volume = 454307920, + Change = -11.5, + Index = 134 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-10-11", + Open = 254.5, + High = 257.5, + Low = 215, + Close = 216.5, + Volume = 593078170, + Change = -14.9, + Index = 135 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-10-20", + Open = 215.3, + High = 229.8, + Low = 202, + Close = 207.3, + Volume = 592158560, + Change = -3.7, + Index = 136 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-10-31", + Open = 206.4, + High = 233.8, + Low = 198.6, + Close = 227.5, + Volume = 550341050, + Change = 10.2, + Index = 137 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-11-09", + Open = 234, + High = 237.4, + Low = 177.1, + Close = 177.6, + Volume = 630702790, + Change = -24.1, + Index = 138 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-11-18", + Open = 189.9, + High = 200.8, + Low = 176.6, + Close = 180.2, + Volume = 637579480, + Change = -5.1, + Index = 139 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-11-30", + Open = 175.8, + High = 194.8, + Low = 166.2, + Close = 194.7, + Volume = 617126140, + Change = 10.7, + Index = 140 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-12-09", + Open = 197.1, + High = 198.9, + Low = 169.1, + Close = 179, + Volume = 625675690, + Change = -9.1, + Index = 141 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-12-20", + Open = 176.1, + High = 177.4, + Low = 137.7, + Close = 137.8, + Volume = 986660100, + Change = -21.7, + Index = 142 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-12-30", + Open = 139.3, + High = 141.3, + Low = 108.2, + Close = 123.2, + Volume = 1331911900, + Change = -11.6, + Index = 143 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-01-11", + Open = 118.5, + High = 126, + Low = 101.8, + Close = 123.2, + Volume = 1332426500, + Change = 4, + Index = 144 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-01-23", + Open = 122.6, + High = 145.4, + Low = 115.6, + Close = 143.8, + Volume = 1244541500, + Change = 17.3, + Index = 145 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-02-01", + Open = 143, + High = 183.8, + Low = 138.1, + Close = 181.4, + Volume = 1534337700, + Change = 26.9, + Index = 146 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-02-10", + Open = 187.3, + High = 214, + Low = 182.6, + Close = 196.9, + Volume = 1423167800, + Change = 5.1, + Index = 147 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-02-22", + Open = 194.4, + High = 217.6, + Low = 187.6, + Close = 200.9, + Volume = 1386211900, + Change = 3.3, + Index = 148 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-03-03", + Open = 203.9, + High = 211.2, + Low = 186, + Close = 197.8, + Volume = 1095786600, + Change = -3, + Index = 149 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-03-14", + Open = 198.5, + High = 198.6, + Low = 163.9, + Close = 183.3, + Volume = 1101144600, + Change = -7.7, + Index = 150 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-03-23", + Open = 180.8, + High = 200.7, + Low = 176, + Close = 192.2, + Volume = 978213300, + Change = 6.3, + Index = 151 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-04-03", + Open = 191.6, + High = 207.8, + Low = 185.4, + Close = 194.8, + Volume = 909718040, + Change = 1.6, + Index = 152 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-04-13", + Open = 197.3, + High = 198.7, + Low = 176.1, + Close = 185.9, + Volume = 905319000, + Change = -5.8, + Index = 153 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-04-24", + Open = 184, + High = 189.7, + Low = 158.6, + Close = 162.6, + Volume = 905416980, + Change = -11.6, + Index = 154 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-05-03", + Open = 159.8, + High = 165.5, + Low = 152.4, + Close = 160.6, + Volume = 881897100, + Change = 0.5, + Index = 155 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-05-12", + Open = 162.7, + High = 177.4, + Low = 159.6, + Close = 168, + Volume = 785510430, + Change = 3.2, + Index = 156 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-05-23", + Open = 167.7, + High = 193, + Low = 164.4, + Close = 185.8, + Volume = 864025390, + Change = 10.8, + Index = 157 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-06-02", + Open = 182.2, + High = 217.2, + Low = 178.2, + Close = 214, + Volume = 988496020, + Change = 17.4, + Index = 158 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-06-13", + Open = 217.8, + High = 259.7, + Low = 212.5, + Close = 258.7, + Volume = 1161622400, + Change = 18.8, + Index = 159 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-06-23", + Open = 260.2, + High = 277, + Low = 247.3, + Close = 256.6, + Volume = 1220407300, + Change = -1.4, + Index = 160 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-07-05", + Open = 250.1, + High = 284.2, + Low = 240.7, + Close = 282.5, + Volume = 999163700, + Change = 13, + Index = 161 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-07-14", + Open = 278.1, + High = 285.3, + Low = 265.1, + Close = 281.4, + Volume = 774400400, + Change = 1.2, + Index = 162 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-07-25", + Open = 286.6, + High = 299.3, + Low = 254.1, + Close = 265.3, + Volume = 973076400, + Change = -7.4, + Index = 163 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-08-03", + Open = 263.2, + High = 269.1, + Low = 250.5, + Close = 259.3, + Volume = 678809820, + Change = -1.5, + Index = 164 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-08-14", + Open = 261, + High = 264.8, + Low = 233.8, + Close = 239.8, + Volume = 716008860, + Change = -8.1, + Index = 165 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-08-23", + Open = 238.7, + High = 240.8, + Low = 212.4, + Close = 236.9, + Volume = 825055300, + Change = -0.8, + Index = 166 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-09-01", + Open = 238.7, + High = 261.2, + Low = 228.2, + Close = 245, + Volume = 811502630, + Change = 2.7, + Index = 167 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-09-13", + Open = 245, + High = 278.4, + Low = 243.3, + Close = 271.3, + Volume = 902643400, + Change = 10.7, + Index = 168 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-09-22", + Open = 271.3, + High = 279, + Low = 244.5, + Close = 244.9, + Volume = 816639600, + Change = -9.7, + Index = 169 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-10-03", + Open = 243.4, + High = 254.8, + Low = 234.6, + Close = 246.5, + Volume = 814604700, + Change = 1.3, + Index = 170 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-10-12", + Open = 248.1, + High = 268.9, + Low = 247.6, + Close = 258.9, + Volume = 806250900, + Change = 4.3, + Index = 171 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-10-23", + Open = 258.9, + High = 259.6, + Low = 202.5, + Close = 212.1, + Volume = 869390890, + Change = -18.1, + Index = 172 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-11-01", + Open = 216.5, + High = 222, + Low = 194.1, + Close = 205.7, + Volume = 811468170, + Change = -5, + Index = 173 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-11-10", + Open = 213, + High = 226.4, + Low = 205.7, + Close = 214.6, + Volume = 859763700, + Change = 0.8, + Index = 174 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-11-21", + Open = 215.6, + High = 246.7, + Low = 211.6, + Close = 241.2, + Volume = 959006600, + Change = 11.9, + Index = 175 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-12-01", + Open = 242, + High = 252.8, + Low = 231.4, + Close = 238.8, + Volume = 832910200, + Change = -1.3, + Index = 176 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-12-12", + Open = 235.8, + High = 246.7, + Low = 233.3, + Close = 237, + Volume = 772018400, + Change = 0.5, + Index = 177 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-12-21", + Open = 234.2, + High = 259.8, + Low = 228.2, + Close = 254.5, + Volume = 900893400, + Change = 8.7, + Index = 178 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-01-03", + Open = 256.8, + High = 265.1, + Low = 236.3, + Close = 238.4, + Volume = 727005170, + Change = -7.1, + Index = 179 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-01-12", + Open = 239.2, + High = 242.7, + Low = 217.2, + Close = 218.9, + Volume = 697536380, + Change = -8.5, + Index = 180 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-01-24", + Open = 215.1, + High = 223.5, + Low = 206.3, + Close = 207.8, + Volume = 777303400, + Change = -3.4, + Index = 181 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-02-02", + Open = 189.7, + High = 196.4, + Low = 180.1, + Close = 187.9, + Volume = 846092780, + Change = -0.9, + Index = 182 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-02-13", + Open = 184.3, + High = 194.7, + Low = 175, + Close = 184, + Volume = 718274070, + Change = -0.1, + Index = 183 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-02-23", + Open = 185.3, + High = 203.2, + Low = 183.4, + Close = 192, + Volume = 693352670, + Change = 3.6, + Index = 184 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-03-05", + Open = 192.3, + High = 205.6, + Low = 177.6, + Close = 180.7, + Volume = 742344460, + Change = -6, + Index = 185 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-03-14", + Open = 180, + High = 182.9, + Low = 160.5, + Close = 162.5, + Volume = 701227950, + Change = -9.7, + Index = 186 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-03-25", + Open = 163.2, + High = 178.2, + Low = 160.8, + Close = 172.6, + Volume = 589466660, + Change = 5.8, + Index = 187 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-04-04", + Open = 178.6, + High = 184.2, + Low = 163.3, + Close = 171.1, + Volume = 676969950, + Change = -4.2, + Index = 188 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-04-15", + Open = 169.1, + High = 179.2, + Low = 160.5, + Close = 161.5, + Volume = 694829970, + Change = -4.5, + Index = 189 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-04-24", + Open = 156.7, + High = 168, + Low = 138.8, + Close = 162.1, + Volume = 775433710, + Change = 3.4, + Index = 190 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-05-03", + Open = 159, + High = 198.9, + Low = 158.4, + Close = 181.2, + Volume = 864614000, + Change = 14, + Index = 191 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-05-14", + Open = 183.8, + High = 187.6, + Low = 167.8, + Close = 177.6, + Volume = 531409380, + Change = -3.4, + Index = 192 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-05-23", + Open = 179.9, + High = 186.9, + Low = 171.4, + Close = 173.7, + Volume = 554203970, + Change = -3.4, + Index = 193 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-06-04", + Open = 174.8, + High = 182.7, + Low = 173.2, + Close = 174.8, + Volume = 453828370, + Change = 0, + Index = 194 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-06-13", + Open = 175.4, + High = 191.1, + Low = 167.4, + Close = 182.5, + Volume = 509090870, + Change = 4.1, + Index = 195 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-06-25", + Open = 185.8, + High = 188.8, + Low = 176.9, + Close = 187.4, + Volume = 505399520, + Change = 0.8, + Index = 196 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-07-05", + Open = 186.5, + High = 252.4, + Low = 186.4, + Close = 251.5, + Volume = 925723660, + Change = 34.8, + Index = 197 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-07-16", + Open = 247.7, + High = 271, + Low = 233.1, + Close = 256.6, + Volume = 1097390000, + Change = 3.6, + Index = 198 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-07-25", + Open = 252.7, + High = 258.5, + Low = 214.7, + Close = 220.2, + Volume = 795590700, + Change = -12.9, + Index = 199 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-08-05", + Open = 221.2, + High = 234.7, + Low = 182, + Close = 198.9, + Volume = 658914080, + Change = -10.1, + Index = 200 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-08-14", + Open = 200.8, + High = 208.5, + Low = 191.5, + Close = 201.4, + Volume = 479168160, + Change = 0.3, + Index = 201 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-08-23", + Open = 205, + High = 228.2, + Low = 204.8, + Close = 220.3, + Volume = 560235700, + Change = 7.5, + Index = 202 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-09-04", + Open = 218.8, + High = 222.2, + Low = 202.6, + Close = 219.4, + Volume = 469284350, + Change = 0.3, + Index = 203 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-09-13", + Open = 223.5, + High = 235, + Low = 210.5, + Close = 230.3, + Volume = 592950440, + Change = 3, + Index = 204 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-09-24", + Open = 229.3, + High = 257.2, + Low = 223.5, + Close = 254.3, + Volume = 577086700, + Change = 10.9, + Index = 205 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-10-03", + Open = 252.5, + High = 264.9, + Low = 237.8, + Close = 240.7, + Volume = 546148740, + Change = -4.7, + Index = 206 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-10-14", + Open = 246.7, + High = 251, + Low = 213.7, + Close = 219.2, + Volume = 589440130, + Change = -11.2, + Index = 207 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-10-23", + Open = 220, + High = 224.3, + Low = 212.1, + Close = 213.6, + Volume = 384561880, + Change = -2.9, + Index = 208 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-11-01", + Open = 244.7, + High = 273.5, + Low = 242.6, + Close = 249, + Volume = 732392780, + Change = 1.8, + Index = 209 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-11-12", + Open = 244.6, + High = 358.6, + Low = 238.9, + Close = 328.5, + Volume = 991653160, + Change = 34.3, + Index = 210 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-11-21", + Open = 335.8, + High = 348.5, + Low = 309.2, + Close = 339.6, + Volume = 700324320, + Change = 1.1, + Index = 211 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-12-03", + Open = 341.1, + High = 361.9, + Low = 326.6, + Close = 351.4, + Volume = 478645220, + Change = 3, + Index = 212 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-12-12", + Open = 353, + High = 429.3, + Low = 348.6, + Close = 418.1, + Volume = 599082110, + Change = 18.4, + Index = 213 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-12-23", + Open = 420, + High = 481.5, + Low = 415.4, + Close = 430.6, + Volume = 807128120, + Change = 2.5, + Index = 214 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-01-03", + Open = 435.9, + High = 465.3, + Low = 373, + Close = 410.4, + Volume = 565769940, + Change = -5.8, + Index = 215 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-01-15", + Open = 423.2, + High = 429.8, + Low = 377.3, + Close = 428.2, + Volume = 530063170, + Change = 1.2, + Index = 216 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-01-27", + Open = 423.5, + High = 439.7, + Low = 389, + Close = 397.2, + Volume = 476854060, + Change = -6.2, + Index = 217 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-02-05", + Open = 396.9, + High = 420, + Low = 374.4, + Close = 378.2, + Volume = 507024510, + Change = -4.7, + Index = 218 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-02-14", + Open = 373, + High = 380.6, + Low = 325.1, + Close = 355.8, + Volume = 607376290, + Change = -4.6, + Index = 219 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-02-26", + Open = 355, + High = 367.3, + Low = 288, + Close = 290.8, + Volume = 549149490, + Change = -18.1, + Index = 220 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-03-07", + Open = 291.2, + High = 303.9, + Low = 250.7, + Close = 262.7, + Volume = 754567280, + Change = -9.8, + Index = 221 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-03-18", + Open = 252.5, + High = 253.4, + Low = 217, + Close = 225.3, + Volume = 944623000, + Change = -10.8, + Index = 222 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-03-27", + Open = 231.6, + High = 291.8, + Low = 229.2, + Close = 273.1, + Volume = 982018670, + Change = 17.9, + Index = 223 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-04-07", + Open = 275.6, + High = 285, + Low = 214.2, + Close = 233.3, + Volume = 1117950500, + Change = -15.3, + Index = 224 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-04-16", + Open = 245, + High = 274.7, + Low = 217.8, + Close = 241.6, + Volume = 993815820, + Change = -1.4, + Index = 225 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-04-28", + Open = 243.5, + High = 294.9, + Low = 222.8, + Close = 285.9, + Volume = 866169890, + Change = 17.4, + Index = 226 + }); + } +} diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/_Imports.razor b/samples/charts/data-chart/data-annotation-multiple-with-stocks/_Imports.razor new file mode 100644 index 0000000000..d27d337cb1 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/_Imports.razor @@ -0,0 +1,9 @@ +// these namespaces are global to the app +@using System.Net.Http +@using System.Net.Http.Json +@using Microsoft.AspNetCore.Components.Forms +@using Microsoft.AspNetCore.Components.Routing +@using Microsoft.AspNetCore.Components.Web +@using Microsoft.AspNetCore.Components.WebAssembly.Http +@using Microsoft.JSInterop +@using Infragistics.Samples diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/wwwroot/index.css b/samples/charts/data-chart/data-annotation-multiple-with-stocks/wwwroot/index.css new file mode 100644 index 0000000000..50ca13caa6 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/wwwroot/index.css @@ -0,0 +1,4 @@ +/* +CSS styles are loaded from the shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/wwwroot/index.html b/samples/charts/data-chart/data-annotation-multiple-with-stocks/wwwroot/index.html new file mode 100644 index 0000000000..8833030d8e --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/wwwroot/index.html @@ -0,0 +1,30 @@ + + + + + + + + + + Samples | IgniteUI for Blazor | Infragistics + + + + + + + + + +
+ An unhandled error has occurred. + Reload + 🗙 +
+ + + + + + diff --git a/samples/charts/data-chart/data-annotation-rect-layer/AnnotationRectData.cs b/samples/charts/data-chart/data-annotation-rect-layer/AnnotationRectData.cs new file mode 100644 index 0000000000..d061a5249a --- /dev/null +++ b/samples/charts/data-chart/data-annotation-rect-layer/AnnotationRectData.cs @@ -0,0 +1,35 @@ +using System; +using System.Collections.Generic; +public class AnnotationRectDataItem +{ + public double StartX { get; set; } + public double StartY { get; set; } + public double EndX { get; set; } + public double EndY { get; set; } + public string Label { get; set; } +} + +public class AnnotationRectData + : List +{ + public AnnotationRectData() + { + this.Add(new AnnotationRectDataItem() + { + StartX = 85, + StartY = 190, + EndX = 140, + EndY = 415, + Label = @"Head & Shoulders Pattern + (Bearish Downtrend)" + }); + this.Add(new AnnotationRectDataItem() + { + StartX = 53, + StartY = 75, + EndX = 230, + EndY = 80, + Label = @"Price Gap (Bearish Target)" + }); + } +} diff --git a/samples/charts/data-chart/data-annotation-rect-layer/App.razor b/samples/charts/data-chart/data-annotation-rect-layer/App.razor new file mode 100644 index 0000000000..41bd7131fd --- /dev/null +++ b/samples/charts/data-chart/data-annotation-rect-layer/App.razor @@ -0,0 +1,147 @@ +@using IgniteUI.Blazor.Controls + +
+
+ + + + + + + + + + + + + + + + + + +
+
+ +@code { + + private Action BindElements { get; set; } + + protected override async Task OnAfterRenderAsync(bool firstRender) + { + var chart = this.chart; + var xAxis = this.xAxis; + var yAxis = this.yAxis; + var series1 = this.series1; + var tooltip = this.tooltip; + var rectLayer = this.rectLayer; + + this.BindElements = () => { + rectLayer.TargetAxis = this.xAxis; + }; + this.BindElements(); + + } + + private IgbDataChart chart; + private IgbCategoryXAxis xAxis; + private IgbNumericYAxis yAxis; + private IgbFinancialPriceSeries series1; + private IgbDataToolTipLayer tooltip; + private IgbDataAnnotationRectLayer rectLayer; + + private StockTesla _stockTesla = null; + public StockTesla StockTesla + { + get + { + if (_stockTesla == null) + { + _stockTesla = new StockTesla(); + } + return _stockTesla; + } + } + + private AnnotationRectData _annotationRectData = null; + public AnnotationRectData AnnotationRectData + { + get + { + if (_annotationRectData == null) + { + _annotationRectData = new AnnotationRectData(); + } + return _annotationRectData; + } + } + +} \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-rect-layer/BlazorClientApp.csproj b/samples/charts/data-chart/data-annotation-rect-layer/BlazorClientApp.csproj new file mode 100644 index 0000000000..ed10c7849c --- /dev/null +++ b/samples/charts/data-chart/data-annotation-rect-layer/BlazorClientApp.csproj @@ -0,0 +1,21 @@ + + + + net9.0 + 3.0 + Infragistics.Samples + Infragistics.Samples + + + + 1701;1702,IDE0028,BL0005,0219,CS1998 + + + + + + + + + + diff --git a/samples/charts/data-chart/data-annotation-rect-layer/BlazorClientApp.sln b/samples/charts/data-chart/data-annotation-rect-layer/BlazorClientApp.sln new file mode 100644 index 0000000000..1e2eda208a --- /dev/null +++ b/samples/charts/data-chart/data-annotation-rect-layer/BlazorClientApp.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BlazorClientApp", "BlazorClientApp.csproj", "{F69CC3F0-BCD1-4CE6-9F39-CBED14E7FA78}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {F69CC3F0-BCD1-4CE6-9F39-CBED14E7FA78}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F69CC3F0-BCD1-4CE6-9F39-CBED14E7FA78}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F69CC3F0-BCD1-4CE6-9F39-CBED14E7FA78}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F69CC3F0-BCD1-4CE6-9F39-CBED14E7FA78}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {FC52AAC8-4488-40AE-9621-75F6BA744B18} + EndGlobalSection +EndGlobal diff --git a/samples/charts/data-chart/data-annotation-rect-layer/Program.cs b/samples/charts/data-chart/data-annotation-rect-layer/Program.cs new file mode 100644 index 0000000000..ef36a518c5 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-rect-layer/Program.cs @@ -0,0 +1,38 @@ +using System; +using System.Net.Http; +using System.Collections.Generic; +using System.Threading.Tasks; +using System.Text; +using Microsoft.AspNetCore.Components.WebAssembly.Hosting; +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.Logging; +using IgniteUI.Blazor.Controls; // for registering Ignite UI modules + +namespace Infragistics.Samples +{ + public class Program + { + public static async Task Main(string[] args) + { + var builder = WebAssemblyHostBuilder.CreateDefault(args); + builder.RootComponents.Add("app"); + builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) }); + // registering Ignite UI modules + builder.Services.AddIgniteUIBlazor( + typeof(IgbDataChartCoreModule), + typeof(IgbDataChartCategoryModule), + typeof(IgbDataChartCategoryCoreModule), + typeof(IgbDataChartFinancialCoreModule), + typeof(IgbDataChartFinancialModule), + typeof(IgbDataChartFinancialOverlaysModule), + typeof(IgbDataChartInteractivityModule), + typeof(IgbDataChartAnnotationModule), + typeof(IgbDataAnnotationRectLayerModule), + typeof(IgbNumberAbbreviatorModule), + typeof(IgbAnnotationLayerProxyModule) + ); + await builder.Build().RunAsync(); + } + } +} diff --git a/samples/charts/data-chart/data-annotation-rect-layer/Properties/launchSettings.json b/samples/charts/data-chart/data-annotation-rect-layer/Properties/launchSettings.json new file mode 100644 index 0000000000..18bd6fb5bc --- /dev/null +++ b/samples/charts/data-chart/data-annotation-rect-layer/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:4200", + "sslPort": 44385 + } + }, + "profiles": { + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "BlazorSamples": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:4200" + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-rect-layer/StockTesla.cs b/samples/charts/data-chart/data-annotation-rect-layer/StockTesla.cs new file mode 100644 index 0000000000..9b2caebc66 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-rect-layer/StockTesla.cs @@ -0,0 +1,2518 @@ +using System; +using System.Collections.Generic; +public class StockTeslaItem +{ + public string Date { get; set; } + public double Open { get; set; } + public double High { get; set; } + public double Low { get; set; } + public double Close { get; set; } + public double Volume { get; set; } + public double Change { get; set; } + public double Index { get; set; } +} + +public class StockTesla + : List +{ + public StockTesla() + { + this.Add(new StockTeslaItem() + { + Date = @"2019-01-10", + Open = 20.4, + High = 23, + Low = 19.8, + Close = 23, + Volume = 779333701, + Change = 12.7, + Index = 0 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-01-22", + Open = 22.8, + High = 23.5, + Low = 19.7, + Close = 19.9, + Volume = 911781100, + Change = -12.6, + Index = 1 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-01-31", + Open = 19.5, + High = 20.8, + Low = 18.6, + Close = 20.5, + Volume = 926375717, + Change = 5, + Index = 2 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-02-11", + Open = 20.4, + High = 21.6, + Low = 19.9, + Close = 20.9, + Volume = 687520471, + Change = 2.4, + Index = 3 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-02-21", + Open = 21.1, + High = 21.2, + Low = 19.4, + Close = 19.4, + Volume = 597552272, + Change = -7.9, + Index = 4 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-03-04", + Open = 19.6, + High = 21.3, + Low = 18.9, + Close = 19, + Volume = 1218669201, + Change = -3.1, + Index = 5 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-03-13", + Open = 18.8, + High = 19.5, + Low = 18, + Close = 19.3, + Volume = 1034156904, + Change = 2.5, + Index = 6 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-03-22", + Open = 19.5, + High = 19.7, + Low = 17.6, + Close = 17.6, + Volume = 980694095, + Change = -9.5, + Index = 7 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-04-02", + Open = 17.3, + High = 19.3, + Low = 17, + Close = 19.1, + Volume = 788473494, + Change = 10.1, + Index = 8 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-04-11", + Open = 19.2, + High = 19.7, + Low = 17.4, + Close = 17.9, + Volume = 1165555442, + Change = -6.6, + Index = 9 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-04-23", + Open = 18, + High = 18.3, + Low = 17, + Close = 17.6, + Volume = 870373200, + Change = -2.3, + Index = 10 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-05-02", + Open = 17.6, + High = 17.7, + Low = 15.4, + Close = 16.3, + Volume = 1629432326, + Change = -7.5, + Index = 11 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-05-13", + Open = 16.3, + High = 17.2, + Low = 15, + Close = 15.1, + Volume = 1131045605, + Change = -6.9, + Index = 12 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-05-22", + Open = 15.3, + High = 15.6, + Low = 12.8, + Close = 12.8, + Volume = 1455503588, + Change = -15.9, + Index = 13 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-06-03", + Open = 13, + High = 13.3, + Low = 11.8, + Close = 11.9, + Volume = 1415442268, + Change = -7.9, + Index = 14 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-06-12", + Open = 12.1, + High = 14.9, + Low = 12, + Close = 14, + Volume = 1515000443, + Change = 15.6, + Index = 15 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-06-21", + Open = 14, + High = 15.6, + Low = 13.8, + Close = 14.8, + Volume = 1009123371, + Change = 5.5, + Index = 16 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-07-02", + Open = 14.9, + High = 15.5, + Low = 14.5, + Close = 15, + Volume = 766921642, + Change = 0.6, + Index = 17 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-07-12", + Open = 16, + High = 16.4, + Low = 15.2, + Close = 16.3, + Volume = 887983836, + Change = 2.4, + Index = 18 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-07-23", + Open = 16.5, + High = 17.5, + Low = 16.3, + Close = 17.3, + Volume = 788941000, + Change = 4.9, + Index = 19 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-08-01", + Open = 17.3, + High = 17.7, + Low = 14.8, + Close = 15.6, + Volume = 1175082297, + Change = -9.8, + Index = 20 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-08-12", + Open = 15.4, + High = 16, + Low = 15, + Close = 15.3, + Volume = 560129569, + Change = -1, + Index = 21 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-08-21", + Open = 15.3, + High = 15.7, + Low = 14.1, + Close = 14.7, + Volume = 677293701, + Change = -3.5, + Index = 22 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-08-30", + Open = 14.9, + High = 15.5, + Low = 14.1, + Close = 15, + Volume = 650239370, + Change = 1.3, + Index = 23 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-09-11", + Open = 14.9, + High = 16.5, + Low = 14.6, + Close = 16.5, + Volume = 636766167, + Change = 10.3, + Index = 24 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-09-20", + Open = 16.5, + High = 16.9, + Low = 15.9, + Close = 16, + Volume = 572802643, + Change = -2.9, + Index = 25 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-10-01", + Open = 16, + High = 16.6, + Low = 14.6, + Close = 16.3, + Volume = 931821239, + Change = 2, + Index = 26 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-10-10", + Open = 16.2, + High = 16.6, + Low = 15, + Close = 16.3, + Volume = 891798049, + Change = 0.6, + Index = 27 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-10-21", + Open = 16.5, + High = 17.7, + Low = 16.5, + Close = 16.9, + Volume = 713093463, + Change = 2.6, + Index = 28 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-10-30", + Open = 17, + High = 22.7, + Low = 16.7, + Close = 21, + Volume = 1752943598, + Change = 23.9, + Index = 29 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-11-08", + Open = 20.9, + High = 22.8, + Low = 20.6, + Close = 22.5, + Volume = 834957256, + Change = 7.7, + Index = 30 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-11-19", + Open = 22.9, + High = 24, + Low = 22.8, + Close = 24, + Volume = 738746390, + Change = 4.5, + Index = 31 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-11-29", + Open = 24, + High = 24.1, + Low = 21.8, + Close = 22, + Volume = 870685288, + Change = -8.4, + Index = 32 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-12-10", + Open = 22, + High = 23.4, + Low = 21.8, + Close = 23.3, + Volume = 712016613, + Change = 5.9, + Index = 33 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-12-19", + Open = 23.5, + High = 27.1, + Low = 23.4, + Close = 26.9, + Volume = 1203765433, + Change = 14.8, + Index = 34 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-12-31", + Open = 27.4, + High = 29, + Low = 26.7, + Close = 27.9, + Volume = 1195073357, + Change = 2, + Index = 35 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-01-10", + Open = 28.3, + High = 33.3, + Low = 28.1, + Close = 31.9, + Volume = 1925386078, + Change = 12.6, + Index = 36 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-01-22", + Open = 32.9, + High = 39.6, + Low = 32.8, + Close = 38, + Volume = 2364043518, + Change = 15.4, + Index = 37 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-01-31", + Open = 37.6, + High = 43.5, + Low = 36, + Close = 43.4, + Volume = 1835141382, + Change = 15.3, + Index = 38 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-02-11", + Open = 44.9, + High = 64.6, + Low = 44.9, + Close = 51.6, + Volume = 3748903126, + Change = 14.9, + Index = 39 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-02-21", + Open = 51.9, + High = 63, + Low = 49, + Close = 60.1, + Volume = 1921517039, + Change = 15.8, + Index = 40 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-03-03", + Open = 55.9, + High = 57.6, + Low = 40.8, + Close = 49.7, + Volume = 2121850940, + Change = -11.1, + Index = 41 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-03-12", + Open = 50.9, + High = 51.1, + Low = 36.4, + Close = 37.4, + Volume = 1553329923, + Change = -26.6, + Index = 42 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-03-23", + Open = 39.7, + High = 40.5, + Low = 23.4, + Close = 29, + Volume = 2487688157, + Change = -27, + Index = 43 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-04-01", + Open = 31.8, + High = 37.3, + Low = 31.6, + Close = 32.1, + Volume = 1785601357, + Change = 0.9, + Index = 44 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-04-13", + Open = 32.1, + High = 43.5, + Low = 29.8, + Close = 43.4, + Volume = 1860352620, + Change = 35.3, + Index = 45 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-04-22", + Open = 46.6, + High = 51.7, + Low = 44.9, + Close = 48.8, + Volume = 2056797321, + Change = 4.7, + Index = 46 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-05-01", + Open = 48.5, + High = 58, + Low = 45.5, + Close = 46.8, + Volume = 2093959203, + Change = -3.6, + Index = 47 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-05-12", + Open = 46.7, + High = 56.2, + Low = 46.5, + Close = 54, + Volume = 1611543246, + Change = 15.5, + Index = 48 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-05-21", + Open = 54.7, + High = 55.6, + Low = 50.9, + Close = 55.2, + Volume = 1262468113, + Change = 0.8, + Index = 49 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-06-02", + Open = 54.8, + High = 60.6, + Low = 52.3, + Close = 58.8, + Volume = 1160487993, + Change = 7.2, + Index = 50 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-06-11", + Open = 59.2, + High = 68.5, + Low = 57.2, + Close = 64.9, + Volume = 1270377400, + Change = 9.5, + Index = 51 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-06-22", + Open = 65.3, + High = 67.9, + Low = 60.6, + Close = 66.3, + Volume = 1217946366, + Change = 1.5, + Index = 52 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-07-01", + Open = 66.6, + High = 75.7, + Low = 62.5, + Close = 74.6, + Volume = 1120591270, + Change = 12.1, + Index = 53 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-07-13", + Open = 81.4, + High = 119.7, + Low = 79, + Close = 99.8, + Volume = 2244920779, + Change = 22.6, + Index = 54 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-07-22", + Open = 103.7, + High = 111.7, + Low = 95.4, + Close = 106.2, + Volume = 1662846099, + Change = 2.3, + Index = 55 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-07-31", + Open = 111.9, + High = 112.6, + Low = 91.1, + Close = 95.4, + Volume = 1573159944, + Change = -14.8, + Index = 56 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-08-11", + Open = 96.6, + High = 101.8, + Low = 91, + Close = 91.6, + Volume = 798587331, + Change = -5.2, + Index = 57 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-08-20", + Open = 98, + High = 134.8, + Low = 95.7, + Close = 133.5, + Volume = 1866534416, + Change = 36.2, + Index = 58 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-08-31", + Open = 136.3, + High = 166.7, + Low = 128.5, + Close = 166.1, + Volume = 2008507459, + Change = 21.9, + Index = 59 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-09-10", + Open = 167.4, + High = 167.5, + Low = 110, + Close = 123.8, + Volume = 1992227059, + Change = -26, + Index = 60 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-09-21", + Open = 127.3, + High = 154, + Low = 120.2, + Close = 149.8, + Volume = 1758737696, + Change = 17.7, + Index = 61 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-09-30", + Open = 143.2, + High = 145.9, + Low = 117.1, + Close = 143, + Volume = 1459893236, + Change = -0.1, + Index = 62 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-10-09", + Open = 146.9, + High = 149.6, + Low = 135.4, + Close = 144.7, + Volume = 985545158, + Change = -1.5, + Index = 63 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-10-20", + Open = 147.3, + High = 155.3, + Low = 139.7, + Close = 140.6, + Volume = 773077727, + Change = -4.5, + Index = 64 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-10-29", + Open = 140.9, + High = 148.4, + Low = 135.3, + Close = 136.9, + Volume = 615339122, + Change = -2.8, + Index = 65 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-11-09", + Open = 135.6, + High = 150.8, + Low = 126.4, + Close = 140.4, + Volume = 669171368, + Change = 3.5, + Index = 66 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-11-18", + Open = 140, + High = 165.3, + Low = 132, + Close = 162.2, + Volume = 760451265, + Change = 15.8, + Index = 67 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-11-30", + Open = 164, + High = 202.6, + Low = 162.5, + Close = 189.2, + Volume = 1046371155, + Change = 15.4, + Index = 68 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-12-09", + Open = 199.2, + High = 218.1, + Low = 180.4, + Close = 201.5, + Volume = 1055933265, + Change = 1.2, + Index = 69 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-12-18", + Open = 191.5, + High = 231.7, + Low = 188.8, + Close = 231.7, + Volume = 1593943601, + Change = 21, + Index = 70 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-12-30", + Open = 222.1, + High = 232.2, + Low = 204.7, + Close = 231.6, + Volume = 791942570, + Change = 4.3, + Index = 71 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-01-11", + Open = 233.3, + High = 294.8, + Low = 230.4, + Close = 270.4, + Volume = 1084025779, + Change = 15.9, + Index = 72 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-01-21", + Open = 277, + High = 289.3, + Low = 273, + Close = 281.7, + Volume = 663774487, + Change = 1.7, + Index = 73 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-02-01", + Open = 278.1, + High = 300.1, + Low = 260, + Close = 279.9, + Volume = 595397009, + Change = 0.7, + Index = 74 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-02-10", + Open = 281.6, + High = 293.5, + Low = 266.7, + Close = 268.3, + Volume = 445813486, + Change = -4.7, + Index = 75 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-02-22", + Open = 270.8, + High = 276.6, + Low = 236.7, + Close = 238.2, + Volume = 496372009, + Change = -12.1, + Index = 76 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-03-03", + Open = 220.7, + High = 290.7, + Low = 206.3, + Close = 217.7, + Volume = 793689739, + Change = -1.3, + Index = 77 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-03-12", + Open = 218.6, + High = 291.3, + Low = 179.8, + Close = 231.2, + Volume = 1215209162, + Change = 5.8, + Index = 78 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-03-23", + Open = 231.4, + High = 237.7, + Low = 208.2, + Close = 220.7, + Volume = 744776145, + Change = -4.6, + Index = 79 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-04-01", + Open = 222.6, + High = 230.8, + Low = 197, + Close = 220.6, + Volume = 730733684, + Change = -0.9, + Index = 80 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-04-13", + Open = 235.9, + High = 254.3, + Low = 222.6, + Close = 254.1, + Volume = 646721884, + Change = 7.7, + Index = 81 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-04-22", + Open = 256.9, + High = 260.3, + Low = 230.6, + Close = 239.9, + Volume = 740840774, + Change = -6.6, + Index = 82 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-05-03", + Open = 239.9, + High = 249.8, + Low = 222, + Close = 228.3, + Volume = 623423313, + Change = -4.8, + Index = 83 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-05-12", + Open = 226.3, + High = 230, + Low = 195.6, + Close = 196.6, + Volume = 643844974, + Change = -13.1, + Index = 84 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-05-21", + Open = 200.5, + High = 202.2, + Low = 182.3, + Close = 193.6, + Volume = 729192883, + Change = -3.4, + Index = 85 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-06-02", + Open = 193.9, + High = 211.9, + Low = 191.2, + Close = 201.7, + Volume = 545095944, + Change = 4, + Index = 86 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-06-11", + Open = 200.6, + High = 207.7, + Low = 190.4, + Close = 203.3, + Volume = 478366128, + Change = 1.3, + Index = 87 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-06-22", + Open = 204.1, + High = 210.5, + Low = 197.8, + Close = 207.9, + Volume = 454698495, + Change = 1.9, + Index = 88 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-07-01", + Open = 210.7, + High = 232.5, + Low = 210, + Close = 226, + Volume = 558441596, + Change = 7.3, + Index = 89 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-07-13", + Open = 226.3, + High = 233.3, + Low = 206.8, + Close = 222.8, + Volume = 470942387, + Change = -1.5, + Index = 90 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-07-22", + Open = 223.6, + High = 226.2, + Low = 207.1, + Close = 216.4, + Volume = 372195097, + Change = -3.2, + Index = 91 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-08-02", + Open = 215.5, + High = 242.3, + Low = 209.1, + Close = 236.6, + Volume = 547284685, + Change = 9.8, + Index = 92 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-08-11", + Open = 239.7, + High = 241.6, + Low = 232.5, + Close = 235.9, + Volume = 315341455, + Change = -1.6, + Index = 93 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-08-20", + Open = 235.4, + High = 243.3, + Low = 216.3, + Close = 226.8, + Volume = 392227478, + Change = -3.7, + Index = 94 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-08-31", + Open = 228.5, + High = 246.8, + Low = 226.9, + Close = 245.2, + Volume = 337503634, + Change = 7.3, + Index = 95 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-09-10", + Open = 244.7, + High = 254.8, + Low = 241.4, + Close = 245.4, + Volume = 328100734, + Change = 0.3, + Index = 96 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-09-21", + Open = 246.7, + High = 253.7, + Low = 236.3, + Close = 246.5, + Volume = 420153012, + Change = -0.1, + Index = 97 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-09-30", + Open = 247.8, + High = 266.3, + Low = 246.4, + Close = 258.5, + Volume = 422393262, + Change = 4.3, + Index = 98 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-10-11", + Open = 259.5, + High = 269, + Low = 254.5, + Close = 264, + Volume = 392144589, + Change = 1.7, + Index = 99 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-10-20", + Open = 267, + High = 292.6, + Low = 265.5, + Close = 288.6, + Volume = 368796877, + Change = 8.1, + Index = 100 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-10-29", + Open = 285.3, + High = 371.7, + Low = 285.2, + Close = 371.3, + Volume = 825862313, + Change = 30.1, + Index = 101 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-11-09", + Open = 381.7, + High = 414.5, + Low = 337.2, + Close = 341.2, + Volume = 818978542, + Change = -10.6, + Index = 102 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-11-18", + Open = 336.8, + High = 373.2, + Low = 326.2, + Close = 365.5, + Volume = 613304311, + Change = 8.5, + Index = 103 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-11-30", + Open = 366.3, + High = 400.6, + Low = 354, + Close = 381.6, + Volume = 515052382, + Change = 4.2, + Index = 104 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-12-09", + Open = 386.9, + High = 390.9, + Low = 316.8, + Close = 334.6, + Volume = 473333567, + Change = -13.5, + Index = 105 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-12-20", + Open = 336.2, + High = 340.3, + Low = 297.8, + Close = 300, + Volume = 524367113, + Change = -10.8, + Index = 106 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-12-30", + Open = 305.6, + High = 373, + Low = 295.4, + Close = 356.8, + Volume = 492530059, + Change = 16.7, + Index = 107 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-01-10", + Open = 357.8, + High = 402.7, + Low = 326.7, + Close = 352.7, + Volume = 592103938, + Change = -1.4, + Index = 108 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-01-20", + Open = 351.2, + High = 371.9, + Low = 331.3, + Close = 332.1, + Volume = 532857144, + Change = -5.4, + Index = 109 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-01-31", + Open = 332.1, + High = 334.8, + Low = 264, + Close = 312.2, + Volume = 833589022, + Change = -6, + Index = 110 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-02-09", + Open = 311.7, + High = 315.9, + Low = 293.5, + Close = 310.7, + Volume = 456395505, + Change = -0.3, + Index = 111 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-02-18", + Open = 302.8, + High = 314.6, + Low = 279.2, + Close = 285.7, + Volume = 446153356, + Change = -5.7, + Index = 112 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-03-02", + Open = 278, + High = 296.6, + Low = 233.3, + Close = 293.3, + Volume = 638352514, + Change = 5.5, + Index = 113 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-03-11", + Open = 292.9, + High = 295.5, + Low = 260.7, + Close = 265.1, + Volume = 466566467, + Change = -9.5, + Index = 114 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-03-22", + Open = 260.2, + High = 332.6, + Low = 252, + Close = 331.3, + Volume = 576869668, + Change = 27.3, + Index = 115 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-03-31", + Open = 326.6, + High = 371.6, + Low = 325.5, + Close = 359.2, + Volume = 536607263, + Change = 10, + Index = 116 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-04-11", + Open = 360.4, + High = 384.3, + Low = 324.9, + Close = 325.3, + Volume = 499682510, + Change = -9.7, + Index = 117 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-04-21", + Open = 332.5, + High = 364.1, + Low = 324.4, + Close = 336.3, + Volume = 457210487, + Change = 1.1, + Index = 118 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-05-02", + Open = 338.3, + High = 345, + Low = 273.9, + Close = 301, + Volume = 639990965, + Change = -11, + Index = 119 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-05-11", + Open = 301.1, + High = 318.5, + Low = 242.4, + Close = 244.7, + Volume = 583211967, + Change = -18.7, + Index = 120 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-05-20", + Open = 233.7, + High = 262.4, + Low = 211, + Close = 221.3, + Volume = 721880082, + Change = -5.3, + Index = 121 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-06-01", + Open = 218.3, + High = 259.6, + Low = 206.9, + Close = 246.8, + Volume = 644596235, + Change = 13, + Index = 122 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-06-10", + Open = 244.2, + High = 264.2, + Low = 227.9, + Close = 232.2, + Volume = 633672873, + Change = -4.9, + Index = 123 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-06-22", + Open = 223.2, + High = 246.8, + Low = 208.7, + Close = 236.1, + Volume = 744240764, + Change = 5.8, + Index = 124 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-07-01", + Open = 237.9, + High = 252.1, + Low = 218.9, + Close = 227.3, + Volume = 631776422, + Change = -4.5, + Index = 125 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-07-13", + Open = 223, + High = 255, + Low = 216.2, + Close = 237, + Volume = 625812242, + Change = 6.3, + Index = 126 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-07-22", + Open = 234.9, + High = 280.8, + Low = 229.3, + Close = 272.2, + Volume = 646037224, + Change = 15.9, + Index = 127 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-08-02", + Open = 272.2, + High = 311.9, + Low = 256.3, + Close = 300.6, + Volume = 611660612, + Change = 10.4, + Index = 128 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-08-11", + Open = 305, + High = 313.6, + Low = 279.4, + Close = 286.6, + Volume = 616204291, + Change = -6, + Index = 129 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-08-22", + Open = 289.4, + High = 314.7, + Low = 285, + Close = 289.9, + Volume = 490658060, + Change = 0.2, + Index = 130 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-08-31", + Open = 291.5, + High = 303.6, + Low = 271.8, + Close = 275.6, + Volume = 376152572, + Change = -5.4, + Index = 131 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-09-12", + Open = 272.6, + High = 305.5, + Low = 265.7, + Close = 304.4, + Volume = 367924580, + Change = 11.7, + Index = 132 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-09-21", + Open = 292.9, + High = 313.8, + Low = 290.4, + Close = 300.8, + Volume = 477171180, + Change = 2.7, + Index = 133 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-09-30", + Open = 299.9, + High = 301.3, + Low = 262.5, + Close = 265.2, + Volume = 454307920, + Change = -11.5, + Index = 134 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-10-11", + Open = 254.5, + High = 257.5, + Low = 215, + Close = 216.5, + Volume = 593078170, + Change = -14.9, + Index = 135 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-10-20", + Open = 215.3, + High = 229.8, + Low = 202, + Close = 207.3, + Volume = 592158560, + Change = -3.7, + Index = 136 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-10-31", + Open = 206.4, + High = 233.8, + Low = 198.6, + Close = 227.5, + Volume = 550341050, + Change = 10.2, + Index = 137 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-11-09", + Open = 234, + High = 237.4, + Low = 177.1, + Close = 177.6, + Volume = 630702790, + Change = -24.1, + Index = 138 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-11-18", + Open = 189.9, + High = 200.8, + Low = 176.6, + Close = 180.2, + Volume = 637579480, + Change = -5.1, + Index = 139 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-11-30", + Open = 175.8, + High = 194.8, + Low = 166.2, + Close = 194.7, + Volume = 617126140, + Change = 10.7, + Index = 140 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-12-09", + Open = 197.1, + High = 198.9, + Low = 169.1, + Close = 179, + Volume = 625675690, + Change = -9.1, + Index = 141 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-12-20", + Open = 176.1, + High = 177.4, + Low = 137.7, + Close = 137.8, + Volume = 986660100, + Change = -21.7, + Index = 142 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-12-30", + Open = 139.3, + High = 141.3, + Low = 108.2, + Close = 123.2, + Volume = 1331911900, + Change = -11.6, + Index = 143 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-01-11", + Open = 118.5, + High = 126, + Low = 101.8, + Close = 123.2, + Volume = 1332426500, + Change = 4, + Index = 144 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-01-23", + Open = 122.6, + High = 145.4, + Low = 115.6, + Close = 143.8, + Volume = 1244541500, + Change = 17.3, + Index = 145 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-02-01", + Open = 143, + High = 183.8, + Low = 138.1, + Close = 181.4, + Volume = 1534337700, + Change = 26.9, + Index = 146 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-02-10", + Open = 187.3, + High = 214, + Low = 182.6, + Close = 196.9, + Volume = 1423167800, + Change = 5.1, + Index = 147 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-02-22", + Open = 194.4, + High = 217.6, + Low = 187.6, + Close = 200.9, + Volume = 1386211900, + Change = 3.3, + Index = 148 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-03-03", + Open = 203.9, + High = 211.2, + Low = 186, + Close = 197.8, + Volume = 1095786600, + Change = -3, + Index = 149 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-03-14", + Open = 198.5, + High = 198.6, + Low = 163.9, + Close = 183.3, + Volume = 1101144600, + Change = -7.7, + Index = 150 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-03-23", + Open = 180.8, + High = 200.7, + Low = 176, + Close = 192.2, + Volume = 978213300, + Change = 6.3, + Index = 151 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-04-03", + Open = 191.6, + High = 207.8, + Low = 185.4, + Close = 194.8, + Volume = 909718040, + Change = 1.6, + Index = 152 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-04-13", + Open = 197.3, + High = 198.7, + Low = 176.1, + Close = 185.9, + Volume = 905319000, + Change = -5.8, + Index = 153 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-04-24", + Open = 184, + High = 189.7, + Low = 158.6, + Close = 162.6, + Volume = 905416980, + Change = -11.6, + Index = 154 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-05-03", + Open = 159.8, + High = 165.5, + Low = 152.4, + Close = 160.6, + Volume = 881897100, + Change = 0.5, + Index = 155 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-05-12", + Open = 162.7, + High = 177.4, + Low = 159.6, + Close = 168, + Volume = 785510430, + Change = 3.2, + Index = 156 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-05-23", + Open = 167.7, + High = 193, + Low = 164.4, + Close = 185.8, + Volume = 864025390, + Change = 10.8, + Index = 157 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-06-02", + Open = 182.2, + High = 217.2, + Low = 178.2, + Close = 214, + Volume = 988496020, + Change = 17.4, + Index = 158 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-06-13", + Open = 217.8, + High = 259.7, + Low = 212.5, + Close = 258.7, + Volume = 1161622400, + Change = 18.8, + Index = 159 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-06-23", + Open = 260.2, + High = 277, + Low = 247.3, + Close = 256.6, + Volume = 1220407300, + Change = -1.4, + Index = 160 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-07-05", + Open = 250.1, + High = 284.2, + Low = 240.7, + Close = 282.5, + Volume = 999163700, + Change = 13, + Index = 161 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-07-14", + Open = 278.1, + High = 285.3, + Low = 265.1, + Close = 281.4, + Volume = 774400400, + Change = 1.2, + Index = 162 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-07-25", + Open = 286.6, + High = 299.3, + Low = 254.1, + Close = 265.3, + Volume = 973076400, + Change = -7.4, + Index = 163 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-08-03", + Open = 263.2, + High = 269.1, + Low = 250.5, + Close = 259.3, + Volume = 678809820, + Change = -1.5, + Index = 164 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-08-14", + Open = 261, + High = 264.8, + Low = 233.8, + Close = 239.8, + Volume = 716008860, + Change = -8.1, + Index = 165 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-08-23", + Open = 238.7, + High = 240.8, + Low = 212.4, + Close = 236.9, + Volume = 825055300, + Change = -0.8, + Index = 166 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-09-01", + Open = 238.7, + High = 261.2, + Low = 228.2, + Close = 245, + Volume = 811502630, + Change = 2.7, + Index = 167 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-09-13", + Open = 245, + High = 278.4, + Low = 243.3, + Close = 271.3, + Volume = 902643400, + Change = 10.7, + Index = 168 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-09-22", + Open = 271.3, + High = 279, + Low = 244.5, + Close = 244.9, + Volume = 816639600, + Change = -9.7, + Index = 169 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-10-03", + Open = 243.4, + High = 254.8, + Low = 234.6, + Close = 246.5, + Volume = 814604700, + Change = 1.3, + Index = 170 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-10-12", + Open = 248.1, + High = 268.9, + Low = 247.6, + Close = 258.9, + Volume = 806250900, + Change = 4.3, + Index = 171 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-10-23", + Open = 258.9, + High = 259.6, + Low = 202.5, + Close = 212.1, + Volume = 869390890, + Change = -18.1, + Index = 172 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-11-01", + Open = 216.5, + High = 222, + Low = 194.1, + Close = 205.7, + Volume = 811468170, + Change = -5, + Index = 173 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-11-10", + Open = 213, + High = 226.4, + Low = 205.7, + Close = 214.6, + Volume = 859763700, + Change = 0.8, + Index = 174 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-11-21", + Open = 215.6, + High = 246.7, + Low = 211.6, + Close = 241.2, + Volume = 959006600, + Change = 11.9, + Index = 175 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-12-01", + Open = 242, + High = 252.8, + Low = 231.4, + Close = 238.8, + Volume = 832910200, + Change = -1.3, + Index = 176 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-12-12", + Open = 235.8, + High = 246.7, + Low = 233.3, + Close = 237, + Volume = 772018400, + Change = 0.5, + Index = 177 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-12-21", + Open = 234.2, + High = 259.8, + Low = 228.2, + Close = 254.5, + Volume = 900893400, + Change = 8.7, + Index = 178 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-01-03", + Open = 256.8, + High = 265.1, + Low = 236.3, + Close = 238.4, + Volume = 727005170, + Change = -7.1, + Index = 179 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-01-12", + Open = 239.2, + High = 242.7, + Low = 217.2, + Close = 218.9, + Volume = 697536380, + Change = -8.5, + Index = 180 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-01-24", + Open = 215.1, + High = 223.5, + Low = 206.3, + Close = 207.8, + Volume = 777303400, + Change = -3.4, + Index = 181 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-02-02", + Open = 189.7, + High = 196.4, + Low = 180.1, + Close = 187.9, + Volume = 846092780, + Change = -0.9, + Index = 182 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-02-13", + Open = 184.3, + High = 194.7, + Low = 175, + Close = 184, + Volume = 718274070, + Change = -0.1, + Index = 183 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-02-23", + Open = 185.3, + High = 203.2, + Low = 183.4, + Close = 192, + Volume = 693352670, + Change = 3.6, + Index = 184 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-03-05", + Open = 192.3, + High = 205.6, + Low = 177.6, + Close = 180.7, + Volume = 742344460, + Change = -6, + Index = 185 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-03-14", + Open = 180, + High = 182.9, + Low = 160.5, + Close = 162.5, + Volume = 701227950, + Change = -9.7, + Index = 186 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-03-25", + Open = 163.2, + High = 178.2, + Low = 160.8, + Close = 172.6, + Volume = 589466660, + Change = 5.8, + Index = 187 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-04-04", + Open = 178.6, + High = 184.2, + Low = 163.3, + Close = 171.1, + Volume = 676969950, + Change = -4.2, + Index = 188 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-04-15", + Open = 169.1, + High = 179.2, + Low = 160.5, + Close = 161.5, + Volume = 694829970, + Change = -4.5, + Index = 189 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-04-24", + Open = 156.7, + High = 168, + Low = 138.8, + Close = 162.1, + Volume = 775433710, + Change = 3.4, + Index = 190 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-05-03", + Open = 159, + High = 198.9, + Low = 158.4, + Close = 181.2, + Volume = 864614000, + Change = 14, + Index = 191 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-05-14", + Open = 183.8, + High = 187.6, + Low = 167.8, + Close = 177.6, + Volume = 531409380, + Change = -3.4, + Index = 192 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-05-23", + Open = 179.9, + High = 186.9, + Low = 171.4, + Close = 173.7, + Volume = 554203970, + Change = -3.4, + Index = 193 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-06-04", + Open = 174.8, + High = 182.7, + Low = 173.2, + Close = 174.8, + Volume = 453828370, + Change = 0, + Index = 194 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-06-13", + Open = 175.4, + High = 191.1, + Low = 167.4, + Close = 182.5, + Volume = 509090870, + Change = 4.1, + Index = 195 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-06-25", + Open = 185.8, + High = 188.8, + Low = 176.9, + Close = 187.4, + Volume = 505399520, + Change = 0.8, + Index = 196 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-07-05", + Open = 186.5, + High = 252.4, + Low = 186.4, + Close = 251.5, + Volume = 925723660, + Change = 34.8, + Index = 197 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-07-16", + Open = 247.7, + High = 271, + Low = 233.1, + Close = 256.6, + Volume = 1097390000, + Change = 3.6, + Index = 198 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-07-25", + Open = 252.7, + High = 258.5, + Low = 214.7, + Close = 220.2, + Volume = 795590700, + Change = -12.9, + Index = 199 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-08-05", + Open = 221.2, + High = 234.7, + Low = 182, + Close = 198.9, + Volume = 658914080, + Change = -10.1, + Index = 200 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-08-14", + Open = 200.8, + High = 208.5, + Low = 191.5, + Close = 201.4, + Volume = 479168160, + Change = 0.3, + Index = 201 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-08-23", + Open = 205, + High = 228.2, + Low = 204.8, + Close = 220.3, + Volume = 560235700, + Change = 7.5, + Index = 202 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-09-04", + Open = 218.8, + High = 222.2, + Low = 202.6, + Close = 219.4, + Volume = 469284350, + Change = 0.3, + Index = 203 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-09-13", + Open = 223.5, + High = 235, + Low = 210.5, + Close = 230.3, + Volume = 592950440, + Change = 3, + Index = 204 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-09-24", + Open = 229.3, + High = 257.2, + Low = 223.5, + Close = 254.3, + Volume = 577086700, + Change = 10.9, + Index = 205 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-10-03", + Open = 252.5, + High = 264.9, + Low = 237.8, + Close = 240.7, + Volume = 546148740, + Change = -4.7, + Index = 206 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-10-14", + Open = 246.7, + High = 251, + Low = 213.7, + Close = 219.2, + Volume = 589440130, + Change = -11.2, + Index = 207 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-10-23", + Open = 220, + High = 224.3, + Low = 212.1, + Close = 213.6, + Volume = 384561880, + Change = -2.9, + Index = 208 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-11-01", + Open = 244.7, + High = 273.5, + Low = 242.6, + Close = 249, + Volume = 732392780, + Change = 1.8, + Index = 209 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-11-12", + Open = 244.6, + High = 358.6, + Low = 238.9, + Close = 328.5, + Volume = 991653160, + Change = 34.3, + Index = 210 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-11-21", + Open = 335.8, + High = 348.5, + Low = 309.2, + Close = 339.6, + Volume = 700324320, + Change = 1.1, + Index = 211 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-12-03", + Open = 341.1, + High = 361.9, + Low = 326.6, + Close = 351.4, + Volume = 478645220, + Change = 3, + Index = 212 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-12-12", + Open = 353, + High = 429.3, + Low = 348.6, + Close = 418.1, + Volume = 599082110, + Change = 18.4, + Index = 213 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-12-23", + Open = 420, + High = 481.5, + Low = 415.4, + Close = 430.6, + Volume = 807128120, + Change = 2.5, + Index = 214 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-01-03", + Open = 435.9, + High = 465.3, + Low = 373, + Close = 410.4, + Volume = 565769940, + Change = -5.8, + Index = 215 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-01-15", + Open = 423.2, + High = 429.8, + Low = 377.3, + Close = 428.2, + Volume = 530063170, + Change = 1.2, + Index = 216 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-01-27", + Open = 423.5, + High = 439.7, + Low = 389, + Close = 397.2, + Volume = 476854060, + Change = -6.2, + Index = 217 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-02-05", + Open = 396.9, + High = 420, + Low = 374.4, + Close = 378.2, + Volume = 507024510, + Change = -4.7, + Index = 218 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-02-14", + Open = 373, + High = 380.6, + Low = 325.1, + Close = 355.8, + Volume = 607376290, + Change = -4.6, + Index = 219 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-02-26", + Open = 355, + High = 367.3, + Low = 288, + Close = 290.8, + Volume = 549149490, + Change = -18.1, + Index = 220 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-03-07", + Open = 291.2, + High = 303.9, + Low = 250.7, + Close = 262.7, + Volume = 754567280, + Change = -9.8, + Index = 221 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-03-18", + Open = 252.5, + High = 253.4, + Low = 217, + Close = 225.3, + Volume = 944623000, + Change = -10.8, + Index = 222 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-03-27", + Open = 231.6, + High = 291.8, + Low = 229.2, + Close = 273.1, + Volume = 982018670, + Change = 17.9, + Index = 223 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-04-07", + Open = 275.6, + High = 285, + Low = 214.2, + Close = 233.3, + Volume = 1117950500, + Change = -15.3, + Index = 224 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-04-16", + Open = 245, + High = 274.7, + Low = 217.8, + Close = 241.6, + Volume = 993815820, + Change = -1.4, + Index = 225 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-04-28", + Open = 243.5, + High = 294.9, + Low = 222.8, + Close = 285.9, + Volume = 866169890, + Change = 17.4, + Index = 226 + }); + } +} diff --git a/samples/charts/data-chart/data-annotation-rect-layer/_Imports.razor b/samples/charts/data-chart/data-annotation-rect-layer/_Imports.razor new file mode 100644 index 0000000000..d27d337cb1 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-rect-layer/_Imports.razor @@ -0,0 +1,9 @@ +// these namespaces are global to the app +@using System.Net.Http +@using System.Net.Http.Json +@using Microsoft.AspNetCore.Components.Forms +@using Microsoft.AspNetCore.Components.Routing +@using Microsoft.AspNetCore.Components.Web +@using Microsoft.AspNetCore.Components.WebAssembly.Http +@using Microsoft.JSInterop +@using Infragistics.Samples diff --git a/samples/charts/data-chart/data-annotation-rect-layer/wwwroot/index.css b/samples/charts/data-chart/data-annotation-rect-layer/wwwroot/index.css new file mode 100644 index 0000000000..50ca13caa6 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-rect-layer/wwwroot/index.css @@ -0,0 +1,4 @@ +/* +CSS styles are loaded from the shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/data-chart/data-annotation-rect-layer/wwwroot/index.html b/samples/charts/data-chart/data-annotation-rect-layer/wwwroot/index.html new file mode 100644 index 0000000000..8833030d8e --- /dev/null +++ b/samples/charts/data-chart/data-annotation-rect-layer/wwwroot/index.html @@ -0,0 +1,30 @@ + + + + + + + + + + Samples | IgniteUI for Blazor | Infragistics + + + + + + + + + +
+ An unhandled error has occurred. + Reload + 🗙 +
+ + + + + + diff --git a/samples/charts/data-chart/data-annotation-slice-layer/AnnotationSliceEarningsBeatData.cs b/samples/charts/data-chart/data-annotation-slice-layer/AnnotationSliceEarningsBeatData.cs new file mode 100644 index 0000000000..f87a27faca --- /dev/null +++ b/samples/charts/data-chart/data-annotation-slice-layer/AnnotationSliceEarningsBeatData.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +public class AnnotationSliceEarningsBeatDataItem +{ + public double Value { get; set; } + public string Label { get; set; } +} + +public class AnnotationSliceEarningsBeatData + : List +{ + public AnnotationSliceEarningsBeatData() + { + this.Add(new AnnotationSliceEarningsBeatDataItem() + { + Value = 155, + Label = @"Earnings Beat" + }); + this.Add(new AnnotationSliceEarningsBeatDataItem() + { + Value = 86, + Label = @"Earnings Beat" + }); + this.Add(new AnnotationSliceEarningsBeatDataItem() + { + Value = 28, + Label = @"Earnings Miss" + }); + } +} diff --git a/samples/charts/data-chart/data-annotation-slice-layer/AnnotationSliceEarningsMissData.cs b/samples/charts/data-chart/data-annotation-slice-layer/AnnotationSliceEarningsMissData.cs new file mode 100644 index 0000000000..e08f7353d8 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-slice-layer/AnnotationSliceEarningsMissData.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +public class AnnotationSliceEarningsMissDataItem +{ + public double Value { get; set; } + public string Label { get; set; } +} + +public class AnnotationSliceEarningsMissData + : List +{ + public AnnotationSliceEarningsMissData() + { + this.Add(new AnnotationSliceEarningsMissDataItem() + { + Value = 9, + Label = @"Earnings Miss" + }); + this.Add(new AnnotationSliceEarningsMissDataItem() + { + Value = 179, + Label = @"Earnings Miss" + }); + this.Add(new AnnotationSliceEarningsMissDataItem() + { + Value = 215, + Label = @"Earnings Miss" + }); + } +} diff --git a/samples/charts/data-chart/data-annotation-slice-layer/AnnotationSliceStockSplitData.cs b/samples/charts/data-chart/data-annotation-slice-layer/AnnotationSliceStockSplitData.cs new file mode 100644 index 0000000000..878d6a47b1 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-slice-layer/AnnotationSliceStockSplitData.cs @@ -0,0 +1,25 @@ +using System; +using System.Collections.Generic; +public class AnnotationSliceStockSplitDataItem +{ + public double Value { get; set; } + public string Label { get; set; } +} + +public class AnnotationSliceStockSplitData + : List +{ + public AnnotationSliceStockSplitData() + { + this.Add(new AnnotationSliceStockSplitDataItem() + { + Value = 126, + Label = @"Stock Split 3-1" + }); + this.Add(new AnnotationSliceStockSplitDataItem() + { + Value = 61, + Label = @"Stock Split 5-1" + }); + } +} diff --git a/samples/charts/data-chart/data-annotation-slice-layer/App.razor b/samples/charts/data-chart/data-annotation-slice-layer/App.razor new file mode 100644 index 0000000000..0f312f14a4 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-slice-layer/App.razor @@ -0,0 +1,240 @@ +@using IgniteUI.Blazor.Controls + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ +@code { + + private Action BindElements { get; set; } + + protected override async Task OnAfterRenderAsync(bool firstRender) + { + var chart = this.chart; + var xAxisBottom = this.xAxisBottom; + var xAxisTop = this.xAxisTop; + var yAxisLeft = this.yAxisLeft; + var yAxisRight = this.yAxisRight; + var series1 = this.series1; + var tooltip = this.tooltip; + var sliceLayerStockSplit = this.sliceLayerStockSplit; + var sliceLayerEarningsMissAnnotations = this.sliceLayerEarningsMissAnnotations; + var sliceLayerEarningsBeatAnnotations = this.sliceLayerEarningsBeatAnnotations; + + this.BindElements = () => { + sliceLayerStockSplit.TargetAxis = this.xAxisBottom; + sliceLayerEarningsMissAnnotations.TargetAxis = this.xAxisBottom; + sliceLayerEarningsBeatAnnotations.TargetAxis = this.xAxisBottom; + }; + this.BindElements(); + + } + + private IgbDataChart chart; + private IgbCategoryXAxis xAxisBottom; + private IgbCategoryXAxis xAxisTop; + private IgbNumericYAxis yAxisLeft; + private IgbNumericYAxis yAxisRight; + private IgbFinancialPriceSeries series1; + private IgbDataToolTipLayer tooltip; + private IgbDataAnnotationSliceLayer sliceLayerStockSplit; + private IgbDataAnnotationSliceLayer sliceLayerEarningsMissAnnotations; + private IgbDataAnnotationSliceLayer sliceLayerEarningsBeatAnnotations; + + private StockTesla _stockTesla = null; + public StockTesla StockTesla + { + get + { + if (_stockTesla == null) + { + _stockTesla = new StockTesla(); + } + return _stockTesla; + } + } + + private AnnotationSliceStockSplitData _annotationSliceStockSplitData = null; + public AnnotationSliceStockSplitData AnnotationSliceStockSplitData + { + get + { + if (_annotationSliceStockSplitData == null) + { + _annotationSliceStockSplitData = new AnnotationSliceStockSplitData(); + } + return _annotationSliceStockSplitData; + } + } + + private AnnotationSliceEarningsMissData _annotationSliceEarningsMissData = null; + public AnnotationSliceEarningsMissData AnnotationSliceEarningsMissData + { + get + { + if (_annotationSliceEarningsMissData == null) + { + _annotationSliceEarningsMissData = new AnnotationSliceEarningsMissData(); + } + return _annotationSliceEarningsMissData; + } + } + + private AnnotationSliceEarningsBeatData _annotationSliceEarningsBeatData = null; + public AnnotationSliceEarningsBeatData AnnotationSliceEarningsBeatData + { + get + { + if (_annotationSliceEarningsBeatData == null) + { + _annotationSliceEarningsBeatData = new AnnotationSliceEarningsBeatData(); + } + return _annotationSliceEarningsBeatData; + } + } + +} \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-slice-layer/BlazorClientApp.csproj b/samples/charts/data-chart/data-annotation-slice-layer/BlazorClientApp.csproj new file mode 100644 index 0000000000..ed10c7849c --- /dev/null +++ b/samples/charts/data-chart/data-annotation-slice-layer/BlazorClientApp.csproj @@ -0,0 +1,21 @@ + + + + net9.0 + 3.0 + Infragistics.Samples + Infragistics.Samples + + + + 1701;1702,IDE0028,BL0005,0219,CS1998 + + + + + + + + + + diff --git a/samples/charts/data-chart/data-annotation-slice-layer/BlazorClientApp.sln b/samples/charts/data-chart/data-annotation-slice-layer/BlazorClientApp.sln new file mode 100644 index 0000000000..1e2eda208a --- /dev/null +++ b/samples/charts/data-chart/data-annotation-slice-layer/BlazorClientApp.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BlazorClientApp", "BlazorClientApp.csproj", "{F69CC3F0-BCD1-4CE6-9F39-CBED14E7FA78}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {F69CC3F0-BCD1-4CE6-9F39-CBED14E7FA78}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F69CC3F0-BCD1-4CE6-9F39-CBED14E7FA78}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F69CC3F0-BCD1-4CE6-9F39-CBED14E7FA78}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F69CC3F0-BCD1-4CE6-9F39-CBED14E7FA78}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {FC52AAC8-4488-40AE-9621-75F6BA744B18} + EndGlobalSection +EndGlobal diff --git a/samples/charts/data-chart/data-annotation-slice-layer/Program.cs b/samples/charts/data-chart/data-annotation-slice-layer/Program.cs new file mode 100644 index 0000000000..d8d3a1bf90 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-slice-layer/Program.cs @@ -0,0 +1,38 @@ +using System; +using System.Net.Http; +using System.Collections.Generic; +using System.Threading.Tasks; +using System.Text; +using Microsoft.AspNetCore.Components.WebAssembly.Hosting; +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.Logging; +using IgniteUI.Blazor.Controls; // for registering Ignite UI modules + +namespace Infragistics.Samples +{ + public class Program + { + public static async Task Main(string[] args) + { + var builder = WebAssemblyHostBuilder.CreateDefault(args); + builder.RootComponents.Add("app"); + builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) }); + // registering Ignite UI modules + builder.Services.AddIgniteUIBlazor( + typeof(IgbDataChartCoreModule), + typeof(IgbDataChartCategoryModule), + typeof(IgbDataChartCategoryCoreModule), + typeof(IgbDataChartFinancialCoreModule), + typeof(IgbDataChartFinancialModule), + typeof(IgbDataChartFinancialOverlaysModule), + typeof(IgbDataChartInteractivityModule), + typeof(IgbDataChartAnnotationModule), + typeof(IgbDataAnnotationSliceLayerModule), + typeof(IgbNumberAbbreviatorModule), + typeof(IgbAnnotationLayerProxyModule) + ); + await builder.Build().RunAsync(); + } + } +} diff --git a/samples/charts/data-chart/data-annotation-slice-layer/Properties/launchSettings.json b/samples/charts/data-chart/data-annotation-slice-layer/Properties/launchSettings.json new file mode 100644 index 0000000000..18bd6fb5bc --- /dev/null +++ b/samples/charts/data-chart/data-annotation-slice-layer/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:4200", + "sslPort": 44385 + } + }, + "profiles": { + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "BlazorSamples": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:4200" + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-slice-layer/StockTesla.cs b/samples/charts/data-chart/data-annotation-slice-layer/StockTesla.cs new file mode 100644 index 0000000000..9b2caebc66 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-slice-layer/StockTesla.cs @@ -0,0 +1,2518 @@ +using System; +using System.Collections.Generic; +public class StockTeslaItem +{ + public string Date { get; set; } + public double Open { get; set; } + public double High { get; set; } + public double Low { get; set; } + public double Close { get; set; } + public double Volume { get; set; } + public double Change { get; set; } + public double Index { get; set; } +} + +public class StockTesla + : List +{ + public StockTesla() + { + this.Add(new StockTeslaItem() + { + Date = @"2019-01-10", + Open = 20.4, + High = 23, + Low = 19.8, + Close = 23, + Volume = 779333701, + Change = 12.7, + Index = 0 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-01-22", + Open = 22.8, + High = 23.5, + Low = 19.7, + Close = 19.9, + Volume = 911781100, + Change = -12.6, + Index = 1 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-01-31", + Open = 19.5, + High = 20.8, + Low = 18.6, + Close = 20.5, + Volume = 926375717, + Change = 5, + Index = 2 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-02-11", + Open = 20.4, + High = 21.6, + Low = 19.9, + Close = 20.9, + Volume = 687520471, + Change = 2.4, + Index = 3 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-02-21", + Open = 21.1, + High = 21.2, + Low = 19.4, + Close = 19.4, + Volume = 597552272, + Change = -7.9, + Index = 4 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-03-04", + Open = 19.6, + High = 21.3, + Low = 18.9, + Close = 19, + Volume = 1218669201, + Change = -3.1, + Index = 5 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-03-13", + Open = 18.8, + High = 19.5, + Low = 18, + Close = 19.3, + Volume = 1034156904, + Change = 2.5, + Index = 6 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-03-22", + Open = 19.5, + High = 19.7, + Low = 17.6, + Close = 17.6, + Volume = 980694095, + Change = -9.5, + Index = 7 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-04-02", + Open = 17.3, + High = 19.3, + Low = 17, + Close = 19.1, + Volume = 788473494, + Change = 10.1, + Index = 8 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-04-11", + Open = 19.2, + High = 19.7, + Low = 17.4, + Close = 17.9, + Volume = 1165555442, + Change = -6.6, + Index = 9 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-04-23", + Open = 18, + High = 18.3, + Low = 17, + Close = 17.6, + Volume = 870373200, + Change = -2.3, + Index = 10 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-05-02", + Open = 17.6, + High = 17.7, + Low = 15.4, + Close = 16.3, + Volume = 1629432326, + Change = -7.5, + Index = 11 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-05-13", + Open = 16.3, + High = 17.2, + Low = 15, + Close = 15.1, + Volume = 1131045605, + Change = -6.9, + Index = 12 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-05-22", + Open = 15.3, + High = 15.6, + Low = 12.8, + Close = 12.8, + Volume = 1455503588, + Change = -15.9, + Index = 13 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-06-03", + Open = 13, + High = 13.3, + Low = 11.8, + Close = 11.9, + Volume = 1415442268, + Change = -7.9, + Index = 14 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-06-12", + Open = 12.1, + High = 14.9, + Low = 12, + Close = 14, + Volume = 1515000443, + Change = 15.6, + Index = 15 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-06-21", + Open = 14, + High = 15.6, + Low = 13.8, + Close = 14.8, + Volume = 1009123371, + Change = 5.5, + Index = 16 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-07-02", + Open = 14.9, + High = 15.5, + Low = 14.5, + Close = 15, + Volume = 766921642, + Change = 0.6, + Index = 17 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-07-12", + Open = 16, + High = 16.4, + Low = 15.2, + Close = 16.3, + Volume = 887983836, + Change = 2.4, + Index = 18 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-07-23", + Open = 16.5, + High = 17.5, + Low = 16.3, + Close = 17.3, + Volume = 788941000, + Change = 4.9, + Index = 19 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-08-01", + Open = 17.3, + High = 17.7, + Low = 14.8, + Close = 15.6, + Volume = 1175082297, + Change = -9.8, + Index = 20 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-08-12", + Open = 15.4, + High = 16, + Low = 15, + Close = 15.3, + Volume = 560129569, + Change = -1, + Index = 21 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-08-21", + Open = 15.3, + High = 15.7, + Low = 14.1, + Close = 14.7, + Volume = 677293701, + Change = -3.5, + Index = 22 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-08-30", + Open = 14.9, + High = 15.5, + Low = 14.1, + Close = 15, + Volume = 650239370, + Change = 1.3, + Index = 23 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-09-11", + Open = 14.9, + High = 16.5, + Low = 14.6, + Close = 16.5, + Volume = 636766167, + Change = 10.3, + Index = 24 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-09-20", + Open = 16.5, + High = 16.9, + Low = 15.9, + Close = 16, + Volume = 572802643, + Change = -2.9, + Index = 25 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-10-01", + Open = 16, + High = 16.6, + Low = 14.6, + Close = 16.3, + Volume = 931821239, + Change = 2, + Index = 26 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-10-10", + Open = 16.2, + High = 16.6, + Low = 15, + Close = 16.3, + Volume = 891798049, + Change = 0.6, + Index = 27 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-10-21", + Open = 16.5, + High = 17.7, + Low = 16.5, + Close = 16.9, + Volume = 713093463, + Change = 2.6, + Index = 28 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-10-30", + Open = 17, + High = 22.7, + Low = 16.7, + Close = 21, + Volume = 1752943598, + Change = 23.9, + Index = 29 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-11-08", + Open = 20.9, + High = 22.8, + Low = 20.6, + Close = 22.5, + Volume = 834957256, + Change = 7.7, + Index = 30 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-11-19", + Open = 22.9, + High = 24, + Low = 22.8, + Close = 24, + Volume = 738746390, + Change = 4.5, + Index = 31 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-11-29", + Open = 24, + High = 24.1, + Low = 21.8, + Close = 22, + Volume = 870685288, + Change = -8.4, + Index = 32 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-12-10", + Open = 22, + High = 23.4, + Low = 21.8, + Close = 23.3, + Volume = 712016613, + Change = 5.9, + Index = 33 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-12-19", + Open = 23.5, + High = 27.1, + Low = 23.4, + Close = 26.9, + Volume = 1203765433, + Change = 14.8, + Index = 34 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-12-31", + Open = 27.4, + High = 29, + Low = 26.7, + Close = 27.9, + Volume = 1195073357, + Change = 2, + Index = 35 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-01-10", + Open = 28.3, + High = 33.3, + Low = 28.1, + Close = 31.9, + Volume = 1925386078, + Change = 12.6, + Index = 36 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-01-22", + Open = 32.9, + High = 39.6, + Low = 32.8, + Close = 38, + Volume = 2364043518, + Change = 15.4, + Index = 37 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-01-31", + Open = 37.6, + High = 43.5, + Low = 36, + Close = 43.4, + Volume = 1835141382, + Change = 15.3, + Index = 38 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-02-11", + Open = 44.9, + High = 64.6, + Low = 44.9, + Close = 51.6, + Volume = 3748903126, + Change = 14.9, + Index = 39 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-02-21", + Open = 51.9, + High = 63, + Low = 49, + Close = 60.1, + Volume = 1921517039, + Change = 15.8, + Index = 40 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-03-03", + Open = 55.9, + High = 57.6, + Low = 40.8, + Close = 49.7, + Volume = 2121850940, + Change = -11.1, + Index = 41 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-03-12", + Open = 50.9, + High = 51.1, + Low = 36.4, + Close = 37.4, + Volume = 1553329923, + Change = -26.6, + Index = 42 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-03-23", + Open = 39.7, + High = 40.5, + Low = 23.4, + Close = 29, + Volume = 2487688157, + Change = -27, + Index = 43 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-04-01", + Open = 31.8, + High = 37.3, + Low = 31.6, + Close = 32.1, + Volume = 1785601357, + Change = 0.9, + Index = 44 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-04-13", + Open = 32.1, + High = 43.5, + Low = 29.8, + Close = 43.4, + Volume = 1860352620, + Change = 35.3, + Index = 45 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-04-22", + Open = 46.6, + High = 51.7, + Low = 44.9, + Close = 48.8, + Volume = 2056797321, + Change = 4.7, + Index = 46 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-05-01", + Open = 48.5, + High = 58, + Low = 45.5, + Close = 46.8, + Volume = 2093959203, + Change = -3.6, + Index = 47 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-05-12", + Open = 46.7, + High = 56.2, + Low = 46.5, + Close = 54, + Volume = 1611543246, + Change = 15.5, + Index = 48 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-05-21", + Open = 54.7, + High = 55.6, + Low = 50.9, + Close = 55.2, + Volume = 1262468113, + Change = 0.8, + Index = 49 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-06-02", + Open = 54.8, + High = 60.6, + Low = 52.3, + Close = 58.8, + Volume = 1160487993, + Change = 7.2, + Index = 50 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-06-11", + Open = 59.2, + High = 68.5, + Low = 57.2, + Close = 64.9, + Volume = 1270377400, + Change = 9.5, + Index = 51 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-06-22", + Open = 65.3, + High = 67.9, + Low = 60.6, + Close = 66.3, + Volume = 1217946366, + Change = 1.5, + Index = 52 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-07-01", + Open = 66.6, + High = 75.7, + Low = 62.5, + Close = 74.6, + Volume = 1120591270, + Change = 12.1, + Index = 53 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-07-13", + Open = 81.4, + High = 119.7, + Low = 79, + Close = 99.8, + Volume = 2244920779, + Change = 22.6, + Index = 54 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-07-22", + Open = 103.7, + High = 111.7, + Low = 95.4, + Close = 106.2, + Volume = 1662846099, + Change = 2.3, + Index = 55 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-07-31", + Open = 111.9, + High = 112.6, + Low = 91.1, + Close = 95.4, + Volume = 1573159944, + Change = -14.8, + Index = 56 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-08-11", + Open = 96.6, + High = 101.8, + Low = 91, + Close = 91.6, + Volume = 798587331, + Change = -5.2, + Index = 57 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-08-20", + Open = 98, + High = 134.8, + Low = 95.7, + Close = 133.5, + Volume = 1866534416, + Change = 36.2, + Index = 58 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-08-31", + Open = 136.3, + High = 166.7, + Low = 128.5, + Close = 166.1, + Volume = 2008507459, + Change = 21.9, + Index = 59 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-09-10", + Open = 167.4, + High = 167.5, + Low = 110, + Close = 123.8, + Volume = 1992227059, + Change = -26, + Index = 60 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-09-21", + Open = 127.3, + High = 154, + Low = 120.2, + Close = 149.8, + Volume = 1758737696, + Change = 17.7, + Index = 61 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-09-30", + Open = 143.2, + High = 145.9, + Low = 117.1, + Close = 143, + Volume = 1459893236, + Change = -0.1, + Index = 62 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-10-09", + Open = 146.9, + High = 149.6, + Low = 135.4, + Close = 144.7, + Volume = 985545158, + Change = -1.5, + Index = 63 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-10-20", + Open = 147.3, + High = 155.3, + Low = 139.7, + Close = 140.6, + Volume = 773077727, + Change = -4.5, + Index = 64 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-10-29", + Open = 140.9, + High = 148.4, + Low = 135.3, + Close = 136.9, + Volume = 615339122, + Change = -2.8, + Index = 65 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-11-09", + Open = 135.6, + High = 150.8, + Low = 126.4, + Close = 140.4, + Volume = 669171368, + Change = 3.5, + Index = 66 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-11-18", + Open = 140, + High = 165.3, + Low = 132, + Close = 162.2, + Volume = 760451265, + Change = 15.8, + Index = 67 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-11-30", + Open = 164, + High = 202.6, + Low = 162.5, + Close = 189.2, + Volume = 1046371155, + Change = 15.4, + Index = 68 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-12-09", + Open = 199.2, + High = 218.1, + Low = 180.4, + Close = 201.5, + Volume = 1055933265, + Change = 1.2, + Index = 69 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-12-18", + Open = 191.5, + High = 231.7, + Low = 188.8, + Close = 231.7, + Volume = 1593943601, + Change = 21, + Index = 70 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-12-30", + Open = 222.1, + High = 232.2, + Low = 204.7, + Close = 231.6, + Volume = 791942570, + Change = 4.3, + Index = 71 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-01-11", + Open = 233.3, + High = 294.8, + Low = 230.4, + Close = 270.4, + Volume = 1084025779, + Change = 15.9, + Index = 72 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-01-21", + Open = 277, + High = 289.3, + Low = 273, + Close = 281.7, + Volume = 663774487, + Change = 1.7, + Index = 73 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-02-01", + Open = 278.1, + High = 300.1, + Low = 260, + Close = 279.9, + Volume = 595397009, + Change = 0.7, + Index = 74 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-02-10", + Open = 281.6, + High = 293.5, + Low = 266.7, + Close = 268.3, + Volume = 445813486, + Change = -4.7, + Index = 75 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-02-22", + Open = 270.8, + High = 276.6, + Low = 236.7, + Close = 238.2, + Volume = 496372009, + Change = -12.1, + Index = 76 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-03-03", + Open = 220.7, + High = 290.7, + Low = 206.3, + Close = 217.7, + Volume = 793689739, + Change = -1.3, + Index = 77 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-03-12", + Open = 218.6, + High = 291.3, + Low = 179.8, + Close = 231.2, + Volume = 1215209162, + Change = 5.8, + Index = 78 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-03-23", + Open = 231.4, + High = 237.7, + Low = 208.2, + Close = 220.7, + Volume = 744776145, + Change = -4.6, + Index = 79 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-04-01", + Open = 222.6, + High = 230.8, + Low = 197, + Close = 220.6, + Volume = 730733684, + Change = -0.9, + Index = 80 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-04-13", + Open = 235.9, + High = 254.3, + Low = 222.6, + Close = 254.1, + Volume = 646721884, + Change = 7.7, + Index = 81 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-04-22", + Open = 256.9, + High = 260.3, + Low = 230.6, + Close = 239.9, + Volume = 740840774, + Change = -6.6, + Index = 82 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-05-03", + Open = 239.9, + High = 249.8, + Low = 222, + Close = 228.3, + Volume = 623423313, + Change = -4.8, + Index = 83 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-05-12", + Open = 226.3, + High = 230, + Low = 195.6, + Close = 196.6, + Volume = 643844974, + Change = -13.1, + Index = 84 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-05-21", + Open = 200.5, + High = 202.2, + Low = 182.3, + Close = 193.6, + Volume = 729192883, + Change = -3.4, + Index = 85 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-06-02", + Open = 193.9, + High = 211.9, + Low = 191.2, + Close = 201.7, + Volume = 545095944, + Change = 4, + Index = 86 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-06-11", + Open = 200.6, + High = 207.7, + Low = 190.4, + Close = 203.3, + Volume = 478366128, + Change = 1.3, + Index = 87 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-06-22", + Open = 204.1, + High = 210.5, + Low = 197.8, + Close = 207.9, + Volume = 454698495, + Change = 1.9, + Index = 88 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-07-01", + Open = 210.7, + High = 232.5, + Low = 210, + Close = 226, + Volume = 558441596, + Change = 7.3, + Index = 89 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-07-13", + Open = 226.3, + High = 233.3, + Low = 206.8, + Close = 222.8, + Volume = 470942387, + Change = -1.5, + Index = 90 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-07-22", + Open = 223.6, + High = 226.2, + Low = 207.1, + Close = 216.4, + Volume = 372195097, + Change = -3.2, + Index = 91 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-08-02", + Open = 215.5, + High = 242.3, + Low = 209.1, + Close = 236.6, + Volume = 547284685, + Change = 9.8, + Index = 92 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-08-11", + Open = 239.7, + High = 241.6, + Low = 232.5, + Close = 235.9, + Volume = 315341455, + Change = -1.6, + Index = 93 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-08-20", + Open = 235.4, + High = 243.3, + Low = 216.3, + Close = 226.8, + Volume = 392227478, + Change = -3.7, + Index = 94 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-08-31", + Open = 228.5, + High = 246.8, + Low = 226.9, + Close = 245.2, + Volume = 337503634, + Change = 7.3, + Index = 95 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-09-10", + Open = 244.7, + High = 254.8, + Low = 241.4, + Close = 245.4, + Volume = 328100734, + Change = 0.3, + Index = 96 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-09-21", + Open = 246.7, + High = 253.7, + Low = 236.3, + Close = 246.5, + Volume = 420153012, + Change = -0.1, + Index = 97 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-09-30", + Open = 247.8, + High = 266.3, + Low = 246.4, + Close = 258.5, + Volume = 422393262, + Change = 4.3, + Index = 98 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-10-11", + Open = 259.5, + High = 269, + Low = 254.5, + Close = 264, + Volume = 392144589, + Change = 1.7, + Index = 99 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-10-20", + Open = 267, + High = 292.6, + Low = 265.5, + Close = 288.6, + Volume = 368796877, + Change = 8.1, + Index = 100 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-10-29", + Open = 285.3, + High = 371.7, + Low = 285.2, + Close = 371.3, + Volume = 825862313, + Change = 30.1, + Index = 101 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-11-09", + Open = 381.7, + High = 414.5, + Low = 337.2, + Close = 341.2, + Volume = 818978542, + Change = -10.6, + Index = 102 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-11-18", + Open = 336.8, + High = 373.2, + Low = 326.2, + Close = 365.5, + Volume = 613304311, + Change = 8.5, + Index = 103 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-11-30", + Open = 366.3, + High = 400.6, + Low = 354, + Close = 381.6, + Volume = 515052382, + Change = 4.2, + Index = 104 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-12-09", + Open = 386.9, + High = 390.9, + Low = 316.8, + Close = 334.6, + Volume = 473333567, + Change = -13.5, + Index = 105 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-12-20", + Open = 336.2, + High = 340.3, + Low = 297.8, + Close = 300, + Volume = 524367113, + Change = -10.8, + Index = 106 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-12-30", + Open = 305.6, + High = 373, + Low = 295.4, + Close = 356.8, + Volume = 492530059, + Change = 16.7, + Index = 107 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-01-10", + Open = 357.8, + High = 402.7, + Low = 326.7, + Close = 352.7, + Volume = 592103938, + Change = -1.4, + Index = 108 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-01-20", + Open = 351.2, + High = 371.9, + Low = 331.3, + Close = 332.1, + Volume = 532857144, + Change = -5.4, + Index = 109 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-01-31", + Open = 332.1, + High = 334.8, + Low = 264, + Close = 312.2, + Volume = 833589022, + Change = -6, + Index = 110 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-02-09", + Open = 311.7, + High = 315.9, + Low = 293.5, + Close = 310.7, + Volume = 456395505, + Change = -0.3, + Index = 111 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-02-18", + Open = 302.8, + High = 314.6, + Low = 279.2, + Close = 285.7, + Volume = 446153356, + Change = -5.7, + Index = 112 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-03-02", + Open = 278, + High = 296.6, + Low = 233.3, + Close = 293.3, + Volume = 638352514, + Change = 5.5, + Index = 113 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-03-11", + Open = 292.9, + High = 295.5, + Low = 260.7, + Close = 265.1, + Volume = 466566467, + Change = -9.5, + Index = 114 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-03-22", + Open = 260.2, + High = 332.6, + Low = 252, + Close = 331.3, + Volume = 576869668, + Change = 27.3, + Index = 115 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-03-31", + Open = 326.6, + High = 371.6, + Low = 325.5, + Close = 359.2, + Volume = 536607263, + Change = 10, + Index = 116 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-04-11", + Open = 360.4, + High = 384.3, + Low = 324.9, + Close = 325.3, + Volume = 499682510, + Change = -9.7, + Index = 117 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-04-21", + Open = 332.5, + High = 364.1, + Low = 324.4, + Close = 336.3, + Volume = 457210487, + Change = 1.1, + Index = 118 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-05-02", + Open = 338.3, + High = 345, + Low = 273.9, + Close = 301, + Volume = 639990965, + Change = -11, + Index = 119 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-05-11", + Open = 301.1, + High = 318.5, + Low = 242.4, + Close = 244.7, + Volume = 583211967, + Change = -18.7, + Index = 120 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-05-20", + Open = 233.7, + High = 262.4, + Low = 211, + Close = 221.3, + Volume = 721880082, + Change = -5.3, + Index = 121 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-06-01", + Open = 218.3, + High = 259.6, + Low = 206.9, + Close = 246.8, + Volume = 644596235, + Change = 13, + Index = 122 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-06-10", + Open = 244.2, + High = 264.2, + Low = 227.9, + Close = 232.2, + Volume = 633672873, + Change = -4.9, + Index = 123 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-06-22", + Open = 223.2, + High = 246.8, + Low = 208.7, + Close = 236.1, + Volume = 744240764, + Change = 5.8, + Index = 124 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-07-01", + Open = 237.9, + High = 252.1, + Low = 218.9, + Close = 227.3, + Volume = 631776422, + Change = -4.5, + Index = 125 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-07-13", + Open = 223, + High = 255, + Low = 216.2, + Close = 237, + Volume = 625812242, + Change = 6.3, + Index = 126 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-07-22", + Open = 234.9, + High = 280.8, + Low = 229.3, + Close = 272.2, + Volume = 646037224, + Change = 15.9, + Index = 127 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-08-02", + Open = 272.2, + High = 311.9, + Low = 256.3, + Close = 300.6, + Volume = 611660612, + Change = 10.4, + Index = 128 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-08-11", + Open = 305, + High = 313.6, + Low = 279.4, + Close = 286.6, + Volume = 616204291, + Change = -6, + Index = 129 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-08-22", + Open = 289.4, + High = 314.7, + Low = 285, + Close = 289.9, + Volume = 490658060, + Change = 0.2, + Index = 130 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-08-31", + Open = 291.5, + High = 303.6, + Low = 271.8, + Close = 275.6, + Volume = 376152572, + Change = -5.4, + Index = 131 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-09-12", + Open = 272.6, + High = 305.5, + Low = 265.7, + Close = 304.4, + Volume = 367924580, + Change = 11.7, + Index = 132 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-09-21", + Open = 292.9, + High = 313.8, + Low = 290.4, + Close = 300.8, + Volume = 477171180, + Change = 2.7, + Index = 133 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-09-30", + Open = 299.9, + High = 301.3, + Low = 262.5, + Close = 265.2, + Volume = 454307920, + Change = -11.5, + Index = 134 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-10-11", + Open = 254.5, + High = 257.5, + Low = 215, + Close = 216.5, + Volume = 593078170, + Change = -14.9, + Index = 135 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-10-20", + Open = 215.3, + High = 229.8, + Low = 202, + Close = 207.3, + Volume = 592158560, + Change = -3.7, + Index = 136 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-10-31", + Open = 206.4, + High = 233.8, + Low = 198.6, + Close = 227.5, + Volume = 550341050, + Change = 10.2, + Index = 137 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-11-09", + Open = 234, + High = 237.4, + Low = 177.1, + Close = 177.6, + Volume = 630702790, + Change = -24.1, + Index = 138 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-11-18", + Open = 189.9, + High = 200.8, + Low = 176.6, + Close = 180.2, + Volume = 637579480, + Change = -5.1, + Index = 139 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-11-30", + Open = 175.8, + High = 194.8, + Low = 166.2, + Close = 194.7, + Volume = 617126140, + Change = 10.7, + Index = 140 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-12-09", + Open = 197.1, + High = 198.9, + Low = 169.1, + Close = 179, + Volume = 625675690, + Change = -9.1, + Index = 141 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-12-20", + Open = 176.1, + High = 177.4, + Low = 137.7, + Close = 137.8, + Volume = 986660100, + Change = -21.7, + Index = 142 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-12-30", + Open = 139.3, + High = 141.3, + Low = 108.2, + Close = 123.2, + Volume = 1331911900, + Change = -11.6, + Index = 143 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-01-11", + Open = 118.5, + High = 126, + Low = 101.8, + Close = 123.2, + Volume = 1332426500, + Change = 4, + Index = 144 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-01-23", + Open = 122.6, + High = 145.4, + Low = 115.6, + Close = 143.8, + Volume = 1244541500, + Change = 17.3, + Index = 145 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-02-01", + Open = 143, + High = 183.8, + Low = 138.1, + Close = 181.4, + Volume = 1534337700, + Change = 26.9, + Index = 146 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-02-10", + Open = 187.3, + High = 214, + Low = 182.6, + Close = 196.9, + Volume = 1423167800, + Change = 5.1, + Index = 147 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-02-22", + Open = 194.4, + High = 217.6, + Low = 187.6, + Close = 200.9, + Volume = 1386211900, + Change = 3.3, + Index = 148 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-03-03", + Open = 203.9, + High = 211.2, + Low = 186, + Close = 197.8, + Volume = 1095786600, + Change = -3, + Index = 149 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-03-14", + Open = 198.5, + High = 198.6, + Low = 163.9, + Close = 183.3, + Volume = 1101144600, + Change = -7.7, + Index = 150 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-03-23", + Open = 180.8, + High = 200.7, + Low = 176, + Close = 192.2, + Volume = 978213300, + Change = 6.3, + Index = 151 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-04-03", + Open = 191.6, + High = 207.8, + Low = 185.4, + Close = 194.8, + Volume = 909718040, + Change = 1.6, + Index = 152 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-04-13", + Open = 197.3, + High = 198.7, + Low = 176.1, + Close = 185.9, + Volume = 905319000, + Change = -5.8, + Index = 153 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-04-24", + Open = 184, + High = 189.7, + Low = 158.6, + Close = 162.6, + Volume = 905416980, + Change = -11.6, + Index = 154 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-05-03", + Open = 159.8, + High = 165.5, + Low = 152.4, + Close = 160.6, + Volume = 881897100, + Change = 0.5, + Index = 155 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-05-12", + Open = 162.7, + High = 177.4, + Low = 159.6, + Close = 168, + Volume = 785510430, + Change = 3.2, + Index = 156 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-05-23", + Open = 167.7, + High = 193, + Low = 164.4, + Close = 185.8, + Volume = 864025390, + Change = 10.8, + Index = 157 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-06-02", + Open = 182.2, + High = 217.2, + Low = 178.2, + Close = 214, + Volume = 988496020, + Change = 17.4, + Index = 158 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-06-13", + Open = 217.8, + High = 259.7, + Low = 212.5, + Close = 258.7, + Volume = 1161622400, + Change = 18.8, + Index = 159 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-06-23", + Open = 260.2, + High = 277, + Low = 247.3, + Close = 256.6, + Volume = 1220407300, + Change = -1.4, + Index = 160 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-07-05", + Open = 250.1, + High = 284.2, + Low = 240.7, + Close = 282.5, + Volume = 999163700, + Change = 13, + Index = 161 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-07-14", + Open = 278.1, + High = 285.3, + Low = 265.1, + Close = 281.4, + Volume = 774400400, + Change = 1.2, + Index = 162 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-07-25", + Open = 286.6, + High = 299.3, + Low = 254.1, + Close = 265.3, + Volume = 973076400, + Change = -7.4, + Index = 163 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-08-03", + Open = 263.2, + High = 269.1, + Low = 250.5, + Close = 259.3, + Volume = 678809820, + Change = -1.5, + Index = 164 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-08-14", + Open = 261, + High = 264.8, + Low = 233.8, + Close = 239.8, + Volume = 716008860, + Change = -8.1, + Index = 165 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-08-23", + Open = 238.7, + High = 240.8, + Low = 212.4, + Close = 236.9, + Volume = 825055300, + Change = -0.8, + Index = 166 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-09-01", + Open = 238.7, + High = 261.2, + Low = 228.2, + Close = 245, + Volume = 811502630, + Change = 2.7, + Index = 167 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-09-13", + Open = 245, + High = 278.4, + Low = 243.3, + Close = 271.3, + Volume = 902643400, + Change = 10.7, + Index = 168 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-09-22", + Open = 271.3, + High = 279, + Low = 244.5, + Close = 244.9, + Volume = 816639600, + Change = -9.7, + Index = 169 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-10-03", + Open = 243.4, + High = 254.8, + Low = 234.6, + Close = 246.5, + Volume = 814604700, + Change = 1.3, + Index = 170 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-10-12", + Open = 248.1, + High = 268.9, + Low = 247.6, + Close = 258.9, + Volume = 806250900, + Change = 4.3, + Index = 171 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-10-23", + Open = 258.9, + High = 259.6, + Low = 202.5, + Close = 212.1, + Volume = 869390890, + Change = -18.1, + Index = 172 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-11-01", + Open = 216.5, + High = 222, + Low = 194.1, + Close = 205.7, + Volume = 811468170, + Change = -5, + Index = 173 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-11-10", + Open = 213, + High = 226.4, + Low = 205.7, + Close = 214.6, + Volume = 859763700, + Change = 0.8, + Index = 174 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-11-21", + Open = 215.6, + High = 246.7, + Low = 211.6, + Close = 241.2, + Volume = 959006600, + Change = 11.9, + Index = 175 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-12-01", + Open = 242, + High = 252.8, + Low = 231.4, + Close = 238.8, + Volume = 832910200, + Change = -1.3, + Index = 176 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-12-12", + Open = 235.8, + High = 246.7, + Low = 233.3, + Close = 237, + Volume = 772018400, + Change = 0.5, + Index = 177 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-12-21", + Open = 234.2, + High = 259.8, + Low = 228.2, + Close = 254.5, + Volume = 900893400, + Change = 8.7, + Index = 178 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-01-03", + Open = 256.8, + High = 265.1, + Low = 236.3, + Close = 238.4, + Volume = 727005170, + Change = -7.1, + Index = 179 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-01-12", + Open = 239.2, + High = 242.7, + Low = 217.2, + Close = 218.9, + Volume = 697536380, + Change = -8.5, + Index = 180 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-01-24", + Open = 215.1, + High = 223.5, + Low = 206.3, + Close = 207.8, + Volume = 777303400, + Change = -3.4, + Index = 181 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-02-02", + Open = 189.7, + High = 196.4, + Low = 180.1, + Close = 187.9, + Volume = 846092780, + Change = -0.9, + Index = 182 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-02-13", + Open = 184.3, + High = 194.7, + Low = 175, + Close = 184, + Volume = 718274070, + Change = -0.1, + Index = 183 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-02-23", + Open = 185.3, + High = 203.2, + Low = 183.4, + Close = 192, + Volume = 693352670, + Change = 3.6, + Index = 184 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-03-05", + Open = 192.3, + High = 205.6, + Low = 177.6, + Close = 180.7, + Volume = 742344460, + Change = -6, + Index = 185 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-03-14", + Open = 180, + High = 182.9, + Low = 160.5, + Close = 162.5, + Volume = 701227950, + Change = -9.7, + Index = 186 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-03-25", + Open = 163.2, + High = 178.2, + Low = 160.8, + Close = 172.6, + Volume = 589466660, + Change = 5.8, + Index = 187 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-04-04", + Open = 178.6, + High = 184.2, + Low = 163.3, + Close = 171.1, + Volume = 676969950, + Change = -4.2, + Index = 188 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-04-15", + Open = 169.1, + High = 179.2, + Low = 160.5, + Close = 161.5, + Volume = 694829970, + Change = -4.5, + Index = 189 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-04-24", + Open = 156.7, + High = 168, + Low = 138.8, + Close = 162.1, + Volume = 775433710, + Change = 3.4, + Index = 190 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-05-03", + Open = 159, + High = 198.9, + Low = 158.4, + Close = 181.2, + Volume = 864614000, + Change = 14, + Index = 191 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-05-14", + Open = 183.8, + High = 187.6, + Low = 167.8, + Close = 177.6, + Volume = 531409380, + Change = -3.4, + Index = 192 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-05-23", + Open = 179.9, + High = 186.9, + Low = 171.4, + Close = 173.7, + Volume = 554203970, + Change = -3.4, + Index = 193 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-06-04", + Open = 174.8, + High = 182.7, + Low = 173.2, + Close = 174.8, + Volume = 453828370, + Change = 0, + Index = 194 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-06-13", + Open = 175.4, + High = 191.1, + Low = 167.4, + Close = 182.5, + Volume = 509090870, + Change = 4.1, + Index = 195 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-06-25", + Open = 185.8, + High = 188.8, + Low = 176.9, + Close = 187.4, + Volume = 505399520, + Change = 0.8, + Index = 196 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-07-05", + Open = 186.5, + High = 252.4, + Low = 186.4, + Close = 251.5, + Volume = 925723660, + Change = 34.8, + Index = 197 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-07-16", + Open = 247.7, + High = 271, + Low = 233.1, + Close = 256.6, + Volume = 1097390000, + Change = 3.6, + Index = 198 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-07-25", + Open = 252.7, + High = 258.5, + Low = 214.7, + Close = 220.2, + Volume = 795590700, + Change = -12.9, + Index = 199 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-08-05", + Open = 221.2, + High = 234.7, + Low = 182, + Close = 198.9, + Volume = 658914080, + Change = -10.1, + Index = 200 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-08-14", + Open = 200.8, + High = 208.5, + Low = 191.5, + Close = 201.4, + Volume = 479168160, + Change = 0.3, + Index = 201 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-08-23", + Open = 205, + High = 228.2, + Low = 204.8, + Close = 220.3, + Volume = 560235700, + Change = 7.5, + Index = 202 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-09-04", + Open = 218.8, + High = 222.2, + Low = 202.6, + Close = 219.4, + Volume = 469284350, + Change = 0.3, + Index = 203 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-09-13", + Open = 223.5, + High = 235, + Low = 210.5, + Close = 230.3, + Volume = 592950440, + Change = 3, + Index = 204 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-09-24", + Open = 229.3, + High = 257.2, + Low = 223.5, + Close = 254.3, + Volume = 577086700, + Change = 10.9, + Index = 205 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-10-03", + Open = 252.5, + High = 264.9, + Low = 237.8, + Close = 240.7, + Volume = 546148740, + Change = -4.7, + Index = 206 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-10-14", + Open = 246.7, + High = 251, + Low = 213.7, + Close = 219.2, + Volume = 589440130, + Change = -11.2, + Index = 207 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-10-23", + Open = 220, + High = 224.3, + Low = 212.1, + Close = 213.6, + Volume = 384561880, + Change = -2.9, + Index = 208 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-11-01", + Open = 244.7, + High = 273.5, + Low = 242.6, + Close = 249, + Volume = 732392780, + Change = 1.8, + Index = 209 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-11-12", + Open = 244.6, + High = 358.6, + Low = 238.9, + Close = 328.5, + Volume = 991653160, + Change = 34.3, + Index = 210 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-11-21", + Open = 335.8, + High = 348.5, + Low = 309.2, + Close = 339.6, + Volume = 700324320, + Change = 1.1, + Index = 211 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-12-03", + Open = 341.1, + High = 361.9, + Low = 326.6, + Close = 351.4, + Volume = 478645220, + Change = 3, + Index = 212 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-12-12", + Open = 353, + High = 429.3, + Low = 348.6, + Close = 418.1, + Volume = 599082110, + Change = 18.4, + Index = 213 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-12-23", + Open = 420, + High = 481.5, + Low = 415.4, + Close = 430.6, + Volume = 807128120, + Change = 2.5, + Index = 214 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-01-03", + Open = 435.9, + High = 465.3, + Low = 373, + Close = 410.4, + Volume = 565769940, + Change = -5.8, + Index = 215 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-01-15", + Open = 423.2, + High = 429.8, + Low = 377.3, + Close = 428.2, + Volume = 530063170, + Change = 1.2, + Index = 216 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-01-27", + Open = 423.5, + High = 439.7, + Low = 389, + Close = 397.2, + Volume = 476854060, + Change = -6.2, + Index = 217 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-02-05", + Open = 396.9, + High = 420, + Low = 374.4, + Close = 378.2, + Volume = 507024510, + Change = -4.7, + Index = 218 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-02-14", + Open = 373, + High = 380.6, + Low = 325.1, + Close = 355.8, + Volume = 607376290, + Change = -4.6, + Index = 219 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-02-26", + Open = 355, + High = 367.3, + Low = 288, + Close = 290.8, + Volume = 549149490, + Change = -18.1, + Index = 220 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-03-07", + Open = 291.2, + High = 303.9, + Low = 250.7, + Close = 262.7, + Volume = 754567280, + Change = -9.8, + Index = 221 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-03-18", + Open = 252.5, + High = 253.4, + Low = 217, + Close = 225.3, + Volume = 944623000, + Change = -10.8, + Index = 222 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-03-27", + Open = 231.6, + High = 291.8, + Low = 229.2, + Close = 273.1, + Volume = 982018670, + Change = 17.9, + Index = 223 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-04-07", + Open = 275.6, + High = 285, + Low = 214.2, + Close = 233.3, + Volume = 1117950500, + Change = -15.3, + Index = 224 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-04-16", + Open = 245, + High = 274.7, + Low = 217.8, + Close = 241.6, + Volume = 993815820, + Change = -1.4, + Index = 225 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-04-28", + Open = 243.5, + High = 294.9, + Low = 222.8, + Close = 285.9, + Volume = 866169890, + Change = 17.4, + Index = 226 + }); + } +} diff --git a/samples/charts/data-chart/data-annotation-slice-layer/_Imports.razor b/samples/charts/data-chart/data-annotation-slice-layer/_Imports.razor new file mode 100644 index 0000000000..d27d337cb1 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-slice-layer/_Imports.razor @@ -0,0 +1,9 @@ +// these namespaces are global to the app +@using System.Net.Http +@using System.Net.Http.Json +@using Microsoft.AspNetCore.Components.Forms +@using Microsoft.AspNetCore.Components.Routing +@using Microsoft.AspNetCore.Components.Web +@using Microsoft.AspNetCore.Components.WebAssembly.Http +@using Microsoft.JSInterop +@using Infragistics.Samples diff --git a/samples/charts/data-chart/data-annotation-slice-layer/wwwroot/index.css b/samples/charts/data-chart/data-annotation-slice-layer/wwwroot/index.css new file mode 100644 index 0000000000..50ca13caa6 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-slice-layer/wwwroot/index.css @@ -0,0 +1,4 @@ +/* +CSS styles are loaded from the shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/data-chart/data-annotation-slice-layer/wwwroot/index.html b/samples/charts/data-chart/data-annotation-slice-layer/wwwroot/index.html new file mode 100644 index 0000000000..8833030d8e --- /dev/null +++ b/samples/charts/data-chart/data-annotation-slice-layer/wwwroot/index.html @@ -0,0 +1,30 @@ + + + + + + + + + + Samples | IgniteUI for Blazor | Infragistics + + + + + + + + + +
+ An unhandled error has occurred. + Reload + 🗙 +
+ + + + + + diff --git a/samples/charts/data-chart/data-annotation-strip-layer/AnnotationStripData.cs b/samples/charts/data-chart/data-annotation-strip-layer/AnnotationStripData.cs new file mode 100644 index 0000000000..67a5852584 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-strip-layer/AnnotationStripData.cs @@ -0,0 +1,34 @@ +using System; +using System.Collections.Generic; +public class AnnotationStripDataItem +{ + public double Start { get; set; } + public double End { get; set; } + public string Label { get; set; } +} + +public class AnnotationStripData + : List +{ + public AnnotationStripData() + { + this.Add(new AnnotationStripDataItem() + { + Start = 40, + End = 45, + Label = @"Covid - Market Crash" + }); + this.Add(new AnnotationStripDataItem() + { + Start = 100, + End = 144, + Label = @"Fed Rate Up 0.25 - 5.25%" + }); + this.Add(new AnnotationStripDataItem() + { + Start = 190, + End = 205, + Label = @"Fed Rate Down 5.25% to 4.45%" + }); + } +} diff --git a/samples/charts/data-chart/data-annotation-strip-layer/App.razor b/samples/charts/data-chart/data-annotation-strip-layer/App.razor new file mode 100644 index 0000000000..aa2bfcd1df --- /dev/null +++ b/samples/charts/data-chart/data-annotation-strip-layer/App.razor @@ -0,0 +1,183 @@ +@using IgniteUI.Blazor.Controls + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
+
+ +@code { + + private Action BindElements { get; set; } + + protected override async Task OnAfterRenderAsync(bool firstRender) + { + var chart = this.chart; + var xAxisBottom = this.xAxisBottom; + var xAxisTop = this.xAxisTop; + var yAxisLeft = this.yAxisLeft; + var yAxisRight = this.yAxisRight; + var series1 = this.series1; + var tooltip = this.tooltip; + var stripLayer = this.stripLayer; + + this.BindElements = () => { + stripLayer.TargetAxis = this.xAxisTop; + }; + this.BindElements(); + + } + + private IgbDataChart chart; + private IgbCategoryXAxis xAxisBottom; + private IgbCategoryXAxis xAxisTop; + private IgbNumericYAxis yAxisLeft; + private IgbNumericYAxis yAxisRight; + private IgbFinancialPriceSeries series1; + private IgbDataToolTipLayer tooltip; + private IgbDataAnnotationStripLayer stripLayer; + + private StockTesla _stockTesla = null; + public StockTesla StockTesla + { + get + { + if (_stockTesla == null) + { + _stockTesla = new StockTesla(); + } + return _stockTesla; + } + } + + private AnnotationStripData _annotationStripData = null; + public AnnotationStripData AnnotationStripData + { + get + { + if (_annotationStripData == null) + { + _annotationStripData = new AnnotationStripData(); + } + return _annotationStripData; + } + } + +} \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-strip-layer/BlazorClientApp.csproj b/samples/charts/data-chart/data-annotation-strip-layer/BlazorClientApp.csproj new file mode 100644 index 0000000000..ed10c7849c --- /dev/null +++ b/samples/charts/data-chart/data-annotation-strip-layer/BlazorClientApp.csproj @@ -0,0 +1,21 @@ + + + + net9.0 + 3.0 + Infragistics.Samples + Infragistics.Samples + + + + 1701;1702,IDE0028,BL0005,0219,CS1998 + + + + + + + + + + diff --git a/samples/charts/data-chart/data-annotation-strip-layer/BlazorClientApp.sln b/samples/charts/data-chart/data-annotation-strip-layer/BlazorClientApp.sln new file mode 100644 index 0000000000..1e2eda208a --- /dev/null +++ b/samples/charts/data-chart/data-annotation-strip-layer/BlazorClientApp.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BlazorClientApp", "BlazorClientApp.csproj", "{F69CC3F0-BCD1-4CE6-9F39-CBED14E7FA78}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {F69CC3F0-BCD1-4CE6-9F39-CBED14E7FA78}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F69CC3F0-BCD1-4CE6-9F39-CBED14E7FA78}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F69CC3F0-BCD1-4CE6-9F39-CBED14E7FA78}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F69CC3F0-BCD1-4CE6-9F39-CBED14E7FA78}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {FC52AAC8-4488-40AE-9621-75F6BA744B18} + EndGlobalSection +EndGlobal diff --git a/samples/charts/data-chart/data-annotation-strip-layer/Program.cs b/samples/charts/data-chart/data-annotation-strip-layer/Program.cs new file mode 100644 index 0000000000..09827b52cb --- /dev/null +++ b/samples/charts/data-chart/data-annotation-strip-layer/Program.cs @@ -0,0 +1,38 @@ +using System; +using System.Net.Http; +using System.Collections.Generic; +using System.Threading.Tasks; +using System.Text; +using Microsoft.AspNetCore.Components.WebAssembly.Hosting; +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.Logging; +using IgniteUI.Blazor.Controls; // for registering Ignite UI modules + +namespace Infragistics.Samples +{ + public class Program + { + public static async Task Main(string[] args) + { + var builder = WebAssemblyHostBuilder.CreateDefault(args); + builder.RootComponents.Add("app"); + builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) }); + // registering Ignite UI modules + builder.Services.AddIgniteUIBlazor( + typeof(IgbDataChartCoreModule), + typeof(IgbDataChartCategoryModule), + typeof(IgbDataChartCategoryCoreModule), + typeof(IgbDataChartFinancialCoreModule), + typeof(IgbDataChartFinancialModule), + typeof(IgbDataChartFinancialOverlaysModule), + typeof(IgbDataChartInteractivityModule), + typeof(IgbDataChartAnnotationModule), + typeof(IgbDataAnnotationStripLayerModule), + typeof(IgbNumberAbbreviatorModule), + typeof(IgbAnnotationLayerProxyModule) + ); + await builder.Build().RunAsync(); + } + } +} diff --git a/samples/charts/data-chart/data-annotation-strip-layer/Properties/launchSettings.json b/samples/charts/data-chart/data-annotation-strip-layer/Properties/launchSettings.json new file mode 100644 index 0000000000..18bd6fb5bc --- /dev/null +++ b/samples/charts/data-chart/data-annotation-strip-layer/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:4200", + "sslPort": 44385 + } + }, + "profiles": { + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "BlazorSamples": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:4200" + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-strip-layer/StockTesla.cs b/samples/charts/data-chart/data-annotation-strip-layer/StockTesla.cs new file mode 100644 index 0000000000..9b2caebc66 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-strip-layer/StockTesla.cs @@ -0,0 +1,2518 @@ +using System; +using System.Collections.Generic; +public class StockTeslaItem +{ + public string Date { get; set; } + public double Open { get; set; } + public double High { get; set; } + public double Low { get; set; } + public double Close { get; set; } + public double Volume { get; set; } + public double Change { get; set; } + public double Index { get; set; } +} + +public class StockTesla + : List +{ + public StockTesla() + { + this.Add(new StockTeslaItem() + { + Date = @"2019-01-10", + Open = 20.4, + High = 23, + Low = 19.8, + Close = 23, + Volume = 779333701, + Change = 12.7, + Index = 0 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-01-22", + Open = 22.8, + High = 23.5, + Low = 19.7, + Close = 19.9, + Volume = 911781100, + Change = -12.6, + Index = 1 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-01-31", + Open = 19.5, + High = 20.8, + Low = 18.6, + Close = 20.5, + Volume = 926375717, + Change = 5, + Index = 2 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-02-11", + Open = 20.4, + High = 21.6, + Low = 19.9, + Close = 20.9, + Volume = 687520471, + Change = 2.4, + Index = 3 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-02-21", + Open = 21.1, + High = 21.2, + Low = 19.4, + Close = 19.4, + Volume = 597552272, + Change = -7.9, + Index = 4 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-03-04", + Open = 19.6, + High = 21.3, + Low = 18.9, + Close = 19, + Volume = 1218669201, + Change = -3.1, + Index = 5 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-03-13", + Open = 18.8, + High = 19.5, + Low = 18, + Close = 19.3, + Volume = 1034156904, + Change = 2.5, + Index = 6 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-03-22", + Open = 19.5, + High = 19.7, + Low = 17.6, + Close = 17.6, + Volume = 980694095, + Change = -9.5, + Index = 7 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-04-02", + Open = 17.3, + High = 19.3, + Low = 17, + Close = 19.1, + Volume = 788473494, + Change = 10.1, + Index = 8 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-04-11", + Open = 19.2, + High = 19.7, + Low = 17.4, + Close = 17.9, + Volume = 1165555442, + Change = -6.6, + Index = 9 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-04-23", + Open = 18, + High = 18.3, + Low = 17, + Close = 17.6, + Volume = 870373200, + Change = -2.3, + Index = 10 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-05-02", + Open = 17.6, + High = 17.7, + Low = 15.4, + Close = 16.3, + Volume = 1629432326, + Change = -7.5, + Index = 11 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-05-13", + Open = 16.3, + High = 17.2, + Low = 15, + Close = 15.1, + Volume = 1131045605, + Change = -6.9, + Index = 12 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-05-22", + Open = 15.3, + High = 15.6, + Low = 12.8, + Close = 12.8, + Volume = 1455503588, + Change = -15.9, + Index = 13 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-06-03", + Open = 13, + High = 13.3, + Low = 11.8, + Close = 11.9, + Volume = 1415442268, + Change = -7.9, + Index = 14 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-06-12", + Open = 12.1, + High = 14.9, + Low = 12, + Close = 14, + Volume = 1515000443, + Change = 15.6, + Index = 15 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-06-21", + Open = 14, + High = 15.6, + Low = 13.8, + Close = 14.8, + Volume = 1009123371, + Change = 5.5, + Index = 16 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-07-02", + Open = 14.9, + High = 15.5, + Low = 14.5, + Close = 15, + Volume = 766921642, + Change = 0.6, + Index = 17 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-07-12", + Open = 16, + High = 16.4, + Low = 15.2, + Close = 16.3, + Volume = 887983836, + Change = 2.4, + Index = 18 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-07-23", + Open = 16.5, + High = 17.5, + Low = 16.3, + Close = 17.3, + Volume = 788941000, + Change = 4.9, + Index = 19 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-08-01", + Open = 17.3, + High = 17.7, + Low = 14.8, + Close = 15.6, + Volume = 1175082297, + Change = -9.8, + Index = 20 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-08-12", + Open = 15.4, + High = 16, + Low = 15, + Close = 15.3, + Volume = 560129569, + Change = -1, + Index = 21 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-08-21", + Open = 15.3, + High = 15.7, + Low = 14.1, + Close = 14.7, + Volume = 677293701, + Change = -3.5, + Index = 22 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-08-30", + Open = 14.9, + High = 15.5, + Low = 14.1, + Close = 15, + Volume = 650239370, + Change = 1.3, + Index = 23 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-09-11", + Open = 14.9, + High = 16.5, + Low = 14.6, + Close = 16.5, + Volume = 636766167, + Change = 10.3, + Index = 24 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-09-20", + Open = 16.5, + High = 16.9, + Low = 15.9, + Close = 16, + Volume = 572802643, + Change = -2.9, + Index = 25 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-10-01", + Open = 16, + High = 16.6, + Low = 14.6, + Close = 16.3, + Volume = 931821239, + Change = 2, + Index = 26 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-10-10", + Open = 16.2, + High = 16.6, + Low = 15, + Close = 16.3, + Volume = 891798049, + Change = 0.6, + Index = 27 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-10-21", + Open = 16.5, + High = 17.7, + Low = 16.5, + Close = 16.9, + Volume = 713093463, + Change = 2.6, + Index = 28 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-10-30", + Open = 17, + High = 22.7, + Low = 16.7, + Close = 21, + Volume = 1752943598, + Change = 23.9, + Index = 29 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-11-08", + Open = 20.9, + High = 22.8, + Low = 20.6, + Close = 22.5, + Volume = 834957256, + Change = 7.7, + Index = 30 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-11-19", + Open = 22.9, + High = 24, + Low = 22.8, + Close = 24, + Volume = 738746390, + Change = 4.5, + Index = 31 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-11-29", + Open = 24, + High = 24.1, + Low = 21.8, + Close = 22, + Volume = 870685288, + Change = -8.4, + Index = 32 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-12-10", + Open = 22, + High = 23.4, + Low = 21.8, + Close = 23.3, + Volume = 712016613, + Change = 5.9, + Index = 33 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-12-19", + Open = 23.5, + High = 27.1, + Low = 23.4, + Close = 26.9, + Volume = 1203765433, + Change = 14.8, + Index = 34 + }); + this.Add(new StockTeslaItem() + { + Date = @"2019-12-31", + Open = 27.4, + High = 29, + Low = 26.7, + Close = 27.9, + Volume = 1195073357, + Change = 2, + Index = 35 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-01-10", + Open = 28.3, + High = 33.3, + Low = 28.1, + Close = 31.9, + Volume = 1925386078, + Change = 12.6, + Index = 36 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-01-22", + Open = 32.9, + High = 39.6, + Low = 32.8, + Close = 38, + Volume = 2364043518, + Change = 15.4, + Index = 37 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-01-31", + Open = 37.6, + High = 43.5, + Low = 36, + Close = 43.4, + Volume = 1835141382, + Change = 15.3, + Index = 38 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-02-11", + Open = 44.9, + High = 64.6, + Low = 44.9, + Close = 51.6, + Volume = 3748903126, + Change = 14.9, + Index = 39 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-02-21", + Open = 51.9, + High = 63, + Low = 49, + Close = 60.1, + Volume = 1921517039, + Change = 15.8, + Index = 40 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-03-03", + Open = 55.9, + High = 57.6, + Low = 40.8, + Close = 49.7, + Volume = 2121850940, + Change = -11.1, + Index = 41 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-03-12", + Open = 50.9, + High = 51.1, + Low = 36.4, + Close = 37.4, + Volume = 1553329923, + Change = -26.6, + Index = 42 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-03-23", + Open = 39.7, + High = 40.5, + Low = 23.4, + Close = 29, + Volume = 2487688157, + Change = -27, + Index = 43 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-04-01", + Open = 31.8, + High = 37.3, + Low = 31.6, + Close = 32.1, + Volume = 1785601357, + Change = 0.9, + Index = 44 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-04-13", + Open = 32.1, + High = 43.5, + Low = 29.8, + Close = 43.4, + Volume = 1860352620, + Change = 35.3, + Index = 45 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-04-22", + Open = 46.6, + High = 51.7, + Low = 44.9, + Close = 48.8, + Volume = 2056797321, + Change = 4.7, + Index = 46 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-05-01", + Open = 48.5, + High = 58, + Low = 45.5, + Close = 46.8, + Volume = 2093959203, + Change = -3.6, + Index = 47 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-05-12", + Open = 46.7, + High = 56.2, + Low = 46.5, + Close = 54, + Volume = 1611543246, + Change = 15.5, + Index = 48 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-05-21", + Open = 54.7, + High = 55.6, + Low = 50.9, + Close = 55.2, + Volume = 1262468113, + Change = 0.8, + Index = 49 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-06-02", + Open = 54.8, + High = 60.6, + Low = 52.3, + Close = 58.8, + Volume = 1160487993, + Change = 7.2, + Index = 50 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-06-11", + Open = 59.2, + High = 68.5, + Low = 57.2, + Close = 64.9, + Volume = 1270377400, + Change = 9.5, + Index = 51 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-06-22", + Open = 65.3, + High = 67.9, + Low = 60.6, + Close = 66.3, + Volume = 1217946366, + Change = 1.5, + Index = 52 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-07-01", + Open = 66.6, + High = 75.7, + Low = 62.5, + Close = 74.6, + Volume = 1120591270, + Change = 12.1, + Index = 53 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-07-13", + Open = 81.4, + High = 119.7, + Low = 79, + Close = 99.8, + Volume = 2244920779, + Change = 22.6, + Index = 54 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-07-22", + Open = 103.7, + High = 111.7, + Low = 95.4, + Close = 106.2, + Volume = 1662846099, + Change = 2.3, + Index = 55 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-07-31", + Open = 111.9, + High = 112.6, + Low = 91.1, + Close = 95.4, + Volume = 1573159944, + Change = -14.8, + Index = 56 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-08-11", + Open = 96.6, + High = 101.8, + Low = 91, + Close = 91.6, + Volume = 798587331, + Change = -5.2, + Index = 57 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-08-20", + Open = 98, + High = 134.8, + Low = 95.7, + Close = 133.5, + Volume = 1866534416, + Change = 36.2, + Index = 58 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-08-31", + Open = 136.3, + High = 166.7, + Low = 128.5, + Close = 166.1, + Volume = 2008507459, + Change = 21.9, + Index = 59 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-09-10", + Open = 167.4, + High = 167.5, + Low = 110, + Close = 123.8, + Volume = 1992227059, + Change = -26, + Index = 60 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-09-21", + Open = 127.3, + High = 154, + Low = 120.2, + Close = 149.8, + Volume = 1758737696, + Change = 17.7, + Index = 61 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-09-30", + Open = 143.2, + High = 145.9, + Low = 117.1, + Close = 143, + Volume = 1459893236, + Change = -0.1, + Index = 62 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-10-09", + Open = 146.9, + High = 149.6, + Low = 135.4, + Close = 144.7, + Volume = 985545158, + Change = -1.5, + Index = 63 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-10-20", + Open = 147.3, + High = 155.3, + Low = 139.7, + Close = 140.6, + Volume = 773077727, + Change = -4.5, + Index = 64 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-10-29", + Open = 140.9, + High = 148.4, + Low = 135.3, + Close = 136.9, + Volume = 615339122, + Change = -2.8, + Index = 65 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-11-09", + Open = 135.6, + High = 150.8, + Low = 126.4, + Close = 140.4, + Volume = 669171368, + Change = 3.5, + Index = 66 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-11-18", + Open = 140, + High = 165.3, + Low = 132, + Close = 162.2, + Volume = 760451265, + Change = 15.8, + Index = 67 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-11-30", + Open = 164, + High = 202.6, + Low = 162.5, + Close = 189.2, + Volume = 1046371155, + Change = 15.4, + Index = 68 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-12-09", + Open = 199.2, + High = 218.1, + Low = 180.4, + Close = 201.5, + Volume = 1055933265, + Change = 1.2, + Index = 69 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-12-18", + Open = 191.5, + High = 231.7, + Low = 188.8, + Close = 231.7, + Volume = 1593943601, + Change = 21, + Index = 70 + }); + this.Add(new StockTeslaItem() + { + Date = @"2020-12-30", + Open = 222.1, + High = 232.2, + Low = 204.7, + Close = 231.6, + Volume = 791942570, + Change = 4.3, + Index = 71 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-01-11", + Open = 233.3, + High = 294.8, + Low = 230.4, + Close = 270.4, + Volume = 1084025779, + Change = 15.9, + Index = 72 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-01-21", + Open = 277, + High = 289.3, + Low = 273, + Close = 281.7, + Volume = 663774487, + Change = 1.7, + Index = 73 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-02-01", + Open = 278.1, + High = 300.1, + Low = 260, + Close = 279.9, + Volume = 595397009, + Change = 0.7, + Index = 74 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-02-10", + Open = 281.6, + High = 293.5, + Low = 266.7, + Close = 268.3, + Volume = 445813486, + Change = -4.7, + Index = 75 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-02-22", + Open = 270.8, + High = 276.6, + Low = 236.7, + Close = 238.2, + Volume = 496372009, + Change = -12.1, + Index = 76 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-03-03", + Open = 220.7, + High = 290.7, + Low = 206.3, + Close = 217.7, + Volume = 793689739, + Change = -1.3, + Index = 77 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-03-12", + Open = 218.6, + High = 291.3, + Low = 179.8, + Close = 231.2, + Volume = 1215209162, + Change = 5.8, + Index = 78 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-03-23", + Open = 231.4, + High = 237.7, + Low = 208.2, + Close = 220.7, + Volume = 744776145, + Change = -4.6, + Index = 79 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-04-01", + Open = 222.6, + High = 230.8, + Low = 197, + Close = 220.6, + Volume = 730733684, + Change = -0.9, + Index = 80 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-04-13", + Open = 235.9, + High = 254.3, + Low = 222.6, + Close = 254.1, + Volume = 646721884, + Change = 7.7, + Index = 81 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-04-22", + Open = 256.9, + High = 260.3, + Low = 230.6, + Close = 239.9, + Volume = 740840774, + Change = -6.6, + Index = 82 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-05-03", + Open = 239.9, + High = 249.8, + Low = 222, + Close = 228.3, + Volume = 623423313, + Change = -4.8, + Index = 83 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-05-12", + Open = 226.3, + High = 230, + Low = 195.6, + Close = 196.6, + Volume = 643844974, + Change = -13.1, + Index = 84 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-05-21", + Open = 200.5, + High = 202.2, + Low = 182.3, + Close = 193.6, + Volume = 729192883, + Change = -3.4, + Index = 85 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-06-02", + Open = 193.9, + High = 211.9, + Low = 191.2, + Close = 201.7, + Volume = 545095944, + Change = 4, + Index = 86 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-06-11", + Open = 200.6, + High = 207.7, + Low = 190.4, + Close = 203.3, + Volume = 478366128, + Change = 1.3, + Index = 87 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-06-22", + Open = 204.1, + High = 210.5, + Low = 197.8, + Close = 207.9, + Volume = 454698495, + Change = 1.9, + Index = 88 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-07-01", + Open = 210.7, + High = 232.5, + Low = 210, + Close = 226, + Volume = 558441596, + Change = 7.3, + Index = 89 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-07-13", + Open = 226.3, + High = 233.3, + Low = 206.8, + Close = 222.8, + Volume = 470942387, + Change = -1.5, + Index = 90 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-07-22", + Open = 223.6, + High = 226.2, + Low = 207.1, + Close = 216.4, + Volume = 372195097, + Change = -3.2, + Index = 91 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-08-02", + Open = 215.5, + High = 242.3, + Low = 209.1, + Close = 236.6, + Volume = 547284685, + Change = 9.8, + Index = 92 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-08-11", + Open = 239.7, + High = 241.6, + Low = 232.5, + Close = 235.9, + Volume = 315341455, + Change = -1.6, + Index = 93 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-08-20", + Open = 235.4, + High = 243.3, + Low = 216.3, + Close = 226.8, + Volume = 392227478, + Change = -3.7, + Index = 94 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-08-31", + Open = 228.5, + High = 246.8, + Low = 226.9, + Close = 245.2, + Volume = 337503634, + Change = 7.3, + Index = 95 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-09-10", + Open = 244.7, + High = 254.8, + Low = 241.4, + Close = 245.4, + Volume = 328100734, + Change = 0.3, + Index = 96 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-09-21", + Open = 246.7, + High = 253.7, + Low = 236.3, + Close = 246.5, + Volume = 420153012, + Change = -0.1, + Index = 97 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-09-30", + Open = 247.8, + High = 266.3, + Low = 246.4, + Close = 258.5, + Volume = 422393262, + Change = 4.3, + Index = 98 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-10-11", + Open = 259.5, + High = 269, + Low = 254.5, + Close = 264, + Volume = 392144589, + Change = 1.7, + Index = 99 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-10-20", + Open = 267, + High = 292.6, + Low = 265.5, + Close = 288.6, + Volume = 368796877, + Change = 8.1, + Index = 100 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-10-29", + Open = 285.3, + High = 371.7, + Low = 285.2, + Close = 371.3, + Volume = 825862313, + Change = 30.1, + Index = 101 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-11-09", + Open = 381.7, + High = 414.5, + Low = 337.2, + Close = 341.2, + Volume = 818978542, + Change = -10.6, + Index = 102 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-11-18", + Open = 336.8, + High = 373.2, + Low = 326.2, + Close = 365.5, + Volume = 613304311, + Change = 8.5, + Index = 103 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-11-30", + Open = 366.3, + High = 400.6, + Low = 354, + Close = 381.6, + Volume = 515052382, + Change = 4.2, + Index = 104 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-12-09", + Open = 386.9, + High = 390.9, + Low = 316.8, + Close = 334.6, + Volume = 473333567, + Change = -13.5, + Index = 105 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-12-20", + Open = 336.2, + High = 340.3, + Low = 297.8, + Close = 300, + Volume = 524367113, + Change = -10.8, + Index = 106 + }); + this.Add(new StockTeslaItem() + { + Date = @"2021-12-30", + Open = 305.6, + High = 373, + Low = 295.4, + Close = 356.8, + Volume = 492530059, + Change = 16.7, + Index = 107 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-01-10", + Open = 357.8, + High = 402.7, + Low = 326.7, + Close = 352.7, + Volume = 592103938, + Change = -1.4, + Index = 108 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-01-20", + Open = 351.2, + High = 371.9, + Low = 331.3, + Close = 332.1, + Volume = 532857144, + Change = -5.4, + Index = 109 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-01-31", + Open = 332.1, + High = 334.8, + Low = 264, + Close = 312.2, + Volume = 833589022, + Change = -6, + Index = 110 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-02-09", + Open = 311.7, + High = 315.9, + Low = 293.5, + Close = 310.7, + Volume = 456395505, + Change = -0.3, + Index = 111 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-02-18", + Open = 302.8, + High = 314.6, + Low = 279.2, + Close = 285.7, + Volume = 446153356, + Change = -5.7, + Index = 112 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-03-02", + Open = 278, + High = 296.6, + Low = 233.3, + Close = 293.3, + Volume = 638352514, + Change = 5.5, + Index = 113 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-03-11", + Open = 292.9, + High = 295.5, + Low = 260.7, + Close = 265.1, + Volume = 466566467, + Change = -9.5, + Index = 114 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-03-22", + Open = 260.2, + High = 332.6, + Low = 252, + Close = 331.3, + Volume = 576869668, + Change = 27.3, + Index = 115 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-03-31", + Open = 326.6, + High = 371.6, + Low = 325.5, + Close = 359.2, + Volume = 536607263, + Change = 10, + Index = 116 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-04-11", + Open = 360.4, + High = 384.3, + Low = 324.9, + Close = 325.3, + Volume = 499682510, + Change = -9.7, + Index = 117 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-04-21", + Open = 332.5, + High = 364.1, + Low = 324.4, + Close = 336.3, + Volume = 457210487, + Change = 1.1, + Index = 118 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-05-02", + Open = 338.3, + High = 345, + Low = 273.9, + Close = 301, + Volume = 639990965, + Change = -11, + Index = 119 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-05-11", + Open = 301.1, + High = 318.5, + Low = 242.4, + Close = 244.7, + Volume = 583211967, + Change = -18.7, + Index = 120 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-05-20", + Open = 233.7, + High = 262.4, + Low = 211, + Close = 221.3, + Volume = 721880082, + Change = -5.3, + Index = 121 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-06-01", + Open = 218.3, + High = 259.6, + Low = 206.9, + Close = 246.8, + Volume = 644596235, + Change = 13, + Index = 122 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-06-10", + Open = 244.2, + High = 264.2, + Low = 227.9, + Close = 232.2, + Volume = 633672873, + Change = -4.9, + Index = 123 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-06-22", + Open = 223.2, + High = 246.8, + Low = 208.7, + Close = 236.1, + Volume = 744240764, + Change = 5.8, + Index = 124 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-07-01", + Open = 237.9, + High = 252.1, + Low = 218.9, + Close = 227.3, + Volume = 631776422, + Change = -4.5, + Index = 125 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-07-13", + Open = 223, + High = 255, + Low = 216.2, + Close = 237, + Volume = 625812242, + Change = 6.3, + Index = 126 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-07-22", + Open = 234.9, + High = 280.8, + Low = 229.3, + Close = 272.2, + Volume = 646037224, + Change = 15.9, + Index = 127 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-08-02", + Open = 272.2, + High = 311.9, + Low = 256.3, + Close = 300.6, + Volume = 611660612, + Change = 10.4, + Index = 128 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-08-11", + Open = 305, + High = 313.6, + Low = 279.4, + Close = 286.6, + Volume = 616204291, + Change = -6, + Index = 129 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-08-22", + Open = 289.4, + High = 314.7, + Low = 285, + Close = 289.9, + Volume = 490658060, + Change = 0.2, + Index = 130 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-08-31", + Open = 291.5, + High = 303.6, + Low = 271.8, + Close = 275.6, + Volume = 376152572, + Change = -5.4, + Index = 131 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-09-12", + Open = 272.6, + High = 305.5, + Low = 265.7, + Close = 304.4, + Volume = 367924580, + Change = 11.7, + Index = 132 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-09-21", + Open = 292.9, + High = 313.8, + Low = 290.4, + Close = 300.8, + Volume = 477171180, + Change = 2.7, + Index = 133 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-09-30", + Open = 299.9, + High = 301.3, + Low = 262.5, + Close = 265.2, + Volume = 454307920, + Change = -11.5, + Index = 134 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-10-11", + Open = 254.5, + High = 257.5, + Low = 215, + Close = 216.5, + Volume = 593078170, + Change = -14.9, + Index = 135 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-10-20", + Open = 215.3, + High = 229.8, + Low = 202, + Close = 207.3, + Volume = 592158560, + Change = -3.7, + Index = 136 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-10-31", + Open = 206.4, + High = 233.8, + Low = 198.6, + Close = 227.5, + Volume = 550341050, + Change = 10.2, + Index = 137 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-11-09", + Open = 234, + High = 237.4, + Low = 177.1, + Close = 177.6, + Volume = 630702790, + Change = -24.1, + Index = 138 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-11-18", + Open = 189.9, + High = 200.8, + Low = 176.6, + Close = 180.2, + Volume = 637579480, + Change = -5.1, + Index = 139 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-11-30", + Open = 175.8, + High = 194.8, + Low = 166.2, + Close = 194.7, + Volume = 617126140, + Change = 10.7, + Index = 140 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-12-09", + Open = 197.1, + High = 198.9, + Low = 169.1, + Close = 179, + Volume = 625675690, + Change = -9.1, + Index = 141 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-12-20", + Open = 176.1, + High = 177.4, + Low = 137.7, + Close = 137.8, + Volume = 986660100, + Change = -21.7, + Index = 142 + }); + this.Add(new StockTeslaItem() + { + Date = @"2022-12-30", + Open = 139.3, + High = 141.3, + Low = 108.2, + Close = 123.2, + Volume = 1331911900, + Change = -11.6, + Index = 143 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-01-11", + Open = 118.5, + High = 126, + Low = 101.8, + Close = 123.2, + Volume = 1332426500, + Change = 4, + Index = 144 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-01-23", + Open = 122.6, + High = 145.4, + Low = 115.6, + Close = 143.8, + Volume = 1244541500, + Change = 17.3, + Index = 145 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-02-01", + Open = 143, + High = 183.8, + Low = 138.1, + Close = 181.4, + Volume = 1534337700, + Change = 26.9, + Index = 146 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-02-10", + Open = 187.3, + High = 214, + Low = 182.6, + Close = 196.9, + Volume = 1423167800, + Change = 5.1, + Index = 147 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-02-22", + Open = 194.4, + High = 217.6, + Low = 187.6, + Close = 200.9, + Volume = 1386211900, + Change = 3.3, + Index = 148 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-03-03", + Open = 203.9, + High = 211.2, + Low = 186, + Close = 197.8, + Volume = 1095786600, + Change = -3, + Index = 149 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-03-14", + Open = 198.5, + High = 198.6, + Low = 163.9, + Close = 183.3, + Volume = 1101144600, + Change = -7.7, + Index = 150 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-03-23", + Open = 180.8, + High = 200.7, + Low = 176, + Close = 192.2, + Volume = 978213300, + Change = 6.3, + Index = 151 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-04-03", + Open = 191.6, + High = 207.8, + Low = 185.4, + Close = 194.8, + Volume = 909718040, + Change = 1.6, + Index = 152 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-04-13", + Open = 197.3, + High = 198.7, + Low = 176.1, + Close = 185.9, + Volume = 905319000, + Change = -5.8, + Index = 153 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-04-24", + Open = 184, + High = 189.7, + Low = 158.6, + Close = 162.6, + Volume = 905416980, + Change = -11.6, + Index = 154 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-05-03", + Open = 159.8, + High = 165.5, + Low = 152.4, + Close = 160.6, + Volume = 881897100, + Change = 0.5, + Index = 155 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-05-12", + Open = 162.7, + High = 177.4, + Low = 159.6, + Close = 168, + Volume = 785510430, + Change = 3.2, + Index = 156 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-05-23", + Open = 167.7, + High = 193, + Low = 164.4, + Close = 185.8, + Volume = 864025390, + Change = 10.8, + Index = 157 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-06-02", + Open = 182.2, + High = 217.2, + Low = 178.2, + Close = 214, + Volume = 988496020, + Change = 17.4, + Index = 158 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-06-13", + Open = 217.8, + High = 259.7, + Low = 212.5, + Close = 258.7, + Volume = 1161622400, + Change = 18.8, + Index = 159 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-06-23", + Open = 260.2, + High = 277, + Low = 247.3, + Close = 256.6, + Volume = 1220407300, + Change = -1.4, + Index = 160 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-07-05", + Open = 250.1, + High = 284.2, + Low = 240.7, + Close = 282.5, + Volume = 999163700, + Change = 13, + Index = 161 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-07-14", + Open = 278.1, + High = 285.3, + Low = 265.1, + Close = 281.4, + Volume = 774400400, + Change = 1.2, + Index = 162 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-07-25", + Open = 286.6, + High = 299.3, + Low = 254.1, + Close = 265.3, + Volume = 973076400, + Change = -7.4, + Index = 163 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-08-03", + Open = 263.2, + High = 269.1, + Low = 250.5, + Close = 259.3, + Volume = 678809820, + Change = -1.5, + Index = 164 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-08-14", + Open = 261, + High = 264.8, + Low = 233.8, + Close = 239.8, + Volume = 716008860, + Change = -8.1, + Index = 165 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-08-23", + Open = 238.7, + High = 240.8, + Low = 212.4, + Close = 236.9, + Volume = 825055300, + Change = -0.8, + Index = 166 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-09-01", + Open = 238.7, + High = 261.2, + Low = 228.2, + Close = 245, + Volume = 811502630, + Change = 2.7, + Index = 167 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-09-13", + Open = 245, + High = 278.4, + Low = 243.3, + Close = 271.3, + Volume = 902643400, + Change = 10.7, + Index = 168 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-09-22", + Open = 271.3, + High = 279, + Low = 244.5, + Close = 244.9, + Volume = 816639600, + Change = -9.7, + Index = 169 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-10-03", + Open = 243.4, + High = 254.8, + Low = 234.6, + Close = 246.5, + Volume = 814604700, + Change = 1.3, + Index = 170 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-10-12", + Open = 248.1, + High = 268.9, + Low = 247.6, + Close = 258.9, + Volume = 806250900, + Change = 4.3, + Index = 171 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-10-23", + Open = 258.9, + High = 259.6, + Low = 202.5, + Close = 212.1, + Volume = 869390890, + Change = -18.1, + Index = 172 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-11-01", + Open = 216.5, + High = 222, + Low = 194.1, + Close = 205.7, + Volume = 811468170, + Change = -5, + Index = 173 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-11-10", + Open = 213, + High = 226.4, + Low = 205.7, + Close = 214.6, + Volume = 859763700, + Change = 0.8, + Index = 174 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-11-21", + Open = 215.6, + High = 246.7, + Low = 211.6, + Close = 241.2, + Volume = 959006600, + Change = 11.9, + Index = 175 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-12-01", + Open = 242, + High = 252.8, + Low = 231.4, + Close = 238.8, + Volume = 832910200, + Change = -1.3, + Index = 176 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-12-12", + Open = 235.8, + High = 246.7, + Low = 233.3, + Close = 237, + Volume = 772018400, + Change = 0.5, + Index = 177 + }); + this.Add(new StockTeslaItem() + { + Date = @"2023-12-21", + Open = 234.2, + High = 259.8, + Low = 228.2, + Close = 254.5, + Volume = 900893400, + Change = 8.7, + Index = 178 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-01-03", + Open = 256.8, + High = 265.1, + Low = 236.3, + Close = 238.4, + Volume = 727005170, + Change = -7.1, + Index = 179 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-01-12", + Open = 239.2, + High = 242.7, + Low = 217.2, + Close = 218.9, + Volume = 697536380, + Change = -8.5, + Index = 180 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-01-24", + Open = 215.1, + High = 223.5, + Low = 206.3, + Close = 207.8, + Volume = 777303400, + Change = -3.4, + Index = 181 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-02-02", + Open = 189.7, + High = 196.4, + Low = 180.1, + Close = 187.9, + Volume = 846092780, + Change = -0.9, + Index = 182 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-02-13", + Open = 184.3, + High = 194.7, + Low = 175, + Close = 184, + Volume = 718274070, + Change = -0.1, + Index = 183 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-02-23", + Open = 185.3, + High = 203.2, + Low = 183.4, + Close = 192, + Volume = 693352670, + Change = 3.6, + Index = 184 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-03-05", + Open = 192.3, + High = 205.6, + Low = 177.6, + Close = 180.7, + Volume = 742344460, + Change = -6, + Index = 185 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-03-14", + Open = 180, + High = 182.9, + Low = 160.5, + Close = 162.5, + Volume = 701227950, + Change = -9.7, + Index = 186 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-03-25", + Open = 163.2, + High = 178.2, + Low = 160.8, + Close = 172.6, + Volume = 589466660, + Change = 5.8, + Index = 187 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-04-04", + Open = 178.6, + High = 184.2, + Low = 163.3, + Close = 171.1, + Volume = 676969950, + Change = -4.2, + Index = 188 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-04-15", + Open = 169.1, + High = 179.2, + Low = 160.5, + Close = 161.5, + Volume = 694829970, + Change = -4.5, + Index = 189 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-04-24", + Open = 156.7, + High = 168, + Low = 138.8, + Close = 162.1, + Volume = 775433710, + Change = 3.4, + Index = 190 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-05-03", + Open = 159, + High = 198.9, + Low = 158.4, + Close = 181.2, + Volume = 864614000, + Change = 14, + Index = 191 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-05-14", + Open = 183.8, + High = 187.6, + Low = 167.8, + Close = 177.6, + Volume = 531409380, + Change = -3.4, + Index = 192 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-05-23", + Open = 179.9, + High = 186.9, + Low = 171.4, + Close = 173.7, + Volume = 554203970, + Change = -3.4, + Index = 193 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-06-04", + Open = 174.8, + High = 182.7, + Low = 173.2, + Close = 174.8, + Volume = 453828370, + Change = 0, + Index = 194 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-06-13", + Open = 175.4, + High = 191.1, + Low = 167.4, + Close = 182.5, + Volume = 509090870, + Change = 4.1, + Index = 195 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-06-25", + Open = 185.8, + High = 188.8, + Low = 176.9, + Close = 187.4, + Volume = 505399520, + Change = 0.8, + Index = 196 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-07-05", + Open = 186.5, + High = 252.4, + Low = 186.4, + Close = 251.5, + Volume = 925723660, + Change = 34.8, + Index = 197 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-07-16", + Open = 247.7, + High = 271, + Low = 233.1, + Close = 256.6, + Volume = 1097390000, + Change = 3.6, + Index = 198 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-07-25", + Open = 252.7, + High = 258.5, + Low = 214.7, + Close = 220.2, + Volume = 795590700, + Change = -12.9, + Index = 199 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-08-05", + Open = 221.2, + High = 234.7, + Low = 182, + Close = 198.9, + Volume = 658914080, + Change = -10.1, + Index = 200 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-08-14", + Open = 200.8, + High = 208.5, + Low = 191.5, + Close = 201.4, + Volume = 479168160, + Change = 0.3, + Index = 201 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-08-23", + Open = 205, + High = 228.2, + Low = 204.8, + Close = 220.3, + Volume = 560235700, + Change = 7.5, + Index = 202 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-09-04", + Open = 218.8, + High = 222.2, + Low = 202.6, + Close = 219.4, + Volume = 469284350, + Change = 0.3, + Index = 203 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-09-13", + Open = 223.5, + High = 235, + Low = 210.5, + Close = 230.3, + Volume = 592950440, + Change = 3, + Index = 204 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-09-24", + Open = 229.3, + High = 257.2, + Low = 223.5, + Close = 254.3, + Volume = 577086700, + Change = 10.9, + Index = 205 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-10-03", + Open = 252.5, + High = 264.9, + Low = 237.8, + Close = 240.7, + Volume = 546148740, + Change = -4.7, + Index = 206 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-10-14", + Open = 246.7, + High = 251, + Low = 213.7, + Close = 219.2, + Volume = 589440130, + Change = -11.2, + Index = 207 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-10-23", + Open = 220, + High = 224.3, + Low = 212.1, + Close = 213.6, + Volume = 384561880, + Change = -2.9, + Index = 208 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-11-01", + Open = 244.7, + High = 273.5, + Low = 242.6, + Close = 249, + Volume = 732392780, + Change = 1.8, + Index = 209 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-11-12", + Open = 244.6, + High = 358.6, + Low = 238.9, + Close = 328.5, + Volume = 991653160, + Change = 34.3, + Index = 210 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-11-21", + Open = 335.8, + High = 348.5, + Low = 309.2, + Close = 339.6, + Volume = 700324320, + Change = 1.1, + Index = 211 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-12-03", + Open = 341.1, + High = 361.9, + Low = 326.6, + Close = 351.4, + Volume = 478645220, + Change = 3, + Index = 212 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-12-12", + Open = 353, + High = 429.3, + Low = 348.6, + Close = 418.1, + Volume = 599082110, + Change = 18.4, + Index = 213 + }); + this.Add(new StockTeslaItem() + { + Date = @"2024-12-23", + Open = 420, + High = 481.5, + Low = 415.4, + Close = 430.6, + Volume = 807128120, + Change = 2.5, + Index = 214 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-01-03", + Open = 435.9, + High = 465.3, + Low = 373, + Close = 410.4, + Volume = 565769940, + Change = -5.8, + Index = 215 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-01-15", + Open = 423.2, + High = 429.8, + Low = 377.3, + Close = 428.2, + Volume = 530063170, + Change = 1.2, + Index = 216 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-01-27", + Open = 423.5, + High = 439.7, + Low = 389, + Close = 397.2, + Volume = 476854060, + Change = -6.2, + Index = 217 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-02-05", + Open = 396.9, + High = 420, + Low = 374.4, + Close = 378.2, + Volume = 507024510, + Change = -4.7, + Index = 218 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-02-14", + Open = 373, + High = 380.6, + Low = 325.1, + Close = 355.8, + Volume = 607376290, + Change = -4.6, + Index = 219 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-02-26", + Open = 355, + High = 367.3, + Low = 288, + Close = 290.8, + Volume = 549149490, + Change = -18.1, + Index = 220 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-03-07", + Open = 291.2, + High = 303.9, + Low = 250.7, + Close = 262.7, + Volume = 754567280, + Change = -9.8, + Index = 221 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-03-18", + Open = 252.5, + High = 253.4, + Low = 217, + Close = 225.3, + Volume = 944623000, + Change = -10.8, + Index = 222 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-03-27", + Open = 231.6, + High = 291.8, + Low = 229.2, + Close = 273.1, + Volume = 982018670, + Change = 17.9, + Index = 223 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-04-07", + Open = 275.6, + High = 285, + Low = 214.2, + Close = 233.3, + Volume = 1117950500, + Change = -15.3, + Index = 224 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-04-16", + Open = 245, + High = 274.7, + Low = 217.8, + Close = 241.6, + Volume = 993815820, + Change = -1.4, + Index = 225 + }); + this.Add(new StockTeslaItem() + { + Date = @"2025-04-28", + Open = 243.5, + High = 294.9, + Low = 222.8, + Close = 285.9, + Volume = 866169890, + Change = 17.4, + Index = 226 + }); + } +} diff --git a/samples/charts/data-chart/data-annotation-strip-layer/_Imports.razor b/samples/charts/data-chart/data-annotation-strip-layer/_Imports.razor new file mode 100644 index 0000000000..d27d337cb1 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-strip-layer/_Imports.razor @@ -0,0 +1,9 @@ +// these namespaces are global to the app +@using System.Net.Http +@using System.Net.Http.Json +@using Microsoft.AspNetCore.Components.Forms +@using Microsoft.AspNetCore.Components.Routing +@using Microsoft.AspNetCore.Components.Web +@using Microsoft.AspNetCore.Components.WebAssembly.Http +@using Microsoft.JSInterop +@using Infragistics.Samples diff --git a/samples/charts/data-chart/data-annotation-strip-layer/wwwroot/index.css b/samples/charts/data-chart/data-annotation-strip-layer/wwwroot/index.css new file mode 100644 index 0000000000..50ca13caa6 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-strip-layer/wwwroot/index.css @@ -0,0 +1,4 @@ +/* +CSS styles are loaded from the shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/data-chart/data-annotation-strip-layer/wwwroot/index.html b/samples/charts/data-chart/data-annotation-strip-layer/wwwroot/index.html new file mode 100644 index 0000000000..8833030d8e --- /dev/null +++ b/samples/charts/data-chart/data-annotation-strip-layer/wwwroot/index.html @@ -0,0 +1,30 @@ + + + + + + + + + + Samples | IgniteUI for Blazor | Infragistics + + + + + + + + + +
+ An unhandled error has occurred. + Reload + 🗙 +
+ + + + + + diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/WorldStats.cs b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/WorldStats.cs index b3edbfa500..dd958cc5ca 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/WorldStats.cs +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/WorldStats.cs @@ -197,7 +197,7 @@ public WorldStats() Continent = @"Asia", Population = 157826578, GdpTotal = 628400, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Southern Asia", Status = @"Country", Longitude = 89.935, @@ -289,7 +289,7 @@ public WorldStats() Continent = @"Africa", Population = 105350020, GdpTotal = 174700, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Africa", Status = @"Country", Longitude = 40.489, @@ -381,7 +381,7 @@ public WorldStats() Continent = @"Africa", Population = 83301151, GdpTotal = 66010, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Middle Africa", Status = @"Country", Longitude = 21.738, @@ -565,7 +565,7 @@ public WorldStats() Continent = @"Asia", Population = 55123814, GdpTotal = 311100, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Asia", Status = @"Country", Longitude = 96.028, @@ -611,7 +611,7 @@ public WorldStats() Continent = @"Africa", Population = 53950935, GdpTotal = 150600, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Africa", Status = @"Country", Longitude = 34.894, @@ -795,7 +795,7 @@ public WorldStats() Continent = @"Africa", Population = 39570125, GdpTotal = 84930, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Africa", Status = @"Country", Longitude = 32.27, @@ -910,7 +910,7 @@ public WorldStats() Continent = @"Asia", Population = 34124811, GdpTotal = 64080, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Southern Asia", Status = @"Country", Longitude = 66.041, @@ -1048,7 +1048,7 @@ public WorldStats() Continent = @"Asia", Population = 29384297, GdpTotal = 71520, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Southern Asia", Status = @"Country", Longitude = 82.328, @@ -1071,7 +1071,7 @@ public WorldStats() Continent = @"Africa", Population = 29310273, GdpTotal = 189000, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Middle Africa", Status = @"Country", Longitude = 18.097, @@ -1117,7 +1117,7 @@ public WorldStats() Continent = @"Asia", Population = 28036829, GdpTotal = 73450, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Middle East", Status = @"Country", Longitude = 48.53, @@ -1163,7 +1163,7 @@ public WorldStats() Continent = @"Africa", Population = 26573706, GdpTotal = 35010, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Africa", Status = @"Country", Longitude = 38.075, @@ -1186,7 +1186,7 @@ public WorldStats() Continent = @"Asia", Population = 25248140, GdpTotal = 40000, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Asia", Status = @"Country", Longitude = 127.01, @@ -1209,7 +1209,7 @@ public WorldStats() Continent = @"Africa", Population = 25054161, GdpTotal = 36860, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Africa", Status = @"Country", Longitude = 46.87, @@ -1370,7 +1370,7 @@ public WorldStats() Continent = @"Africa", Population = 20107509, GdpTotal = 32990, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Western Africa", Status = @"Country", Longitude = -1.567, @@ -1393,7 +1393,7 @@ public WorldStats() Continent = @"Africa", Population = 19245344, GdpTotal = 20150, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Northern Africa", Status = @"Country", Longitude = 10.845, @@ -1416,7 +1416,7 @@ public WorldStats() Continent = @"Africa", Population = 19196246, GdpTotal = 21200, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Africa", Status = @"Country", Longitude = 34.282, @@ -1485,7 +1485,7 @@ public WorldStats() Continent = @"Africa", Population = 17885245, GdpTotal = 38090, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Western Africa", Status = @"Country", Longitude = -1.496, @@ -1577,7 +1577,7 @@ public WorldStats() Continent = @"Asia", Population = 16204486, GdpTotal = 58940, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Asia", Status = @"Country", Longitude = 104.96, @@ -1600,7 +1600,7 @@ public WorldStats() Continent = @"Africa", Population = 15972000, GdpTotal = 65170, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Africa", Status = @"Country", Longitude = 26.301, @@ -1646,7 +1646,7 @@ public WorldStats() Continent = @"Africa", Population = 14668522, GdpTotal = 39720, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Western Africa", Status = @"Country", Longitude = -14.76, @@ -1692,7 +1692,7 @@ public WorldStats() Continent = @"Africa", Population = 13026129, GdpTotal = 20880, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Africa", Status = @"Country", Longitude = 29.708, @@ -1715,7 +1715,7 @@ public WorldStats() Continent = @"Africa", Population = 12413867, GdpTotal = 16080, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Western Africa", Status = @"Country", Longitude = -9.522, @@ -1738,7 +1738,7 @@ public WorldStats() Continent = @"Africa", Population = 12075985, GdpTotal = 30590, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Northern Africa", Status = @"Country", Longitude = 18.716, @@ -1761,7 +1761,7 @@ public WorldStats() Continent = @"Africa", Population = 11901484, GdpTotal = 21970, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Africa", Status = @"Country", Longitude = 29.867, @@ -1807,7 +1807,7 @@ public WorldStats() Continent = @"Africa", Population = 11466756, GdpTotal = 7892, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Africa", Status = @"Country", Longitude = 29.913, @@ -1899,7 +1899,7 @@ public WorldStats() Continent = @"Africa", Population = 11038805, GdpTotal = 24310, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Western Africa", Status = @"Country", Longitude = 2.704, @@ -2014,7 +2014,7 @@ public WorldStats() Continent = @"North America", Population = 10646714, GdpTotal = 19340, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Central America", Status = @"Country", Longitude = -72.23, @@ -2267,7 +2267,7 @@ public WorldStats() Continent = @"Africa", Population = 7965055, GdpTotal = 11610, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Western Africa", Status = @"Country", Longitude = 1.146, @@ -2290,7 +2290,7 @@ public WorldStats() Continent = @"Africa", Population = 7531386, GdpTotal = 4719, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Africa", Status = @"Country", Longitude = 44.134, @@ -2336,7 +2336,7 @@ public WorldStats() Continent = @"Asia", Population = 7126706, GdpTotal = 40960, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Asia", Status = @"Country", Longitude = 102.36, @@ -2520,7 +2520,7 @@ public WorldStats() Continent = @"Africa", Population = 6163195, GdpTotal = 10640, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Western Africa", Status = @"Country", Longitude = -11.78, @@ -2589,7 +2589,7 @@ public WorldStats() Continent = @"Africa", Population = 5918919, GdpTotal = 9169, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Africa", Status = @"Country", Longitude = 39.772, @@ -2658,7 +2658,7 @@ public WorldStats() Continent = @"Africa", Population = 5625118, GdpTotal = 3206, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Middle Africa", Status = @"Country", Longitude = 20.917, @@ -2888,7 +2888,7 @@ public WorldStats() Continent = @"Africa", Population = 4689021, GdpTotal = 3881, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Western Africa", Status = @"Country", Longitude = -9.454, @@ -3003,7 +3003,7 @@ public WorldStats() Continent = @"Africa", Population = 3758571, GdpTotal = 16710, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Western Africa", Status = @"Country", Longitude = -8.89, @@ -3394,7 +3394,7 @@ public WorldStats() Continent = @"Africa", Population = 2051363, GdpTotal = 3387, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Western Africa", Status = @"Country", Longitude = -15.32, @@ -3440,7 +3440,7 @@ public WorldStats() Continent = @"Africa", Population = 1958042, GdpTotal = 6019, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Southern Africa", Status = @"Country", Longitude = 28.221, @@ -3509,7 +3509,7 @@ public WorldStats() Continent = @"Africa", Population = 1792338, GdpTotal = 2851, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Western Africa", Status = @"Country", Longitude = -14.59, @@ -3624,7 +3624,7 @@ public WorldStats() Continent = @"Asia", Population = 1291358, GdpTotal = 4975, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Asia", Status = @"Country", Longitude = 125.66, @@ -3739,7 +3739,7 @@ public WorldStats() Continent = @"Africa", Population = 865267, GdpTotal = 3345, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Africa", Status = @"Country", Longitude = 42.587, @@ -3762,7 +3762,7 @@ public WorldStats() Continent = @"Africa", Population = 808080, GdpTotal = 1259, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Africa", Status = @"Country", Longitude = 43.877, @@ -3785,7 +3785,7 @@ public WorldStats() Continent = @"Africa", Population = 778358, GdpTotal = 31770, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Middle Africa", Status = @"Country", Longitude = 10.521, @@ -3808,7 +3808,7 @@ public WorldStats() Continent = @"Asia", Population = 758288, GdpTotal = 6432, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Southern Asia", Status = @"Country", Longitude = 90.411, @@ -3854,7 +3854,7 @@ public WorldStats() Continent = @"Oceania", Population = 647581, GdpTotal = 1198, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Melanesia", Status = @"Country", Longitude = 161.3, @@ -3900,7 +3900,7 @@ public WorldStats() Continent = @"Africa", Population = 603253, GdpTotal = 907, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Northern Africa", Status = @"Dependency", Longitude = -12.89, @@ -4222,7 +4222,7 @@ public WorldStats() Continent = @"Oceania", Population = 282814, GdpTotal = 723, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Melanesia", Status = @"Country", Longitude = 168.21, @@ -4291,7 +4291,7 @@ public WorldStats() Continent = @"Africa", Population = 201025, GdpTotal = 694, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Middle Africa", Status = @"Country", Longitude = 6.598, @@ -4314,7 +4314,7 @@ public WorldStats() Continent = @"Oceania", Population = 200108, GdpTotal = 1046, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Polynesia", Status = @"Country", Longitude = -172.1, @@ -4452,7 +4452,7 @@ public WorldStats() Continent = @"Oceania", Population = 108145, GdpTotal = 211, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Micronesia", Status = @"Country", Longitude = -157.333, diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/WorldStats.cs b/samples/charts/data-chart/scatter-bubble-chart-single-source/WorldStats.cs index b3edbfa500..dd958cc5ca 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/WorldStats.cs +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/WorldStats.cs @@ -197,7 +197,7 @@ public WorldStats() Continent = @"Asia", Population = 157826578, GdpTotal = 628400, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Southern Asia", Status = @"Country", Longitude = 89.935, @@ -289,7 +289,7 @@ public WorldStats() Continent = @"Africa", Population = 105350020, GdpTotal = 174700, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Africa", Status = @"Country", Longitude = 40.489, @@ -381,7 +381,7 @@ public WorldStats() Continent = @"Africa", Population = 83301151, GdpTotal = 66010, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Middle Africa", Status = @"Country", Longitude = 21.738, @@ -565,7 +565,7 @@ public WorldStats() Continent = @"Asia", Population = 55123814, GdpTotal = 311100, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Asia", Status = @"Country", Longitude = 96.028, @@ -611,7 +611,7 @@ public WorldStats() Continent = @"Africa", Population = 53950935, GdpTotal = 150600, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Africa", Status = @"Country", Longitude = 34.894, @@ -795,7 +795,7 @@ public WorldStats() Continent = @"Africa", Population = 39570125, GdpTotal = 84930, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Africa", Status = @"Country", Longitude = 32.27, @@ -910,7 +910,7 @@ public WorldStats() Continent = @"Asia", Population = 34124811, GdpTotal = 64080, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Southern Asia", Status = @"Country", Longitude = 66.041, @@ -1048,7 +1048,7 @@ public WorldStats() Continent = @"Asia", Population = 29384297, GdpTotal = 71520, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Southern Asia", Status = @"Country", Longitude = 82.328, @@ -1071,7 +1071,7 @@ public WorldStats() Continent = @"Africa", Population = 29310273, GdpTotal = 189000, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Middle Africa", Status = @"Country", Longitude = 18.097, @@ -1117,7 +1117,7 @@ public WorldStats() Continent = @"Asia", Population = 28036829, GdpTotal = 73450, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Middle East", Status = @"Country", Longitude = 48.53, @@ -1163,7 +1163,7 @@ public WorldStats() Continent = @"Africa", Population = 26573706, GdpTotal = 35010, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Africa", Status = @"Country", Longitude = 38.075, @@ -1186,7 +1186,7 @@ public WorldStats() Continent = @"Asia", Population = 25248140, GdpTotal = 40000, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Asia", Status = @"Country", Longitude = 127.01, @@ -1209,7 +1209,7 @@ public WorldStats() Continent = @"Africa", Population = 25054161, GdpTotal = 36860, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Africa", Status = @"Country", Longitude = 46.87, @@ -1370,7 +1370,7 @@ public WorldStats() Continent = @"Africa", Population = 20107509, GdpTotal = 32990, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Western Africa", Status = @"Country", Longitude = -1.567, @@ -1393,7 +1393,7 @@ public WorldStats() Continent = @"Africa", Population = 19245344, GdpTotal = 20150, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Northern Africa", Status = @"Country", Longitude = 10.845, @@ -1416,7 +1416,7 @@ public WorldStats() Continent = @"Africa", Population = 19196246, GdpTotal = 21200, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Africa", Status = @"Country", Longitude = 34.282, @@ -1485,7 +1485,7 @@ public WorldStats() Continent = @"Africa", Population = 17885245, GdpTotal = 38090, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Western Africa", Status = @"Country", Longitude = -1.496, @@ -1577,7 +1577,7 @@ public WorldStats() Continent = @"Asia", Population = 16204486, GdpTotal = 58940, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Asia", Status = @"Country", Longitude = 104.96, @@ -1600,7 +1600,7 @@ public WorldStats() Continent = @"Africa", Population = 15972000, GdpTotal = 65170, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Africa", Status = @"Country", Longitude = 26.301, @@ -1646,7 +1646,7 @@ public WorldStats() Continent = @"Africa", Population = 14668522, GdpTotal = 39720, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Western Africa", Status = @"Country", Longitude = -14.76, @@ -1692,7 +1692,7 @@ public WorldStats() Continent = @"Africa", Population = 13026129, GdpTotal = 20880, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Africa", Status = @"Country", Longitude = 29.708, @@ -1715,7 +1715,7 @@ public WorldStats() Continent = @"Africa", Population = 12413867, GdpTotal = 16080, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Western Africa", Status = @"Country", Longitude = -9.522, @@ -1738,7 +1738,7 @@ public WorldStats() Continent = @"Africa", Population = 12075985, GdpTotal = 30590, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Northern Africa", Status = @"Country", Longitude = 18.716, @@ -1761,7 +1761,7 @@ public WorldStats() Continent = @"Africa", Population = 11901484, GdpTotal = 21970, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Africa", Status = @"Country", Longitude = 29.867, @@ -1807,7 +1807,7 @@ public WorldStats() Continent = @"Africa", Population = 11466756, GdpTotal = 7892, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Africa", Status = @"Country", Longitude = 29.913, @@ -1899,7 +1899,7 @@ public WorldStats() Continent = @"Africa", Population = 11038805, GdpTotal = 24310, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Western Africa", Status = @"Country", Longitude = 2.704, @@ -2014,7 +2014,7 @@ public WorldStats() Continent = @"North America", Population = 10646714, GdpTotal = 19340, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Central America", Status = @"Country", Longitude = -72.23, @@ -2267,7 +2267,7 @@ public WorldStats() Continent = @"Africa", Population = 7965055, GdpTotal = 11610, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Western Africa", Status = @"Country", Longitude = 1.146, @@ -2290,7 +2290,7 @@ public WorldStats() Continent = @"Africa", Population = 7531386, GdpTotal = 4719, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Africa", Status = @"Country", Longitude = 44.134, @@ -2336,7 +2336,7 @@ public WorldStats() Continent = @"Asia", Population = 7126706, GdpTotal = 40960, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Asia", Status = @"Country", Longitude = 102.36, @@ -2520,7 +2520,7 @@ public WorldStats() Continent = @"Africa", Population = 6163195, GdpTotal = 10640, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Western Africa", Status = @"Country", Longitude = -11.78, @@ -2589,7 +2589,7 @@ public WorldStats() Continent = @"Africa", Population = 5918919, GdpTotal = 9169, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Africa", Status = @"Country", Longitude = 39.772, @@ -2658,7 +2658,7 @@ public WorldStats() Continent = @"Africa", Population = 5625118, GdpTotal = 3206, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Middle Africa", Status = @"Country", Longitude = 20.917, @@ -2888,7 +2888,7 @@ public WorldStats() Continent = @"Africa", Population = 4689021, GdpTotal = 3881, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Western Africa", Status = @"Country", Longitude = -9.454, @@ -3003,7 +3003,7 @@ public WorldStats() Continent = @"Africa", Population = 3758571, GdpTotal = 16710, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Western Africa", Status = @"Country", Longitude = -8.89, @@ -3394,7 +3394,7 @@ public WorldStats() Continent = @"Africa", Population = 2051363, GdpTotal = 3387, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Western Africa", Status = @"Country", Longitude = -15.32, @@ -3440,7 +3440,7 @@ public WorldStats() Continent = @"Africa", Population = 1958042, GdpTotal = 6019, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Southern Africa", Status = @"Country", Longitude = 28.221, @@ -3509,7 +3509,7 @@ public WorldStats() Continent = @"Africa", Population = 1792338, GdpTotal = 2851, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Western Africa", Status = @"Country", Longitude = -14.59, @@ -3624,7 +3624,7 @@ public WorldStats() Continent = @"Asia", Population = 1291358, GdpTotal = 4975, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Asia", Status = @"Country", Longitude = 125.66, @@ -3739,7 +3739,7 @@ public WorldStats() Continent = @"Africa", Population = 865267, GdpTotal = 3345, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Africa", Status = @"Country", Longitude = 42.587, @@ -3762,7 +3762,7 @@ public WorldStats() Continent = @"Africa", Population = 808080, GdpTotal = 1259, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Africa", Status = @"Country", Longitude = 43.877, @@ -3785,7 +3785,7 @@ public WorldStats() Continent = @"Africa", Population = 778358, GdpTotal = 31770, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Middle Africa", Status = @"Country", Longitude = 10.521, @@ -3808,7 +3808,7 @@ public WorldStats() Continent = @"Asia", Population = 758288, GdpTotal = 6432, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Southern Asia", Status = @"Country", Longitude = 90.411, @@ -3854,7 +3854,7 @@ public WorldStats() Continent = @"Oceania", Population = 647581, GdpTotal = 1198, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Melanesia", Status = @"Country", Longitude = 161.3, @@ -3900,7 +3900,7 @@ public WorldStats() Continent = @"Africa", Population = 603253, GdpTotal = 907, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Northern Africa", Status = @"Dependency", Longitude = -12.89, @@ -4222,7 +4222,7 @@ public WorldStats() Continent = @"Oceania", Population = 282814, GdpTotal = 723, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Melanesia", Status = @"Country", Longitude = 168.21, @@ -4291,7 +4291,7 @@ public WorldStats() Continent = @"Africa", Population = 201025, GdpTotal = 694, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Middle Africa", Status = @"Country", Longitude = 6.598, @@ -4314,7 +4314,7 @@ public WorldStats() Continent = @"Oceania", Population = 200108, GdpTotal = 1046, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Polynesia", Status = @"Country", Longitude = -172.1, @@ -4452,7 +4452,7 @@ public WorldStats() Continent = @"Oceania", Population = 108145, GdpTotal = 211, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Micronesia", Status = @"Country", Longitude = -157.333, diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/WorldStats.cs b/samples/charts/data-chart/scatter-bubble-chart-styling/WorldStats.cs index b3edbfa500..dd958cc5ca 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/WorldStats.cs +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/WorldStats.cs @@ -197,7 +197,7 @@ public WorldStats() Continent = @"Asia", Population = 157826578, GdpTotal = 628400, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Southern Asia", Status = @"Country", Longitude = 89.935, @@ -289,7 +289,7 @@ public WorldStats() Continent = @"Africa", Population = 105350020, GdpTotal = 174700, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Africa", Status = @"Country", Longitude = 40.489, @@ -381,7 +381,7 @@ public WorldStats() Continent = @"Africa", Population = 83301151, GdpTotal = 66010, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Middle Africa", Status = @"Country", Longitude = 21.738, @@ -565,7 +565,7 @@ public WorldStats() Continent = @"Asia", Population = 55123814, GdpTotal = 311100, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Asia", Status = @"Country", Longitude = 96.028, @@ -611,7 +611,7 @@ public WorldStats() Continent = @"Africa", Population = 53950935, GdpTotal = 150600, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Africa", Status = @"Country", Longitude = 34.894, @@ -795,7 +795,7 @@ public WorldStats() Continent = @"Africa", Population = 39570125, GdpTotal = 84930, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Africa", Status = @"Country", Longitude = 32.27, @@ -910,7 +910,7 @@ public WorldStats() Continent = @"Asia", Population = 34124811, GdpTotal = 64080, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Southern Asia", Status = @"Country", Longitude = 66.041, @@ -1048,7 +1048,7 @@ public WorldStats() Continent = @"Asia", Population = 29384297, GdpTotal = 71520, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Southern Asia", Status = @"Country", Longitude = 82.328, @@ -1071,7 +1071,7 @@ public WorldStats() Continent = @"Africa", Population = 29310273, GdpTotal = 189000, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Middle Africa", Status = @"Country", Longitude = 18.097, @@ -1117,7 +1117,7 @@ public WorldStats() Continent = @"Asia", Population = 28036829, GdpTotal = 73450, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Middle East", Status = @"Country", Longitude = 48.53, @@ -1163,7 +1163,7 @@ public WorldStats() Continent = @"Africa", Population = 26573706, GdpTotal = 35010, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Africa", Status = @"Country", Longitude = 38.075, @@ -1186,7 +1186,7 @@ public WorldStats() Continent = @"Asia", Population = 25248140, GdpTotal = 40000, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Asia", Status = @"Country", Longitude = 127.01, @@ -1209,7 +1209,7 @@ public WorldStats() Continent = @"Africa", Population = 25054161, GdpTotal = 36860, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Africa", Status = @"Country", Longitude = 46.87, @@ -1370,7 +1370,7 @@ public WorldStats() Continent = @"Africa", Population = 20107509, GdpTotal = 32990, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Western Africa", Status = @"Country", Longitude = -1.567, @@ -1393,7 +1393,7 @@ public WorldStats() Continent = @"Africa", Population = 19245344, GdpTotal = 20150, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Northern Africa", Status = @"Country", Longitude = 10.845, @@ -1416,7 +1416,7 @@ public WorldStats() Continent = @"Africa", Population = 19196246, GdpTotal = 21200, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Africa", Status = @"Country", Longitude = 34.282, @@ -1485,7 +1485,7 @@ public WorldStats() Continent = @"Africa", Population = 17885245, GdpTotal = 38090, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Western Africa", Status = @"Country", Longitude = -1.496, @@ -1577,7 +1577,7 @@ public WorldStats() Continent = @"Asia", Population = 16204486, GdpTotal = 58940, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Asia", Status = @"Country", Longitude = 104.96, @@ -1600,7 +1600,7 @@ public WorldStats() Continent = @"Africa", Population = 15972000, GdpTotal = 65170, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Africa", Status = @"Country", Longitude = 26.301, @@ -1646,7 +1646,7 @@ public WorldStats() Continent = @"Africa", Population = 14668522, GdpTotal = 39720, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Western Africa", Status = @"Country", Longitude = -14.76, @@ -1692,7 +1692,7 @@ public WorldStats() Continent = @"Africa", Population = 13026129, GdpTotal = 20880, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Africa", Status = @"Country", Longitude = 29.708, @@ -1715,7 +1715,7 @@ public WorldStats() Continent = @"Africa", Population = 12413867, GdpTotal = 16080, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Western Africa", Status = @"Country", Longitude = -9.522, @@ -1738,7 +1738,7 @@ public WorldStats() Continent = @"Africa", Population = 12075985, GdpTotal = 30590, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Northern Africa", Status = @"Country", Longitude = 18.716, @@ -1761,7 +1761,7 @@ public WorldStats() Continent = @"Africa", Population = 11901484, GdpTotal = 21970, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Africa", Status = @"Country", Longitude = 29.867, @@ -1807,7 +1807,7 @@ public WorldStats() Continent = @"Africa", Population = 11466756, GdpTotal = 7892, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Africa", Status = @"Country", Longitude = 29.913, @@ -1899,7 +1899,7 @@ public WorldStats() Continent = @"Africa", Population = 11038805, GdpTotal = 24310, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Western Africa", Status = @"Country", Longitude = 2.704, @@ -2014,7 +2014,7 @@ public WorldStats() Continent = @"North America", Population = 10646714, GdpTotal = 19340, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Central America", Status = @"Country", Longitude = -72.23, @@ -2267,7 +2267,7 @@ public WorldStats() Continent = @"Africa", Population = 7965055, GdpTotal = 11610, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Western Africa", Status = @"Country", Longitude = 1.146, @@ -2290,7 +2290,7 @@ public WorldStats() Continent = @"Africa", Population = 7531386, GdpTotal = 4719, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Africa", Status = @"Country", Longitude = 44.134, @@ -2336,7 +2336,7 @@ public WorldStats() Continent = @"Asia", Population = 7126706, GdpTotal = 40960, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Asia", Status = @"Country", Longitude = 102.36, @@ -2520,7 +2520,7 @@ public WorldStats() Continent = @"Africa", Population = 6163195, GdpTotal = 10640, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Western Africa", Status = @"Country", Longitude = -11.78, @@ -2589,7 +2589,7 @@ public WorldStats() Continent = @"Africa", Population = 5918919, GdpTotal = 9169, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Africa", Status = @"Country", Longitude = 39.772, @@ -2658,7 +2658,7 @@ public WorldStats() Continent = @"Africa", Population = 5625118, GdpTotal = 3206, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Middle Africa", Status = @"Country", Longitude = 20.917, @@ -2888,7 +2888,7 @@ public WorldStats() Continent = @"Africa", Population = 4689021, GdpTotal = 3881, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Western Africa", Status = @"Country", Longitude = -9.454, @@ -3003,7 +3003,7 @@ public WorldStats() Continent = @"Africa", Population = 3758571, GdpTotal = 16710, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Western Africa", Status = @"Country", Longitude = -8.89, @@ -3394,7 +3394,7 @@ public WorldStats() Continent = @"Africa", Population = 2051363, GdpTotal = 3387, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Western Africa", Status = @"Country", Longitude = -15.32, @@ -3440,7 +3440,7 @@ public WorldStats() Continent = @"Africa", Population = 1958042, GdpTotal = 6019, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Southern Africa", Status = @"Country", Longitude = 28.221, @@ -3509,7 +3509,7 @@ public WorldStats() Continent = @"Africa", Population = 1792338, GdpTotal = 2851, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Western Africa", Status = @"Country", Longitude = -14.59, @@ -3624,7 +3624,7 @@ public WorldStats() Continent = @"Asia", Population = 1291358, GdpTotal = 4975, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Asia", Status = @"Country", Longitude = 125.66, @@ -3739,7 +3739,7 @@ public WorldStats() Continent = @"Africa", Population = 865267, GdpTotal = 3345, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Africa", Status = @"Country", Longitude = 42.587, @@ -3762,7 +3762,7 @@ public WorldStats() Continent = @"Africa", Population = 808080, GdpTotal = 1259, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Eastern Africa", Status = @"Country", Longitude = 43.877, @@ -3785,7 +3785,7 @@ public WorldStats() Continent = @"Africa", Population = 778358, GdpTotal = 31770, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Middle Africa", Status = @"Country", Longitude = 10.521, @@ -3808,7 +3808,7 @@ public WorldStats() Continent = @"Asia", Population = 758288, GdpTotal = 6432, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Southern Asia", Status = @"Country", Longitude = 90.411, @@ -3854,7 +3854,7 @@ public WorldStats() Continent = @"Oceania", Population = 647581, GdpTotal = 1198, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Melanesia", Status = @"Country", Longitude = 161.3, @@ -3900,7 +3900,7 @@ public WorldStats() Continent = @"Africa", Population = 603253, GdpTotal = 907, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Northern Africa", Status = @"Dependency", Longitude = -12.89, @@ -4222,7 +4222,7 @@ public WorldStats() Continent = @"Oceania", Population = 282814, GdpTotal = 723, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Melanesia", Status = @"Country", Longitude = 168.21, @@ -4291,7 +4291,7 @@ public WorldStats() Continent = @"Africa", Population = 201025, GdpTotal = 694, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Middle Africa", Status = @"Country", Longitude = 6.598, @@ -4314,7 +4314,7 @@ public WorldStats() Continent = @"Oceania", Population = 200108, GdpTotal = 1046, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Polynesia", Status = @"Country", Longitude = -172.1, @@ -4452,7 +4452,7 @@ public WorldStats() Continent = @"Oceania", Population = 108145, GdpTotal = 211, - Economy = @"Least developed", + Economy = @"Least Developed", Region = @"Micronesia", Status = @"Country", Longitude = -157.333, diff --git a/samples/grids/grid/action-strip/App.razor b/samples/grids/grid/action-strip/App.razor index 3930a069c3..8b112c2bdf 100644 --- a/samples/grids/grid/action-strip/App.razor +++ b/samples/grids/grid/action-strip/App.razor @@ -27,50 +27,36 @@ @@ -86,13 +72,6 @@ { var grid = this.grid; var actionStrip = this.actionStrip; - var productName = this.productName; - var unitPrice = this.unitPrice; - var unitsOnOrder = this.unitsOnOrder; - var unitsInStock = this.unitsInStock; - var quantityPerUnit = this.quantityPerUnit; - var reorderLevel = this.reorderLevel; - var discontinued = this.discontinued; } @@ -112,13 +91,6 @@ } } private IgbActionStrip actionStrip; - private IgbColumn productName; - private IgbColumn unitPrice; - private IgbColumn unitsOnOrder; - private IgbColumn unitsInStock; - private IgbColumn quantityPerUnit; - private IgbColumn reorderLevel; - private IgbColumn discontinued; private NwindData _nwindData = null; public NwindData NwindData diff --git a/samples/grids/grid/binding-crud-data/App.razor b/samples/grids/grid/binding-crud-data/App.razor index 2b8b055275..6626c69e5c 100644 --- a/samples/grids/grid/binding-crud-data/App.razor +++ b/samples/grids/grid/binding-crud-data/App.razor @@ -14,36 +14,26 @@ PagingMode="GridPagingMode.Remote" RowEditable="true"> @@ -58,20 +48,10 @@ protected override async Task OnAfterRenderAsync(bool firstRender) { var grid = this.grid; - var productName = this.productName; - var quantityPerUnit = this.quantityPerUnit; - var unitPrice = this.unitPrice; - var orderDate = this.orderDate; - var discontinued = this.discontinued; } private IgbGrid grid; - private IgbColumn productName; - private IgbColumn quantityPerUnit; - private IgbColumn unitPrice; - private IgbColumn orderDate; - private IgbColumn discontinued; private NwindData _nwindData = null; public NwindData NwindData diff --git a/samples/grids/grid/column-hiding-options/App.razor b/samples/grids/grid/column-hiding-options/App.razor index 13bd13b833..cbc63e9f24 100644 --- a/samples/grids/grid/column-hiding-options/App.razor +++ b/samples/grids/grid/column-hiding-options/App.razor @@ -28,8 +28,6 @@ @@ -101,30 +81,10 @@ protected override async Task OnAfterRenderAsync(bool firstRender) { var grid = this.grid; - var iD = this.iD; - var company = this.company; - var contactName = this.contactName; - var contactTitle = this.contactTitle; - var address = this.address; - var city = this.city; - var region = this.region; - var postalCode = this.postalCode; - var country = this.country; - var phone = this.phone; } private IgbGrid grid; - private IgbColumn iD; - private IgbColumn company; - private IgbColumn contactName; - private IgbColumn contactTitle; - private IgbColumn address; - private IgbColumn city; - private IgbColumn region; - private IgbColumn postalCode; - private IgbColumn country; - private IgbColumn phone; private CustomersData _customersData = null; public CustomersData CustomersData diff --git a/samples/grids/grid/data-batch-editing-actions/App.razor b/samples/grids/grid/data-batch-editing-actions/App.razor index 81265fd70b..397961fd43 100644 --- a/samples/grids/grid/data-batch-editing-actions/App.razor +++ b/samples/grids/grid/data-batch-editing-actions/App.razor @@ -64,71 +64,51 @@ @@ -151,16 +131,6 @@ var propertyEditorPropertyDescription4 = this.propertyEditorPropertyDescription4; var grid = this.grid; var column1 = this.column1; - var productID = this.productID; - var productName = this.productName; - var unitPrice = this.unitPrice; - var unitsOnOrder = this.unitsOnOrder; - var unitsInStock = this.unitsInStock; - var quantityPerUnit = this.quantityPerUnit; - var reorderLevel = this.reorderLevel; - var supplierID = this.supplierID; - var categoryID = this.categoryID; - var discontinued = this.discontinued; this.BindElements = () => { propertyEditorPanel1.Target = this.grid; @@ -176,16 +146,6 @@ private IgbPropertyEditorPropertyDescription propertyEditorPropertyDescription4; private IgbGrid grid; private IgbColumn column1; - private IgbColumn productID; - private IgbColumn productName; - private IgbColumn unitPrice; - private IgbColumn unitsOnOrder; - private IgbColumn unitsInStock; - private IgbColumn quantityPerUnit; - private IgbColumn reorderLevel; - private IgbColumn supplierID; - private IgbColumn categoryID; - private IgbColumn discontinued; private NwindData _nwindData = null; public NwindData NwindData diff --git a/samples/grids/grid/data-summary-options/App.razor b/samples/grids/grid/data-summary-options/App.razor index 681b6768ba..ae176a38c3 100644 --- a/samples/grids/grid/data-summary-options/App.razor +++ b/samples/grids/grid/data-summary-options/App.razor @@ -12,30 +12,22 @@ PrimaryKey="ProductID" ColumnInitScript="WebGridCustomSummary"> @@ -88,30 +68,10 @@ protected override async Task OnAfterRenderAsync(bool firstRender) { var grid = this.grid; - var productID = this.productID; - var productName = this.productName; - var unitPrice = this.unitPrice; - var unitsOnOrder = this.unitsOnOrder; - var unitsInStock = this.unitsInStock; - var quantityPerUnit = this.quantityPerUnit; - var reorderLevel = this.reorderLevel; - var supplierID = this.supplierID; - var categoryID = this.categoryID; - var discontinued = this.discontinued; } private IgbGrid grid; - private IgbColumn productID; - private IgbColumn productName; - private IgbColumn unitPrice; - private IgbColumn unitsOnOrder; - private IgbColumn unitsInStock; - private IgbColumn quantityPerUnit; - private IgbColumn reorderLevel; - private IgbColumn supplierID; - private IgbColumn categoryID; - private IgbColumn discontinued; private NwindData _nwindData = null; public NwindData NwindData diff --git a/samples/grids/grid/data-validator-service-extended/App.razor b/samples/grids/grid/data-validator-service-extended/App.razor index 248a5e28e9..ec027dd0e5 100644 --- a/samples/grids/grid/data-validator-service-extended/App.razor +++ b/samples/grids/grid/data-validator-service-extended/App.razor @@ -49,71 +49,51 @@ RowEditable="true" PrimaryKey="ProductID"> @@ -134,16 +114,6 @@ var propertyEditorPropertyDescription2 = this.propertyEditorPropertyDescription2; var propertyEditorPropertyDescription3 = this.propertyEditorPropertyDescription3; var grid = this.grid; - var productID = this.productID; - var productName = this.productName; - var unitPrice = this.unitPrice; - var unitsOnOrder = this.unitsOnOrder; - var unitsInStock = this.unitsInStock; - var quantityPerUnit = this.quantityPerUnit; - var reorderLevel = this.reorderLevel; - var supplierID = this.supplierID; - var categoryID = this.categoryID; - var discontinued = this.discontinued; this.BindElements = () => { propertyEditorPanel1.Target = this.grid; @@ -157,16 +127,6 @@ private IgbPropertyEditorPropertyDescription propertyEditorPropertyDescription2; private IgbPropertyEditorPropertyDescription propertyEditorPropertyDescription3; private IgbGrid grid; - private IgbColumn productID; - private IgbColumn productName; - private IgbColumn unitPrice; - private IgbColumn unitsOnOrder; - private IgbColumn unitsInStock; - private IgbColumn quantityPerUnit; - private IgbColumn reorderLevel; - private IgbColumn supplierID; - private IgbColumn categoryID; - private IgbColumn discontinued; private NwindData _nwindData = null; public NwindData NwindData diff --git a/samples/grids/grid/data-validator-service/App.razor b/samples/grids/grid/data-validator-service/App.razor index 4e9b29f1c6..d1c46b3617 100644 --- a/samples/grids/grid/data-validator-service/App.razor +++ b/samples/grids/grid/data-validator-service/App.razor @@ -31,35 +31,29 @@ RowEditable="true" PrimaryKey="ID"> + BodyTemplateScript="WebGridAvatarCellTemplate" + Name="column1" + @ref="column1"> + PipeArgs="ColumnPipeArgs1" + Name="column2" + @ref="column2"> { propertyEditor.Target = this.grid; @@ -167,12 +140,8 @@ private IgbPropertyEditorPanel propertyEditor; private IgbPropertyEditorPropertyDescription rowEditableEditor; private IgbGrid grid; - private IgbColumn avatar; - private IgbColumn name; - private IgbColumn company; - private IgbColumn email; - private IgbColumn fax; - private IgbColumn createdOn; + private IgbColumn column1; + private IgbColumn column2; private IgbColumnPipeArgs _columnPipeArgs1 = null; public IgbColumnPipeArgs ColumnPipeArgs1 { @@ -187,11 +156,6 @@ return this._columnPipeArgs1; } } - private IgbColumn lastActivity; - private IgbColumn estimatedSales; - private IgbColumn dealsLost; - private IgbColumn dealsWon; - private IgbColumn dealsPending; private EmployeesData _employeesData = null; public EmployeesData EmployeesData diff --git a/samples/grids/grid/editing-events/App.razor b/samples/grids/grid/editing-events/App.razor index e025c8828f..a55a99b970 100644 --- a/samples/grids/grid/editing-events/App.razor +++ b/samples/grids/grid/editing-events/App.razor @@ -25,8 +25,6 @@ + PipeArgs="ColumnPipeArgs1" + Name="column1" + @ref="column1"> + PipeArgs="ColumnPipeArgs2" + Name="column2" + @ref="column2"> + BodyTemplateScript="WebGridBooleanCellTemplate" + Name="column3" + @ref="column3"> @@ -105,11 +101,9 @@ var propertyEditor = this.propertyEditor; var sizeEditor = this.sizeEditor; var grid = this.grid; - var productName = this.productName; - var quantityPerUnit = this.quantityPerUnit; - var unitPrice = this.unitPrice; - var orderDate = this.orderDate; - var discontinued = this.discontinued; + var column1 = this.column1; + var column2 = this.column2; + var column3 = this.column3; this.BindElements = () => { propertyEditor.Target = this.grid; @@ -121,9 +115,7 @@ private IgbPropertyEditorPanel propertyEditor; private IgbPropertyEditorPropertyDescription sizeEditor; private IgbGrid grid; - private IgbColumn productName; - private IgbColumn quantityPerUnit; - private IgbColumn unitPrice; + private IgbColumn column1; private IgbColumnPipeArgs _columnPipeArgs1 = null; public IgbColumnPipeArgs ColumnPipeArgs1 { @@ -138,7 +130,7 @@ return this._columnPipeArgs1; } } - private IgbColumn orderDate; + private IgbColumn column2; private IgbColumnPipeArgs _columnPipeArgs2 = null; public IgbColumnPipeArgs ColumnPipeArgs2 { @@ -153,7 +145,7 @@ return this._columnPipeArgs2; } } - private IgbColumn discontinued; + private IgbColumn column3; private NwindData _nwindData = null; public NwindData NwindData diff --git a/samples/grids/grid/excel-style-filtering-sample-2/App.razor b/samples/grids/grid/excel-style-filtering-sample-2/App.razor index ea772c8da8..a03fd66c41 100644 --- a/samples/grids/grid/excel-style-filtering-sample-2/App.razor +++ b/samples/grids/grid/excel-style-filtering-sample-2/App.razor @@ -25,16 +25,12 @@ + PipeArgs="ColumnPipeArgs1" + Name="column1" + @ref="column1"> + PipeArgs="ColumnPipeArgs2" + Name="column2" + @ref="column2"> + BodyTemplateScript="WebGridBooleanCellTemplate" + Name="column3" + @ref="column3"> @@ -83,18 +79,14 @@ protected override async Task OnAfterRenderAsync(bool firstRender) { var grid = this.grid; - var productName = this.productName; - var quantityPerUnit = this.quantityPerUnit; - var unitPrice = this.unitPrice; - var orderDate = this.orderDate; - var discontinued = this.discontinued; + var column1 = this.column1; + var column2 = this.column2; + var column3 = this.column3; } private IgbGrid grid; - private IgbColumn productName; - private IgbColumn quantityPerUnit; - private IgbColumn unitPrice; + private IgbColumn column1; private IgbColumnPipeArgs _columnPipeArgs1 = null; public IgbColumnPipeArgs ColumnPipeArgs1 { @@ -109,7 +101,7 @@ return this._columnPipeArgs1; } } - private IgbColumn orderDate; + private IgbColumn column2; private IgbColumnPipeArgs _columnPipeArgs2 = null; public IgbColumnPipeArgs ColumnPipeArgs2 { @@ -124,7 +116,7 @@ return this._columnPipeArgs2; } } - private IgbColumn discontinued; + private IgbColumn column3; private NwindData _nwindData = null; public NwindData NwindData diff --git a/samples/grids/grid/excel-style-filtering-sample-3/App.razor b/samples/grids/grid/excel-style-filtering-sample-3/App.razor index e5a4fc34e5..82f37e4ce2 100644 --- a/samples/grids/grid/excel-style-filtering-sample-3/App.razor +++ b/samples/grids/grid/excel-style-filtering-sample-3/App.razor @@ -26,43 +26,39 @@ + PipeArgs="ColumnPipeArgs1" + Name="column1" + @ref="column1"> + PipeArgs="ColumnPipeArgs2" + Name="column2" + @ref="column2"> + BodyTemplateScript="WebGridBooleanCellTemplate" + Name="column3" + @ref="column3"> @@ -75,18 +71,14 @@ protected override async Task OnAfterRenderAsync(bool firstRender) { var grid = this.grid; - var productName = this.productName; - var quantityPerUnit = this.quantityPerUnit; - var unitPrice = this.unitPrice; - var orderDate = this.orderDate; - var discontinued = this.discontinued; + var column1 = this.column1; + var column2 = this.column2; + var column3 = this.column3; } private IgbGrid grid; - private IgbColumn productName; - private IgbColumn quantityPerUnit; - private IgbColumn unitPrice; + private IgbColumn column1; private IgbColumnPipeArgs _columnPipeArgs1 = null; public IgbColumnPipeArgs ColumnPipeArgs1 { @@ -101,7 +93,7 @@ return this._columnPipeArgs1; } } - private IgbColumn orderDate; + private IgbColumn column2; private IgbColumnPipeArgs _columnPipeArgs2 = null; public IgbColumnPipeArgs ColumnPipeArgs2 { @@ -116,7 +108,7 @@ return this._columnPipeArgs2; } } - private IgbColumn discontinued; + private IgbColumn column3; private NwindData _nwindData = null; public NwindData NwindData diff --git a/samples/grids/grid/excel-style-filtering-style/App.razor b/samples/grids/grid/excel-style-filtering-style/App.razor index 832145d8bd..13f9692863 100644 --- a/samples/grids/grid/excel-style-filtering-style/App.razor +++ b/samples/grids/grid/excel-style-filtering-style/App.razor @@ -14,16 +14,12 @@ AllowFiltering="true" FilterMode="FilterMode.ExcelStyleFilter"> + PipeArgs="ColumnPipeArgs1" + Name="column1" + @ref="column1"> + PipeArgs="ColumnPipeArgs2" + Name="column2" + @ref="column2"> + BodyTemplateScript="WebGridBooleanCellTemplate" + Name="column3" + @ref="column3"> @@ -72,18 +68,14 @@ protected override async Task OnAfterRenderAsync(bool firstRender) { var grid = this.grid; - var productName = this.productName; - var quantityPerUnit = this.quantityPerUnit; - var unitPrice = this.unitPrice; - var orderDate = this.orderDate; - var discontinued = this.discontinued; + var column1 = this.column1; + var column2 = this.column2; + var column3 = this.column3; } private IgbGrid grid; - private IgbColumn productName; - private IgbColumn quantityPerUnit; - private IgbColumn unitPrice; + private IgbColumn column1; private IgbColumnPipeArgs _columnPipeArgs1 = null; public IgbColumnPipeArgs ColumnPipeArgs1 { @@ -98,7 +90,7 @@ return this._columnPipeArgs1; } } - private IgbColumn orderDate; + private IgbColumn column2; private IgbColumnPipeArgs _columnPipeArgs2 = null; public IgbColumnPipeArgs ColumnPipeArgs2 { @@ -113,7 +105,7 @@ return this._columnPipeArgs2; } } - private IgbColumn discontinued; + private IgbColumn column3; private NwindData _nwindData = null; public NwindData NwindData diff --git a/samples/grids/grid/external-advanced-filtering/App.razor b/samples/grids/grid/external-advanced-filtering/App.razor index c079c38792..5d1a5dd76f 100644 --- a/samples/grids/grid/external-advanced-filtering/App.razor +++ b/samples/grids/grid/external-advanced-filtering/App.razor @@ -8,36 +8,26 @@ @ref="grid" Data="NwindData"> @@ -52,20 +42,10 @@ protected override async Task OnAfterRenderAsync(bool firstRender) { var grid = this.grid; - var productName = this.productName; - var quantityPerUnit = this.quantityPerUnit; - var unitPrice = this.unitPrice; - var orderDate = this.orderDate; - var discontinued = this.discontinued; } private IgbGrid grid; - private IgbColumn productName; - private IgbColumn quantityPerUnit; - private IgbColumn unitPrice; - private IgbColumn orderDate; - private IgbColumn discontinued; private NwindData _nwindData = null; public NwindData NwindData diff --git a/samples/grids/grid/filtering-options/App.razor b/samples/grids/grid/filtering-options/App.razor index b4d9647362..c09c2acfcc 100644 --- a/samples/grids/grid/filtering-options/App.razor +++ b/samples/grids/grid/filtering-options/App.razor @@ -11,38 +11,28 @@ AllowFiltering="true" FilterMode="FilterMode.QuickFilter"> @@ -58,20 +48,10 @@ protected override async Task OnAfterRenderAsync(bool firstRender) { var grid = this.grid; - var productName = this.productName; - var quantityPerUnit = this.quantityPerUnit; - var unitPrice = this.unitPrice; - var orderDate = this.orderDate; - var discontinued = this.discontinued; } private IgbGrid grid; - private IgbColumn productName; - private IgbColumn quantityPerUnit; - private IgbColumn unitPrice; - private IgbColumn orderDate; - private IgbColumn discontinued; private NwindData _nwindData = null; public NwindData NwindData diff --git a/samples/grids/grid/filtering-style/App.razor b/samples/grids/grid/filtering-style/App.razor index 410ac0dd4a..1fee3fce13 100644 --- a/samples/grids/grid/filtering-style/App.razor +++ b/samples/grids/grid/filtering-style/App.razor @@ -47,48 +47,44 @@ + PipeArgs="ColumnPipeArgs1" + Name="column1" + @ref="column1"> + PipeArgs="ColumnPipeArgs2" + Name="column2" + @ref="column2"> + BodyTemplateScript="WebGridBooleanCellTemplate" + Name="column3" + @ref="column3"> @@ -105,11 +101,9 @@ var propertyEditor = this.propertyEditor; var sizeEditor = this.sizeEditor; var grid = this.grid; - var productName = this.productName; - var quantityPerUnit = this.quantityPerUnit; - var unitPrice = this.unitPrice; - var orderDate = this.orderDate; - var discontinued = this.discontinued; + var column1 = this.column1; + var column2 = this.column2; + var column3 = this.column3; this.BindElements = () => { propertyEditor.Target = this.grid; @@ -121,9 +115,7 @@ private IgbPropertyEditorPanel propertyEditor; private IgbPropertyEditorPropertyDescription sizeEditor; private IgbGrid grid; - private IgbColumn productName; - private IgbColumn quantityPerUnit; - private IgbColumn unitPrice; + private IgbColumn column1; private IgbColumnPipeArgs _columnPipeArgs1 = null; public IgbColumnPipeArgs ColumnPipeArgs1 { @@ -138,7 +130,7 @@ return this._columnPipeArgs1; } } - private IgbColumn orderDate; + private IgbColumn column2; private IgbColumnPipeArgs _columnPipeArgs2 = null; public IgbColumnPipeArgs ColumnPipeArgs2 { @@ -153,7 +145,7 @@ return this._columnPipeArgs2; } } - private IgbColumn discontinued; + private IgbColumn column3; private NwindData _nwindData = null; public NwindData NwindData diff --git a/samples/grids/grid/groupby-styling/App.razor b/samples/grids/grid/groupby-styling/App.razor index 87ada7c143..903fcd5917 100644 --- a/samples/grids/grid/groupby-styling/App.razor +++ b/samples/grids/grid/groupby-styling/App.razor @@ -12,16 +12,12 @@ Data="InvoicesData" GroupingExpressions="GroupingExpression1"> + BodyTemplateScript="WebGridBooleanCellTemplate" + Name="column1" + @ref="column1"> + Groupable="true" + Name="column2" + @ref="column2"> @@ -68,22 +56,10 @@ protected override async Task OnAfterRenderAsync(bool firstRender) { var grid = this.grid; - var productID = this.productID; - var reorderLevel = this.reorderLevel; - var productName = this.productName; - var unitsInStock = this.unitsInStock; - var orderDate = this.orderDate; - var discontinued = this.discontinued; } private IgbGrid grid; - private IgbColumn productID; - private IgbColumn reorderLevel; - private IgbColumn productName; - private IgbColumn unitsInStock; - private IgbColumn orderDate; - private IgbColumn discontinued; private NwindData _nwindData = null; public NwindData NwindData diff --git a/samples/grids/grid/keyboard-mrl-navigation/App.razor b/samples/grids/grid/keyboard-mrl-navigation/App.razor index 5743bc5328..4d2a263715 100644 --- a/samples/grids/grid/keyboard-mrl-navigation/App.razor +++ b/samples/grids/grid/keyboard-mrl-navigation/App.razor @@ -16,8 +16,6 @@ @ref="companyInfo" Header="Company"> @@ -66,14 +62,10 @@ Expanded="false" VisibleWhenCollapsed="false"> @@ -93,32 +85,24 @@ Expanded="false" VisibleWhenCollapsed="true">