diff --git a/CODEOWNERS b/.github/CODEOWNERS similarity index 100% rename from CODEOWNERS rename to .github/CODEOWNERS diff --git a/README.md b/README.md index 96890958ff..d769a29e13 100644 --- a/README.md +++ b/README.md @@ -105,6 +105,21 @@ At this point, you should see a website hosted all examples of [Ignite UI for Bl ![Samples Browser Preview](./browser/IgBlazorSamples.Client/wwwroot/images/preview.PNG) +## Updating Packages in Samples + +NOTE Do NOT find replace version of packages in package.json files. + +- open this repo in VS Code +- open [./browser/IgBlazorSamples.Gulp/tasks/gulp-samples.js](./browser/tasks/gulp-samples.js) file +- navigate to the `updateIG` function +- update version of packages in `packageUpgrades` array +- open terminal window +- run `cd browser/IgBlazorSamples.Gulp` command +- run `npm install --legacy-peer-deps` command +- run the `gulp updateIG` command +- create AND merge a pull request with changes in all *.csproj files in this repository +- create 2nd pull request with similar changes in `/editor-templates/Blazor/main-template/BlazorClientApp.csproj` of the [igniteui-xplat-examples](https://github.com/IgniteUI/igniteui-xplat-examples) repository. + ## Resources diff --git a/azure-pipelines/build-pipeline-client.yml b/azure-pipelines/build-pipeline-client.yml index 639fc9ddb7..4b71b6d79b 100644 --- a/azure-pipelines/build-pipeline-client.yml +++ b/azure-pipelines/build-pipeline-client.yml @@ -38,8 +38,10 @@ stages: - template: templates/build-steps-template.yml parameters: - igVersion: '24.2.19' + igVersion: '24.2.52' igNuGetFeedUrl: $(IG_Nuget_Feed_URL) projectToBuild: Client isVerbose: ${{ parameters.isVerbose }} shouldCleanPostExectuion: ${{ parameters.shouldCleanPostExectuion }} + username: $(IG_Nuget_Feed_Username) + password: $(IG_Nuget_Feed_Password) diff --git a/azure-pipelines/build-pipeline-server.yml b/azure-pipelines/build-pipeline-server.yml index 2b4a6db9df..54232bebee 100644 --- a/azure-pipelines/build-pipeline-server.yml +++ b/azure-pipelines/build-pipeline-server.yml @@ -37,8 +37,10 @@ stages: - template: templates/build-steps-template.yml parameters: - igVersion: '24.2.19' + igVersion: '24.2.52' igNuGetFeedUrl: $(IG_Nuget_Feed_URL) projectToBuild: Server isVerbose: ${{ parameters.isVerbose }} shouldCleanPostExectuion: ${{ parameters.shouldCleanPostExectuion }} + username: $(IG_Nuget_Feed_Username) + password: $(IG_Nuget_Feed_Password) diff --git a/azure-pipelines/build-steps-template.yml b/azure-pipelines/build-steps-template.yml new file mode 100644 index 0000000000..9ab7b19e12 --- /dev/null +++ b/azure-pipelines/build-steps-template.yml @@ -0,0 +1,191 @@ +parameters: + - name: igVersion + - name: igNuGetFeedUrl + - name: projectToBuild + - name: isVerbose + default: false + - name: shouldCleanPostExectuion + - name: username + - name: password + +steps: + - task: NodeTool@0 + displayName: 'Install Node' + inputs: + versionSource: 'spec' + versionSpec: '16.x' + + - task: Npm@1 + displayName: 'npm ci' + inputs: + command: custom + workingDir: '$(Build.SourcesDirectory)\browser\IgBlazorSamples.Gulp' + verbose: ${{ parameters.isVerbose }} + customCommand: ci + + - task: CmdLine@2 + displayName: 'npx gulp copySamplesTo${{ parameters.projectToBuild }}' + inputs: + script: 'npx gulp copySamplesTo${{ parameters.projectToBuild }}' + workingDirectory: '$(Build.SourcesDirectory)\browser\IgBlazorSamples.Gulp' + failOnStderr: true + + - task: UseDotNet@2 + displayName: 'Install dotnet if not already present' + inputs: + packageType: 'sdk' + version: '9.0.101' # we are currently building a 8.0 app. TODO: Try upgrading to 8.x in the future + performMultiLevelLookup: false + + + - task: PowerShell@2 + displayName: 'Generate NuGet.config for IG ProGet NuGet feed and u' + inputs: + targetType: 'inline' + script: | + dotnet new nugetconfig --force + # The name of the source doesn't currently matter as the credentials are attached thanks to URL matching - according to MS docs + dotnet nuget add source ${{ parameters.igNuGetFeedUrl }} --name "IG ProGet NuGet" --allow-insecure-connections + # Manually add the allowInsecureConnections attribute to the nuget.config file + $nugetConfigPath = "$(Build.SourcesDirectory)\NuGet.config" + [xml]$nugetConfig = Get-Content $nugetConfigPath + $nugetConfig.configuration.packageSources.add | Where-Object { $_.name -eq "IG ProGet NuGet" } | ForEach-Object { $_.allowInsecureConnections = "true" } + $nugetConfig.Save($nugetConfigPath) + failOnStderr: true + showWarnings: true + workingDirectory: '$(Build.SourcesDirectory)' + + - task: PowerShell@2 + displayName: 'Identify trial packages and use licensed ones instead' + inputs: + targetType: 'inline' + script: | + $xml = [XML](Get-Content '.\IgBlazorSamples.${{ parameters.projectToBuild }}.csproj'); + + $nodes = $xml.SelectNodes("//PackageReference[starts-with(@Include,'IgniteUI')]") | + ForEach-Object { + $_.SetAttribute("Include",$_.Include.Replace(".Trial","")); + $_.SetAttribute("Version", "${{ parameters.igVersion }}"); + Write-Host $_.Version + } + $xml.Save('.\IgBlazorSamples.${{ parameters.projectToBuild }}.csproj') + failOnStderr: true + showWarnings: true + workingDirectory: '$(Build.SourcesDirectory)\browser\IgBlazorSamples.${{ parameters.projectToBuild }}' + + - task: DotNetCoreCLI@2 + displayName: 'dotnet restore' + continueOnError: true + enabled: true + inputs: + command: 'restore' + projects: '$(Build.SourcesDirectory)\browser\IgBlazorSamples.${{ parameters.projectToBuild }}' + # We want the dependency tree to be evaluated each time and to be sure that the dependencies are freshly downloaded + restoreArguments: '--ignore-failed-sources --no-cache --force' + feedsToUse: 'config' + nugetConfigPath: '$(Build.SourcesDirectory)\nuget.config' + # This task cannot use an apiKey directly (yet) so use any other service connection not based on an api key + externalFeedCredentials: 'IG ProGet IgniteUINuGet - Staging' + verbosityRestore: 'Diagnostic' + + - task: PowerShell@2 + displayName: 'Generate NuGet.config for IG ProGet NuGet feed' + inputs: + targetType: 'inline' + script: | + dotnet new nugetconfig --force + dotnet nuget add source ${{ parameters.igNuGetFeedUrl }} --name "IG ProGet NuGet" --allow-insecure-connections + # Manually add the allowInsecureConnections attribute to the nuget.config file + $nugetConfigPath = "$(Build.SourcesDirectory)\NuGet.config" + [xml]$nugetConfig = Get-Content $nugetConfigPath + $nugetConfig.configuration.packageSources.add | Where-Object { $_.name -eq "IG ProGet NuGet" } | ForEach-Object { $_.allowInsecureConnections = "true" } + # Add credentials to the nuget.config file + $packageSourceCredentials = $nugetConfig.CreateElement("packageSourceCredentials") + $source = $packageSourceCredentials.CreateElement("IG ProGet NuGet") + $add = $source.CreateElement("add") + $add.SetAttribute("key", "Username") + $add.SetAttribute("value", "$(username)") + $source.AppendChild($add) + $add = $source.CreateElement("add") + $add.SetAttribute("key", "ClearTextPassword") + $add.SetAttribute("value", "$(password)") + $source.AppendChild($add) + $packageSourceCredentials.AppendChild($source) + $nugetConfig.configuration.AppendChild($packageSourceCredentials) + $nugetConfig.Save($nugetConfigPath) + failOnStderr: true + showWarnings: true + workingDirectory: '$(Build.SourcesDirectory)' + + - task: DotNetCoreCLI@2 + displayName: 'dotnet restore B' + continueOnError: true + enabled: true + inputs: + command: 'restore' + projects: '$(Build.SourcesDirectory)\browser\IgBlazorSamples.${{ parameters.projectToBuild }}' + # We want the dependency tree to be evaluated each time and to be sure that the dependencies are freshly downloaded + restoreArguments: '--ignore-failed-sources --no-cache --force' + feedsToUse: 'config' + nugetConfigPath: '$(Build.SourcesDirectory)\nuget.config' + # This task cannot use an apiKey directly (yet) so use any other service connection not based on an api key + verbosityRestore: 'Diagnostic' + + + - task: DotNetCoreCLI@2 + displayName: 'dotnet restore 2' + continueOnError: true + enabled: true + inputs: + command: 'restore' + projects: '$(Build.SourcesDirectory)\browser\IgBlazorSamples.${{ parameters.projectToBuild }}' + # We want the dependency tree to be evaluated each time and to be sure that the dependencies are freshly downloaded + restoreArguments: '--ignore-failed-sources --no-cache --force --configfile $(Build.SourcesDirectory)\nuget.config' + # This task cannot use an apiKey directly (yet) so use any other service connection not based on an api key + externalFeedCredentials: 'IG ProGet IgniteUINuGet - Staging' + verbosityRestore: 'Diagnostic' + + - task: NuGetCommand@2 + inputs: + command: 'restore' + restoreSolution: '$(Build.SourcesDirectory)\browser\IgBlazorSamples.${{ parameters.projectToBuild }}\IgBlazorSamples.Client.csproj' + feedsToUse: 'config' + nugetConfigPath: '$(Build.SourcesDirectory)\nuget.config' + externalFeedCredentials: 'IG ProGet IgniteUINuGet - Staging' + + + + + - task: DeleteFiles@1 + displayName: 'Delete NuGet.config file - used only at build time' + enabled: false + inputs: + SourceFolder: '$(Build.SourcesDirectory)\' + Contents: '**/nuget.config' + + - task: CmdLine@2 + # Using a CmldLine call for this opeation, because I couldn't get it to work as expected with the DotNetCoreCLI task + displayName: 'dotnet publish' + inputs: + # Skip the restore process as it is already done. Got an error when I tried skipping the build process (which is already done as well) + script: 'dotnet publish --no-restore -c release -o $(Build.SourcesDirectory)\browser\IgBlazorSamples.${{ parameters.projectToBuild }}\publish' + workingDirectory: '$(Build.SourcesDirectory)\browser\IgBlazorSamples.${{ parameters.projectToBuild }}' + + - task: ArchiveFiles@2 + displayName: 'Package samples browser' + inputs: + verbose: ${{ parameters.isVerbose }} + rootFolderOrFile: '$(Build.SourcesDirectory)/browser/IgBlazorSamples.${{ parameters.projectToBuild }}/publish' + includeRootFolder: false + archiveType: 'zip' + archiveFile: '$(Build.ArtifactStagingDirectory)/BlazorSamples${{ parameters.projectToBuild }}.zip' + replaceExistingArchive: true + + - task: PublishPipelineArtifact@1 + displayName: 'Publish pipeline artifact' + inputs: + targetPath: '$(Build.ArtifactStagingDirectory)/BlazorSamples${{ parameters.projectToBuild }}.zip' + artifact: 'BlazorSamples${{ parameters.projectToBuild }}' + + - ${{ if eq(parameters.shouldCleanPostExectuion, true) }}: + - task: PostBuildCleanup@4 diff --git a/azure-pipelines/templates/build-steps-template.yml b/azure-pipelines/templates/build-steps-template.yml index 99f6e0a5a9..7605740ab4 100644 --- a/azure-pipelines/templates/build-steps-template.yml +++ b/azure-pipelines/templates/build-steps-template.yml @@ -5,6 +5,8 @@ parameters: - name: isVerbose default: false - name: shouldCleanPostExectuion + - name: username + - name: password steps: - task: NodeTool@0 @@ -32,21 +34,59 @@ steps: displayName: 'Install dotnet if not already present' inputs: packageType: 'sdk' - version: '8.0.100' # we are currently building a 8.0 app. TODO: Try upgrading to 8.x in the future + version: '9.0.101' # we are currently building a 8.0 app. TODO: Try upgrading to 8.x in the future performMultiLevelLookup: false - - task: PowerShell@2 - displayName: 'Generate NuGet.config for IG ProGet NuGet feed and u' + displayName: 'Generate NuGet.config for IG ProGet NuGet feed' + continueOnError: true inputs: targetType: 'inline' - script: | + script: | dotnet new nugetconfig --force - # The name of the source doesn't currently matter as the credentials are attached thanks to URL matching - according to MS docs - dotnet nuget add source ${{ parameters.igNuGetFeedUrl }} --name "IG ProGet NuGet" + dotnet nuget add source ${{ parameters.igNuGetFeedUrl }} --name "IG ProGet NuGet" --allow-insecure-connections + # Manually add the allowInsecureConnections attribute to the nuget.config file + Write-Host "getting config file" + Write-Host "$(Build.SourcesDirectory)\nuget.config" + $nugetConfigPath = "$(Build.SourcesDirectory)\nuget.config" + Write-Host "getting xml content" + [xml]$nugetConfig = Get-Content $nugetConfigPath + $nugetConfig.configuration.packageSources.add | Where-Object { $_.name -eq "IG ProGet NuGet" } | ForEach-Object { $_.allowInsecureConnections = "true" } + # Add credentials to the nuget.config file + Write-Host "current config" + Write-Host $nugetConfig + Write-Host "adding credentials" + $packageSourceCredentials = $nugetConfig.CreateElement("packageSourceCredentials") + Write-Host "adding source" + $source = $nugetConfig.CreateElement("IG_x0020_ProGet_x0020_NuGet") + + $addUsername = $nugetConfig.CreateElement("add") + Write-Host "adding username" + $userName = "${{ parameters.username }}" + # $userName = ConvertTo-SecureString "${{ parameters.username }}" -asPlainText -Force + Write-Host "username is" + Write-Host "$userName" + $addUsername.SetAttribute("key", "Username") + Write-Host "setting attribute" + $addUsername.SetAttribute("value", $userName) + + $source.AppendChild($addUsername) + + $addPassword = $nugetConfig.CreateElement("add") + Write-Host "adding password" + #$password = ConvertTo-SecureString "${{ parameters.password}}" -asPlainText -Force + $password = "${{ parameters.password}}" + $addPassword.SetAttribute("key", "ClearTextPassword") + $addPassword.SetAttribute("value", "$password") + $source.AppendChild($addPassword) + + $packageSourceCredentials.AppendChild($source) + $nugetConfig.configuration.AppendChild($packageSourceCredentials) + Write-Host "writing contents to file" + $nugetConfig.OuterXml | Set-Content -Path $nugetConfigPath failOnStderr: true showWarnings: true - workingDirectory: '$(Build.SourcesDirectory)\browser\IgBlazorSamples.${{ parameters.projectToBuild }}' + workingDirectory: '$(Build.SourcesDirectory)' - task: PowerShell@2 displayName: 'Identify trial packages and use licensed ones instead' @@ -64,30 +104,27 @@ steps: $xml.Save('.\IgBlazorSamples.${{ parameters.projectToBuild }}.csproj') failOnStderr: true showWarnings: true - workingDirectory: '$(Build.SourcesDirectory)\browser\IgBlazorSamples.${{ parameters.projectToBuild }}' + workingDirectory: '$(Build.SourcesDirectory)\browser\IgBlazorSamples.${{ parameters.projectToBuild }}' - task: DotNetCoreCLI@2 displayName: 'dotnet restore' + enabled: true inputs: command: 'restore' projects: '$(Build.SourcesDirectory)\browser\IgBlazorSamples.${{ parameters.projectToBuild }}' # We want the dependency tree to be evaluated each time and to be sure that the dependencies are freshly downloaded - restoreArguments: '--ignore-failed-sources --no-cache --force' + restoreArguments: '--ignore-failed-sources --no-cache --force' feedsToUse: 'config' - nugetConfigPath: '$(Build.SourcesDirectory)\browser\IgBlazorSamples.${{ parameters.projectToBuild }}\NuGet.Config' + nugetConfigPath: '$(Build.SourcesDirectory)\nuget.config' # This task cannot use an apiKey directly (yet) so use any other service connection not based on an api key - externalFeedCredentials: 'IG ProGet IgniteUINuGet - Staging' - ${{ if eq(parameters.isVerbose, true) }}: - verbosityRestore: 'Diagnostic' - ${{ else }}: - verbosityRestore: 'Normal' - + verbosityRestore: 'Diagnostic' - task: DeleteFiles@1 displayName: 'Delete NuGet.config file - used only at build time' + enabled: true inputs: - SourceFolder: '$(Build.SourcesDirectory)\browser\IgBlazorSamples.${{ parameters.projectToBuild }}\' - Contents: '**/NuGet.config' + SourceFolder: '$(Build.SourcesDirectory)\' + Contents: '**/nuget.config' - task: CmdLine@2 # Using a CmldLine call for this opeation, because I couldn't get it to work as expected with the DotNetCoreCLI task @@ -114,4 +151,4 @@ steps: artifact: 'BlazorSamples${{ parameters.projectToBuild }}' - ${{ if eq(parameters.shouldCleanPostExectuion, true) }}: - - task: PostBuildCleanup@4 \ No newline at end of file + - task: PostBuildCleanup@4 diff --git a/browser/IgBlazorSamples.Client/IgBlazorSamples.Client.csproj b/browser/IgBlazorSamples.Client/IgBlazorSamples.Client.csproj index 8406a493c3..1ce253dced 100644 --- a/browser/IgBlazorSamples.Client/IgBlazorSamples.Client.csproj +++ b/browser/IgBlazorSamples.Client/IgBlazorSamples.Client.csproj @@ -1,8 +1,8 @@ - net8.0 - + net9.0 + enable enable @@ -12,6 +12,8 @@ Infragistics.Samples 4.0.0 false + + true @@ -46,15 +48,16 @@ - - - - - - + + + + + + - + + diff --git a/browser/IgBlazorSamples.Client/Properties/PublishProfiles/FolderProfile.pubxml b/browser/IgBlazorSamples.Client/Properties/PublishProfiles/FolderProfile.pubxml index faaa0e73e5..8533b0d93a 100644 --- a/browser/IgBlazorSamples.Client/Properties/PublishProfiles/FolderProfile.pubxml +++ b/browser/IgBlazorSamples.Client/Properties/PublishProfiles/FolderProfile.pubxml @@ -12,7 +12,7 @@ by editing this MSBuild file. In order to learn more about this please visit htt true false - net8.0 + net9.0 8d8de753-4cd1-4b21-9c9f-2e40ae5eed1b output\netstandard2.1\publish\ true diff --git a/browser/IgBlazorSamples.Client/ReadMe.md b/browser/IgBlazorSamples.Client/ReadMe.md index 55e1d8cbea..0d7e8fcebf 100644 --- a/browser/IgBlazorSamples.Client/ReadMe.md +++ b/browser/IgBlazorSamples.Client/ReadMe.md @@ -59,4 +59,4 @@ from `./samples/` folder to `./browser/IgBlazorSamples.Client/` - output files will be located in: -`./browser/browser/IgBlazorSamples.Client/bin/Release/net8.0/publish/wwwroot` \ No newline at end of file +`./browser/browser/IgBlazorSamples.Client/bin/Release/net9.0/publish/wwwroot` \ No newline at end of file diff --git a/browser/IgBlazorSamples.Client/global.json b/browser/IgBlazorSamples.Client/global.json index 75a80e90b8..9a247ed2a7 100644 --- a/browser/IgBlazorSamples.Client/global.json +++ b/browser/IgBlazorSamples.Client/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.0", + "version": "9.0.0", "rollForward": "latestMinor" } } \ No newline at end of file diff --git a/browser/IgBlazorSamples.Client/wwwroot/BlazorFastDownloadFile.js b/browser/IgBlazorSamples.Client/wwwroot/BlazorFastDownloadFile.js new file mode 100644 index 0000000000..eb3fd25aa0 --- /dev/null +++ b/browser/IgBlazorSamples.Client/wwwroot/BlazorFastDownloadFile.js @@ -0,0 +1,19 @@ +// these methods are from: +// https://www.meziantou.net/generating-and-downloading-a-file-in-a-blazor-webassembly-application.htm +export function BlazorDownloadFileFast(name, contentType, content) { + var nameStr = name; + var contentTypeStr = contentType; + var contentArray = new Uint8Array(content); + // Create the URL + var file = new File([contentArray], nameStr, { type: contentTypeStr }); + var exportUrl = URL.createObjectURL(file); + // Create the element and click on it + var a = document.createElement("a"); + document.body.appendChild(a); + a.href = exportUrl; + a.download = nameStr; + a.target = "_self"; + a.click(); + // We don't need to keep the url, let's release the memory + URL.revokeObjectURL(exportUrl); +} diff --git a/browser/IgBlazorSamples.Client/wwwroot/index.html b/browser/IgBlazorSamples.Client/wwwroot/index.html index df787dbb1f..a65773b69e 100644 --- a/browser/IgBlazorSamples.Client/wwwroot/index.html +++ b/browser/IgBlazorSamples.Client/wwwroot/index.html @@ -73,6 +73,7 @@ + diff --git a/browser/IgBlazorSamples.Core/IgBlazorSamples.Core.csproj b/browser/IgBlazorSamples.Core/IgBlazorSamples.Core.csproj index 95366e85e9..0845f0be8e 100644 --- a/browser/IgBlazorSamples.Core/IgBlazorSamples.Core.csproj +++ b/browser/IgBlazorSamples.Core/IgBlazorSamples.Core.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples.Core Infragistics.Samples.Core @@ -29,9 +29,9 @@ - - - + + + diff --git a/browser/IgBlazorSamples.Core/Services/SamplesBrowser_SEO.cs b/browser/IgBlazorSamples.Core/Services/SamplesBrowser_SEO.cs index d450883347..cc54f7f727 100644 --- a/browser/IgBlazorSamples.Core/Services/SamplesBrowser_SEO.cs +++ b/browser/IgBlazorSamples.Core/Services/SamplesBrowser_SEO.cs @@ -7,36 +7,36 @@ namespace Infragistics.Samples.Core public partial class SampleBrowser { public void SetTitle(string pageTitle) { - JSRuntime.InvokeVoidAsync("setTitle", pageTitle); + //JSRuntime.InvokeVoidAsync("setTitle", pageTitle); } public void SetDescription(string pageDescr) { - JSRuntime.InvokeVoidAsync("setDescription", pageDescr); + //JSRuntime.InvokeVoidAsync("setDescription", pageDescr); } public void SetKeywords(List keywords) { - JSRuntime.InvokeVoidAsync("setKeywords", string.Join(",", keywords)); + //JSRuntime.InvokeVoidAsync("setKeywords", string.Join(",", keywords)); } public void SetMetadata(TocSample sample = null) { - var defaultKeys = new List { "Blazor", "Sample", "Demo", "Infragistics", "IgniteUI for Blazor", "Components" }; - - if (sample == null) { - this.SetTitle("Blazor Samples | Infragistics"); - this.SetKeywords(defaultKeys); - this.SetDescription("Explore samples demonstrating features of IgniteUI components for Blazor"); - } else { - var sampleTitle = sample.Name + " | Blazor Samples | Infragistics"; - var sampleDescr = "This sample demostrate how to use " + sample.Component + " with " + sample.Name; - var sampleKeywords = new List(); - sampleKeywords.Add(sample.Component); - sampleKeywords.AddRange(sample.Name.Split(' ')); - sampleKeywords.AddRange(defaultKeys); - - this.SetTitle(sampleTitle); - this.SetDescription(sampleDescr); - this.SetKeywords(sampleKeywords); - } + //var defaultKeys = new List { "Blazor", "Sample", "Demo", "Infragistics", "IgniteUI for Blazor", "Components" }; + + //if (sample == null) { + // this.SetTitle("Blazor Samples | Infragistics"); + // this.SetKeywords(defaultKeys); + // this.SetDescription("Explore samples demonstrating features of IgniteUI components for Blazor"); + //} else { + // var sampleTitle = sample.Name + " | Blazor Samples | Infragistics"; + // var sampleDescr = "This sample demostrate how to use " + sample.Component + " with " + sample.Name; + // var sampleKeywords = new List(); + // sampleKeywords.Add(sample.Component); + // sampleKeywords.AddRange(sample.Name.Split(' ')); + // sampleKeywords.AddRange(defaultKeys); + + // this.SetTitle(sampleTitle); + // this.SetDescription(sampleDescr); + // this.SetKeywords(sampleKeywords); + //} } } diff --git a/browser/IgBlazorSamples.Gulp/package-lock.json b/browser/IgBlazorSamples.Gulp/package-lock.json index db51348278..60ebc32bc0 100644 --- a/browser/IgBlazorSamples.Gulp/package-lock.json +++ b/browser/IgBlazorSamples.Gulp/package-lock.json @@ -6953,7 +6953,8 @@ "version": "5.2.0", "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.2.0.tgz", "integrity": "sha512-HiUX/+K2YpkpJ+SzBffkM/AQ2YE03S0U1kjTLVpoJdhZMOWy8qvXVN9JdLqv2QsaQ6MPYQIuNmwD8zOiYUofLQ==", - "dev": true + "dev": true, + "requires": {} }, "aggregate-error": { "version": "3.0.1", diff --git a/browser/IgBlazorSamples.Gulp/tasks/gulp-samples.js b/browser/IgBlazorSamples.Gulp/tasks/gulp-samples.js index 6ce8ccd051..d714e000ad 100644 --- a/browser/IgBlazorSamples.Gulp/tasks/gulp-samples.js +++ b/browser/IgBlazorSamples.Gulp/tasks/gulp-samples.js @@ -213,6 +213,8 @@ function getSamples(cb) { sampleFolder + "/**/*.cs", sampleFolder + "/*.csproj", sampleFolder + "/wwwroot/*.js", + // this file has been added to SB since it needs to be in a particular location (directly under wwwroot) for import to work + '!' + sampleFolder + "/wwwroot/BlazorFastDownloadFile.js", sampleFolder + "/wwwroot/*.css", sampleFolder + "/wwwroot/index.html", // sampleFolder + "/wwwroot/*", @@ -226,7 +228,8 @@ function getSamples(cb) { '!' + sampleFolder + "/obj/**", '!' + sampleFolder + "/obj/*.*", '!' + sampleFolder + "/bin/**", - '!' + sampleFolder + "/bin/*.*",]) + '!' + sampleFolder + "/bin/*.*", + ]) .pipe(flatten({ "includeParents": -1 })) .pipe(es.map(function(file, fileCallback) { let fileDir = Transformer.getRelative(file.dirname); @@ -585,22 +588,23 @@ function updateProjects(cb) { function updateIG(cb) { // NOTE: change this array with new version of IG packages, e.g. - // { name: "IgniteUI.Blazor.Trial", version: "23.1.72" }, // use trial packages before the volume release - PUBLIC NUGET https://www.nuget.org/packages/IgniteUI.Blazor.Trial - // { name: "IgniteUI.Blazor", version: "23.2.97" }, // use non-trial packages while working on release - LOCAL PROGET http://proget.infragistics.local:81/packages?Count=500&FeedId=13 + // { version: "23.1.72", name: "IgniteUI.Blazor.Trial" }, // use trial packages before the volume release - PUBLIC NUGET https://www.nuget.org/packages/IgniteUI.Blazor.Trial + // { version: "23.2.97", name: "IgniteUI.Blazor" }, // use non-trial packages while working on release - LOCAL PROGET http://proget.infragistics.local:81/packages?Count=500&FeedId=13 let packageUpgrades = [ // update version of IG packages and change to Trial or non-trial - { name: "IgniteUI.Blazor", version: "24.2.19" }, - { name: "IgniteUI.Blazor.Documents.Core", version: "24.2.19" }, - { name: "IgniteUI.Blazor.Documents.Excel", version: "24.2.19" }, + { version: "24.2.52", name: "IgniteUI.Blazor" }, + { version: "24.2.52", name: "IgniteUI.Blazor.Documents.Core" }, + { version: "24.2.52", name: "IgniteUI.Blazor.Documents.Excel" }, // these IG packages are sometimes updated: - { name: "Microsoft.AspNetCore.Components", version: "8.0.0" }, - { name: "Microsoft.AspNetCore.Components.Web", version: "8.0.0" }, - { name: "Microsoft.AspNetCore.Components.WebAssembly", version: "8.0.0" }, - { name: "Microsoft.AspNetCore.Components.WebAssembly.DevServer", version: "8.0.0" }, // suffix: 'PrivateAssets="all" ' }, - { name: "Microsoft.AspNetCore.Cors", version: "2.2.0" }, - { name: "Microsoft.AspNetCore.Http.Abstractions", version: "2.2.0" }, - { name: "System.Net.Http.Json", version:"8.0.0" }, + { version: "9.0.0", name: "Microsoft.AspNetCore.Components" }, + { version: "9.0.0", name: "Microsoft.AspNetCore.Components.Web" }, + { version: "9.0.0", name: "Microsoft.AspNetCore.Components.WebAssembly" }, + { version: "9.0.0", name: "Microsoft.AspNetCore.Components.WebAssembly.DevServer" }, // suffix: 'PrivateAssets="all" ' }, + { version: "2.2.0", name: "Microsoft.AspNetCore.Cors" }, + { version: "2.2.0", name: "Microsoft.AspNetCore.Http.Abstractions" }, + { version: "9.0.0", name: "Microsoft.JSInterop.WebAssembly" }, + { version: "9.0.0", name: "System.Net.Http.Json" }, ]; // creating package mapping for quick lookup diff --git a/browser/IgBlazorSamples.Gulp/tasks/gulp-tests.js b/browser/IgBlazorSamples.Gulp/tasks/gulp-tests.js index e1568990f5..95d4520af1 100644 --- a/browser/IgBlazorSamples.Gulp/tasks/gulp-tests.js +++ b/browser/IgBlazorSamples.Gulp/tasks/gulp-tests.js @@ -72,11 +72,11 @@ function testProjectFiles(cb) { var requiredStrings = [ '', '1701;1702,IDE0028,BL0005,0219,CS1998', - 'net8.0', + 'net9.0', '3.0', '', - '', + '', + '', '', ]; gulp.src([ diff --git a/browser/IgBlazorSamples.Server/IgBlazorSamples.Server.csproj b/browser/IgBlazorSamples.Server/IgBlazorSamples.Server.csproj index bc5897ae7e..472280e939 100644 --- a/browser/IgBlazorSamples.Server/IgBlazorSamples.Server.csproj +++ b/browser/IgBlazorSamples.Server/IgBlazorSamples.Server.csproj @@ -1,10 +1,12 @@ - net8.0 + net9.0 Infragistics.Samples Infragistics.Samples 4.0.0 + + true @@ -28,12 +30,12 @@ - - - - - - + + + + + + diff --git a/browser/IgBlazorSamples.Shared/IgBlazorSamples.Shared.csproj b/browser/IgBlazorSamples.Shared/IgBlazorSamples.Shared.csproj index 2cbcd2573d..382bfd6324 100644 --- a/browser/IgBlazorSamples.Shared/IgBlazorSamples.Shared.csproj +++ b/browser/IgBlazorSamples.Shared/IgBlazorSamples.Shared.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples.Shared Infragistics.Samples.Shared @@ -17,9 +17,9 @@ - - - + + + diff --git a/samples/charts/category-chart/annotations-all/App.razor b/samples/charts/category-chart/annotations-all/App.razor index 21d3e4a60e..8e8485360b 100644 --- a/samples/charts/category-chart/annotations-all/App.razor +++ b/samples/charts/category-chart/annotations-all/App.razor @@ -71,7 +71,8 @@ FinalValueAnnotationsTextColor="white" FinalValueAnnotationsPrecision="0" YAxisMaximumValue="35" - YAxisLabelLocation="YAxisLabelLocation.OutsideRight"> + YAxisLabelLocation="YAxisLabelLocation.OutsideRight" + IsTransitionInEnabled="false"> diff --git a/samples/charts/category-chart/annotations-all/BlazorClientApp.csproj b/samples/charts/category-chart/annotations-all/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/annotations-all/BlazorClientApp.csproj +++ b/samples/charts/category-chart/annotations-all/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/annotations-callouts/App.razor b/samples/charts/category-chart/annotations-callouts/App.razor index b77efcd7b5..5641202732 100644 --- a/samples/charts/category-chart/annotations-callouts/App.razor +++ b/samples/charts/category-chart/annotations-callouts/App.razor @@ -38,7 +38,8 @@ CrosshairsAnnotationYAxisPrecision="0" YAxisMaximumValue="35" YAxisTitle="Degrees Celsius" - YAxisLabelLocation="YAxisLabelLocation.OutsideRight"> + YAxisLabelLocation="YAxisLabelLocation.OutsideRight" + IsTransitionInEnabled="false"> diff --git a/samples/charts/category-chart/annotations-callouts/BlazorClientApp.csproj b/samples/charts/category-chart/annotations-callouts/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/annotations-callouts/BlazorClientApp.csproj +++ b/samples/charts/category-chart/annotations-callouts/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/annotations-crosshairs/App.razor b/samples/charts/category-chart/annotations-crosshairs/App.razor index c3c46816c7..c518b8f03a 100644 --- a/samples/charts/category-chart/annotations-crosshairs/App.razor +++ b/samples/charts/category-chart/annotations-crosshairs/App.razor @@ -51,7 +51,8 @@ CrosshairsLineThickness="2" CrosshairsSnapToData="true" YAxisMaximumValue="35" - YAxisLabelLocation="YAxisLabelLocation.OutsideRight"> + YAxisLabelLocation="YAxisLabelLocation.OutsideRight" + IsTransitionInEnabled="false"> diff --git a/samples/charts/category-chart/annotations-crosshairs/BlazorClientApp.csproj b/samples/charts/category-chart/annotations-crosshairs/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/annotations-crosshairs/BlazorClientApp.csproj +++ b/samples/charts/category-chart/annotations-crosshairs/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/annotations-custom/App.razor b/samples/charts/category-chart/annotations-custom/App.razor index 93c0a847a2..0319937265 100644 --- a/samples/charts/category-chart/annotations-custom/App.razor +++ b/samples/charts/category-chart/annotations-custom/App.razor @@ -41,7 +41,8 @@ CalloutsYMemberPath="Temperature" CalloutsLabelMemberPath="TempInfo" YAxisMaximumValue="35" - YAxisLabelLocation="YAxisLabelLocation.OutsideRight"> + YAxisLabelLocation="YAxisLabelLocation.OutsideRight" + IsTransitionInEnabled="false"> diff --git a/samples/charts/category-chart/annotations-custom/BlazorClientApp.csproj b/samples/charts/category-chart/annotations-custom/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/annotations-custom/BlazorClientApp.csproj +++ b/samples/charts/category-chart/annotations-custom/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/annotations-final-value/App.razor b/samples/charts/category-chart/annotations-final-value/App.razor index 83fe5341ff..98bf5e5436 100644 --- a/samples/charts/category-chart/annotations-final-value/App.razor +++ b/samples/charts/category-chart/annotations-final-value/App.razor @@ -40,7 +40,8 @@ FinalValueAnnotationsPrecision="0" CrosshairsAnnotationYAxisPrecision="0" YAxisMaximumValue="35" - YAxisLabelLocation="YAxisLabelLocation.OutsideRight"> + YAxisLabelLocation="YAxisLabelLocation.OutsideRight" + IsTransitionInEnabled="false"> diff --git a/samples/charts/category-chart/annotations-final-value/BlazorClientApp.csproj b/samples/charts/category-chart/annotations-final-value/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/annotations-final-value/BlazorClientApp.csproj +++ b/samples/charts/category-chart/annotations-final-value/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/annotations-highlighting/App.razor b/samples/charts/category-chart/annotations-highlighting/App.razor index 930e7a3f93..dd7d47456f 100644 --- a/samples/charts/category-chart/annotations-highlighting/App.razor +++ b/samples/charts/category-chart/annotations-highlighting/App.razor @@ -44,7 +44,8 @@ HighlightingBehavior="SeriesHighlightingBehavior.NearestItemsAndSeries" YAxisMaximumValue="35" YAxisLabelLocation="YAxisLabelLocation.OutsideRight" - ToolTipType="ToolTipType.None"> + ToolTipType="ToolTipType.None" + IsTransitionInEnabled="false"> diff --git a/samples/charts/category-chart/annotations-highlighting/BlazorClientApp.csproj b/samples/charts/category-chart/annotations-highlighting/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/annotations-highlighting/BlazorClientApp.csproj +++ b/samples/charts/category-chart/annotations-highlighting/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/annotations/BlazorClientApp.csproj b/samples/charts/category-chart/annotations/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/annotations/BlazorClientApp.csproj +++ b/samples/charts/category-chart/annotations/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/BlazorClientApp.csproj +++ b/samples/charts/category-chart/area-chart-multiple-sources/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/area-chart-single-source/BlazorClientApp.csproj +++ b/samples/charts/category-chart/area-chart-single-source/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/area-chart-styling/BlazorClientApp.csproj b/samples/charts/category-chart/area-chart-styling/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/area-chart-styling/BlazorClientApp.csproj +++ b/samples/charts/category-chart/area-chart-styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/axis-gap/BlazorClientApp.csproj b/samples/charts/category-chart/axis-gap/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/axis-gap/BlazorClientApp.csproj +++ b/samples/charts/category-chart/axis-gap/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/axis-gridlines/App.razor b/samples/charts/category-chart/axis-gridlines/App.razor index a7eb40b02a..27bd24e3cb 100644 --- a/samples/charts/category-chart/axis-gridlines/App.razor +++ b/samples/charts/category-chart/axis-gridlines/App.razor @@ -9,6 +9,30 @@ IsWrappingEnabled="true" Name="propertyEditorPanel1" @ref="propertyEditorPanel1"> + + + + + + - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/axis-inverted/BlazorClientApp.csproj b/samples/charts/category-chart/axis-inverted/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/axis-inverted/BlazorClientApp.csproj +++ b/samples/charts/category-chart/axis-inverted/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/axis-labels/BlazorClientApp.csproj b/samples/charts/category-chart/axis-labels/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/axis-labels/BlazorClientApp.csproj +++ b/samples/charts/category-chart/axis-labels/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/axis-locations/BlazorClientApp.csproj b/samples/charts/category-chart/axis-locations/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/axis-locations/BlazorClientApp.csproj +++ b/samples/charts/category-chart/axis-locations/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/axis-options/BlazorClientApp.csproj b/samples/charts/category-chart/axis-options/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/axis-options/BlazorClientApp.csproj +++ b/samples/charts/category-chart/axis-options/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/axis-overlap/BlazorClientApp.csproj b/samples/charts/category-chart/axis-overlap/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/axis-overlap/BlazorClientApp.csproj +++ b/samples/charts/category-chart/axis-overlap/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/axis-range/BlazorClientApp.csproj b/samples/charts/category-chart/axis-range/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/axis-range/BlazorClientApp.csproj +++ b/samples/charts/category-chart/axis-range/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/axis-tickmarks/BlazorClientApp.csproj b/samples/charts/category-chart/axis-tickmarks/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/axis-tickmarks/BlazorClientApp.csproj +++ b/samples/charts/category-chart/axis-tickmarks/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/axis-titles/BlazorClientApp.csproj b/samples/charts/category-chart/axis-titles/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/axis-titles/BlazorClientApp.csproj +++ b/samples/charts/category-chart/axis-titles/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/chart-highlight-filter/BlazorClientApp.csproj b/samples/charts/category-chart/chart-highlight-filter/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/chart-highlight-filter/BlazorClientApp.csproj +++ b/samples/charts/category-chart/chart-highlight-filter/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/BlazorClientApp.csproj +++ b/samples/charts/category-chart/column-chart-multiple-sources/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/column-chart-single-source/BlazorClientApp.csproj +++ b/samples/charts/category-chart/column-chart-single-source/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/column-chart-styling/BlazorClientApp.csproj b/samples/charts/category-chart/column-chart-styling/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/column-chart-styling/BlazorClientApp.csproj +++ b/samples/charts/category-chart/column-chart-styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/BlazorClientApp.csproj +++ b/samples/charts/category-chart/column-chart-with-highlighting/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/BlazorClientApp.csproj +++ b/samples/charts/category-chart/column-chart-with-tooltips/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/custom-selection/BlazorClientApp.csproj b/samples/charts/category-chart/custom-selection/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/custom-selection/BlazorClientApp.csproj +++ b/samples/charts/category-chart/custom-selection/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/data-aggregations/BlazorClientApp.csproj b/samples/charts/category-chart/data-aggregations/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/data-aggregations/BlazorClientApp.csproj +++ b/samples/charts/category-chart/data-aggregations/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/data-filter/BlazorClientApp.csproj b/samples/charts/category-chart/data-filter/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/data-filter/BlazorClientApp.csproj +++ b/samples/charts/category-chart/data-filter/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/BlazorClientApp.csproj +++ b/samples/charts/category-chart/data-legend-formatting-decimals/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/data-legend/BlazorClientApp.csproj b/samples/charts/category-chart/data-legend/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/data-legend/BlazorClientApp.csproj +++ b/samples/charts/category-chart/data-legend/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/BlazorClientApp.csproj +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/data-tooltip-positioning/BlazorClientApp.csproj b/samples/charts/category-chart/data-tooltip-positioning/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/BlazorClientApp.csproj +++ b/samples/charts/category-chart/data-tooltip-positioning/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/data-tooltip/BlazorClientApp.csproj b/samples/charts/category-chart/data-tooltip/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/data-tooltip/BlazorClientApp.csproj +++ b/samples/charts/category-chart/data-tooltip/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/format-specifiers/BlazorClientApp.csproj b/samples/charts/category-chart/format-specifiers/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/format-specifiers/BlazorClientApp.csproj +++ b/samples/charts/category-chart/format-specifiers/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/high-frequency/BlazorClientApp.csproj b/samples/charts/category-chart/high-frequency/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/high-frequency/BlazorClientApp.csproj +++ b/samples/charts/category-chart/high-frequency/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/high-volume/BlazorClientApp.csproj b/samples/charts/category-chart/high-volume/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/high-volume/BlazorClientApp.csproj +++ b/samples/charts/category-chart/high-volume/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/highlighting-behavior/App.razor b/samples/charts/category-chart/highlighting-behavior/App.razor index 6286d179be..4959657a54 100644 --- a/samples/charts/category-chart/highlighting-behavior/App.razor +++ b/samples/charts/category-chart/highlighting-behavior/App.razor @@ -32,7 +32,8 @@ HighlightingMode="SeriesHighlightingMode.Brighten" HighlightingBehavior="SeriesHighlightingBehavior.DirectlyOver" ToolTipType="ToolTipType.None" - CrosshairsDisplayMode="CrosshairsDisplayMode.None"> + CrosshairsDisplayMode="CrosshairsDisplayMode.None" + IsTransitionInEnabled="false"> diff --git a/samples/charts/category-chart/highlighting-behavior/BlazorClientApp.csproj b/samples/charts/category-chart/highlighting-behavior/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/highlighting-behavior/BlazorClientApp.csproj +++ b/samples/charts/category-chart/highlighting-behavior/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/highlighting-mode/App.razor b/samples/charts/category-chart/highlighting-mode/App.razor index 16b6390904..576c1b6d27 100644 --- a/samples/charts/category-chart/highlighting-mode/App.razor +++ b/samples/charts/category-chart/highlighting-mode/App.razor @@ -31,7 +31,8 @@ DataSource="TemperatureAnnotatedData" HighlightingMode="SeriesHighlightingMode.BrightenSpecific" ToolTipType="ToolTipType.None" - CrosshairsDisplayMode="CrosshairsDisplayMode.None"> + CrosshairsDisplayMode="CrosshairsDisplayMode.None" + IsTransitionInEnabled="false"> diff --git a/samples/charts/category-chart/highlighting-mode/BlazorClientApp.csproj b/samples/charts/category-chart/highlighting-mode/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/highlighting-mode/BlazorClientApp.csproj +++ b/samples/charts/category-chart/highlighting-mode/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/highlighting/BlazorClientApp.csproj b/samples/charts/category-chart/highlighting/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/highlighting/BlazorClientApp.csproj +++ b/samples/charts/category-chart/highlighting/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/legend-highlighting/App.razor b/samples/charts/category-chart/legend-highlighting/App.razor index 7183836289..f3cfb58c68 100644 --- a/samples/charts/category-chart/legend-highlighting/App.razor +++ b/samples/charts/category-chart/legend-highlighting/App.razor @@ -25,7 +25,8 @@ IsHorizontalZoomEnabled="false" IsVerticalZoomEnabled="false" HighlightingMode="SeriesHighlightingMode.Brighten" - LegendHighlightingMode="LegendHighlightingMode.MatchSeries"> + LegendHighlightingMode="LegendHighlightingMode.MatchSeries" + IsTransitionInEnabled="false"> diff --git a/samples/charts/category-chart/legend-highlighting/BlazorClientApp.csproj b/samples/charts/category-chart/legend-highlighting/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/legend-highlighting/BlazorClientApp.csproj +++ b/samples/charts/category-chart/legend-highlighting/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/BlazorClientApp.csproj +++ b/samples/charts/category-chart/line-chart-multiple-sources/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/line-chart-single-source/BlazorClientApp.csproj +++ b/samples/charts/category-chart/line-chart-single-source/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/line-chart-styling/BlazorClientApp.csproj b/samples/charts/category-chart/line-chart-styling/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/line-chart-styling/BlazorClientApp.csproj +++ b/samples/charts/category-chart/line-chart-styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/line-chart-with-animations/BlazorClientApp.csproj +++ b/samples/charts/category-chart/line-chart-with-animations/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/BlazorClientApp.csproj +++ b/samples/charts/category-chart/line-chart-with-annotations/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/marker-options/BlazorClientApp.csproj b/samples/charts/category-chart/marker-options/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/marker-options/BlazorClientApp.csproj +++ b/samples/charts/category-chart/marker-options/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/marker-templates/BlazorClientApp.csproj b/samples/charts/category-chart/marker-templates/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/marker-templates/BlazorClientApp.csproj +++ b/samples/charts/category-chart/marker-templates/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/overview/BlazorClientApp.csproj b/samples/charts/category-chart/overview/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/overview/BlazorClientApp.csproj +++ b/samples/charts/category-chart/overview/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/BlazorClientApp.csproj +++ b/samples/charts/category-chart/point-chart-multiple-sources/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/point-chart-single-source/BlazorClientApp.csproj +++ b/samples/charts/category-chart/point-chart-single-source/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/point-chart-styling/BlazorClientApp.csproj b/samples/charts/category-chart/point-chart-styling/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/point-chart-styling/BlazorClientApp.csproj +++ b/samples/charts/category-chart/point-chart-styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/selection-matcher/BlazorClientApp.csproj b/samples/charts/category-chart/selection-matcher/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/selection-matcher/BlazorClientApp.csproj +++ b/samples/charts/category-chart/selection-matcher/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/selection-modes/BlazorClientApp.csproj b/samples/charts/category-chart/selection-modes/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/selection-modes/BlazorClientApp.csproj +++ b/samples/charts/category-chart/selection-modes/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/selection-multiple-modes/BlazorClientApp.csproj b/samples/charts/category-chart/selection-multiple-modes/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/selection-multiple-modes/BlazorClientApp.csproj +++ b/samples/charts/category-chart/selection-multiple-modes/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/BlazorClientApp.csproj +++ b/samples/charts/category-chart/spline-area-multiple-sources/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/spline-area-single-source/BlazorClientApp.csproj +++ b/samples/charts/category-chart/spline-area-single-source/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/spline-area-styling/BlazorClientApp.csproj b/samples/charts/category-chart/spline-area-styling/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/spline-area-styling/BlazorClientApp.csproj +++ b/samples/charts/category-chart/spline-area-styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/spline-multiple-sources/BlazorClientApp.csproj b/samples/charts/category-chart/spline-multiple-sources/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/spline-multiple-sources/BlazorClientApp.csproj +++ b/samples/charts/category-chart/spline-multiple-sources/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/spline-single-source/BlazorClientApp.csproj b/samples/charts/category-chart/spline-single-source/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/spline-single-source/BlazorClientApp.csproj +++ b/samples/charts/category-chart/spline-single-source/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/spline-styling/BlazorClientApp.csproj b/samples/charts/category-chart/spline-styling/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/spline-styling/BlazorClientApp.csproj +++ b/samples/charts/category-chart/spline-styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/stack-columns/BlazorClientApp.csproj b/samples/charts/category-chart/stack-columns/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/stack-columns/BlazorClientApp.csproj +++ b/samples/charts/category-chart/stack-columns/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/BlazorClientApp.csproj +++ b/samples/charts/category-chart/step-area-multiple-sources/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/step-area-single-source/BlazorClientApp.csproj +++ b/samples/charts/category-chart/step-area-single-source/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/step-area-styling/BlazorClientApp.csproj b/samples/charts/category-chart/step-area-styling/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/step-area-styling/BlazorClientApp.csproj +++ b/samples/charts/category-chart/step-area-styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/BlazorClientApp.csproj +++ b/samples/charts/category-chart/step-line-multiple-sources/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/step-line-single-source/BlazorClientApp.csproj +++ b/samples/charts/category-chart/step-line-single-source/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/step-line-styling/BlazorClientApp.csproj b/samples/charts/category-chart/step-line-styling/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/step-line-styling/BlazorClientApp.csproj +++ b/samples/charts/category-chart/step-line-styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/tooltip-template/BlazorClientApp.csproj b/samples/charts/category-chart/tooltip-template/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/tooltip-template/BlazorClientApp.csproj +++ b/samples/charts/category-chart/tooltip-template/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/tooltip-types/BlazorClientApp.csproj b/samples/charts/category-chart/tooltip-types/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/tooltip-types/BlazorClientApp.csproj +++ b/samples/charts/category-chart/tooltip-types/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/trendline/BlazorClientApp.csproj b/samples/charts/category-chart/trendline/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/trendline/BlazorClientApp.csproj +++ b/samples/charts/category-chart/trendline/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/category-chart/value-lines/BlazorClientApp.csproj b/samples/charts/category-chart/value-lines/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/category-chart/value-lines/BlazorClientApp.csproj +++ b/samples/charts/category-chart/value-lines/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/dashboard-tile/chart-dashboard/App.razor b/samples/charts/dashboard-tile/chart-dashboard/App.razor new file mode 100644 index 0000000000..e427403fee --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/App.razor @@ -0,0 +1,37 @@ +@using IgniteUI.Blazor.Controls + +
+
+ + + +
+
+ +@code { + + protected override async Task OnAfterRenderAsync(bool firstRender) + { + var dashboard = this.dashboard; + + } + + private IgbDashboardTile dashboard; + + private OlympicMedalsTopCountries _olympicMedalsTopCountries = null; + public OlympicMedalsTopCountries OlympicMedalsTopCountries + { + get + { + if (_olympicMedalsTopCountries == null) + { + _olympicMedalsTopCountries = new OlympicMedalsTopCountries(); + } + return _olympicMedalsTopCountries; + } + } + +} \ No newline at end of file diff --git a/samples/charts/dashboard-tile/chart-dashboard/BlazorClientApp.csproj b/samples/charts/dashboard-tile/chart-dashboard/BlazorClientApp.csproj new file mode 100644 index 0000000000..5ad0404ecd --- /dev/null +++ b/samples/charts/dashboard-tile/chart-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/chart-dashboard/BlazorClientApp.sln b/samples/charts/dashboard-tile/chart-dashboard/BlazorClientApp.sln new file mode 100644 index 0000000000..1e2eda208a --- /dev/null +++ b/samples/charts/dashboard-tile/chart-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/chart-dashboard/OlympicMedalsTopCountries.cs b/samples/charts/dashboard-tile/chart-dashboard/OlympicMedalsTopCountries.cs new file mode 100644 index 0000000000..d41ca7eea2 --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/OlympicMedalsTopCountries.cs @@ -0,0 +1,59 @@ +using System; +using System.Collections.Generic; +public class OlympicMedalsTopCountriesItem +{ + public string Year { get; set; } + public double America { get; set; } + public double China { get; set; } + public double Russia { get; set; } +} + +public class OlympicMedalsTopCountries + : List +{ + public OlympicMedalsTopCountries() + { + this.Add(new OlympicMedalsTopCountriesItem() + { + Year = @"1996", + America = 148, + China = 110, + Russia = 95 + }); + this.Add(new OlympicMedalsTopCountriesItem() + { + Year = @"2000", + America = 142, + China = 115, + Russia = 91 + }); + this.Add(new OlympicMedalsTopCountriesItem() + { + Year = @"2004", + America = 134, + China = 121, + Russia = 86 + }); + this.Add(new OlympicMedalsTopCountriesItem() + { + Year = @"2008", + America = 131, + China = 129, + Russia = 65 + }); + this.Add(new OlympicMedalsTopCountriesItem() + { + Year = @"2012", + America = 135, + China = 115, + Russia = 77 + }); + this.Add(new OlympicMedalsTopCountriesItem() + { + Year = @"2016", + America = 146, + China = 112, + Russia = 88 + }); + } +} diff --git a/samples/charts/dashboard-tile/chart-dashboard/Program.cs b/samples/charts/dashboard-tile/chart-dashboard/Program.cs new file mode 100644 index 0000000000..4723c41bb0 --- /dev/null +++ b/samples/charts/dashboard-tile/chart-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/chart-dashboard/Properties/launchSettings.json b/samples/charts/dashboard-tile/chart-dashboard/Properties/launchSettings.json new file mode 100644 index 0000000000..18bd6fb5bc --- /dev/null +++ b/samples/charts/dashboard-tile/chart-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/chart-dashboard/ReadMe.md b/samples/charts/dashboard-tile/chart-dashboard/ReadMe.md new file mode 100644 index 0000000000..7b46ecc711 --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/ReadMe.md @@ -0,0 +1,70 @@ + + + +This folder contains implementation of Blazor application with example of Chart Dashboard feature using [Dashboard Tile](https://www.infragistics.com/products/ignite-ui-blazor/blazor/components/general-getting-started.html) component. + + + + + +
+ View Docs + + + View Code + + + Run Sample + + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-blazor-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-blazor-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Setup + +- instal **.NET SDK** from this [website](https://dotnet.microsoft.com/learn/aspnet/blazor-tutorial/install) + +## Running App in Visual Studio 2019 + +NOTE: VS 2019 has better code highlighting and error detection than VS Code does. + +- open **Visual Studio 2019** as an administrator + +- open the **BlazorClientApp.sln** solution + +- right click solution and select **Restore NuGet Packages** menu item + +- click **Debug** menu and select **Start Debugging** or press **F5** key + + +## Running App in VS Code + +- open **VS Code** as an administrator + +- open this folder in **VS Code** + +- open a terminal window + +- to restore assemblies, run this command: +```dotnet restore``` + +- to run samples, run this command: +```dotnet watch run``` + +- wait for for message: +**Now listening on: http://localhost:4200** + +- open **http://localhost:4200** in your browser + + +## Resources + +- [Razor Component Models](https://www.codemag.com/article/1911052) +- [Razor Syntax](https://docs.microsoft.com/en-us/aspnet/core/blazor/components/?view=aspnetcore-3.1#razor-syntax) +- [Getting reference to components](https://docs.microsoft.com/en-us/aspnet/core/blazor/components/?view=aspnetcore-3.1#capture-references-to-components) diff --git a/samples/charts/dashboard-tile/chart-dashboard/_Imports.razor b/samples/charts/dashboard-tile/chart-dashboard/_Imports.razor new file mode 100644 index 0000000000..d27d337cb1 --- /dev/null +++ b/samples/charts/dashboard-tile/chart-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/chart-dashboard/wwwroot/index.css b/samples/charts/dashboard-tile/chart-dashboard/wwwroot/index.css new file mode 100644 index 0000000000..50ca13caa6 --- /dev/null +++ b/samples/charts/dashboard-tile/chart-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/chart-dashboard/wwwroot/index.html b/samples/charts/dashboard-tile/chart-dashboard/wwwroot/index.html new file mode 100644 index 0000000000..8833030d8e --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/wwwroot/index.html @@ -0,0 +1,30 @@ + + + + + + + + + + Samples | IgniteUI for Blazor | Infragistics + + + + + + + + + +
+ An unhandled error has occurred. + Reload + 🗙 +
+ + + + + + diff --git a/samples/charts/dashboard-tile/financial-dashboard/App.razor b/samples/charts/dashboard-tile/financial-dashboard/App.razor new file mode 100644 index 0000000000..3148a84a16 --- /dev/null +++ b/samples/charts/dashboard-tile/financial-dashboard/App.razor @@ -0,0 +1,37 @@ +@using IgniteUI.Blazor.Controls + +
+
+ + + +
+
+ +@code { + + protected override async Task OnAfterRenderAsync(bool firstRender) + { + var dashboard = this.dashboard; + + } + + private IgbDashboardTile dashboard; + + private MultipleStocks _multipleStocks = null; + public MultipleStocks MultipleStocks + { + get + { + if (_multipleStocks == null) + { + MultipleStocks.Fetch().ContinueWith((t) => {_multipleStocks = t.Result; StateHasChanged(); }); + } + return _multipleStocks; + } + } + +} \ No newline at end of file diff --git a/samples/charts/dashboard-tile/financial-dashboard/BlazorClientApp.csproj b/samples/charts/dashboard-tile/financial-dashboard/BlazorClientApp.csproj new file mode 100644 index 0000000000..5ad0404ecd --- /dev/null +++ b/samples/charts/dashboard-tile/financial-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/financial-dashboard/BlazorClientApp.sln b/samples/charts/dashboard-tile/financial-dashboard/BlazorClientApp.sln new file mode 100644 index 0000000000..1e2eda208a --- /dev/null +++ b/samples/charts/dashboard-tile/financial-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/financial-dashboard/MultipleStocks.cs b/samples/charts/dashboard-tile/financial-dashboard/MultipleStocks.cs new file mode 100644 index 0000000000..eb86b13af6 --- /dev/null +++ b/samples/charts/dashboard-tile/financial-dashboard/MultipleStocks.cs @@ -0,0 +1,111 @@ +//begin async data + using System; + using System.Collections.Generic; + using System.Text.Json; + using System.Threading; + using System.Threading.Tasks; + using System.Net.Http; + using System.Collections.ObjectModel; + using IgniteUI.Blazor.Controls; + + public class MultipleStocks : List + { + public async static Task Fetch() + { + var google = await MultipleStocks.GetGoogleStock(); + var amazon = await MultipleStocks.GetAmazonStock(); + + var val = new MultipleStocks(); + val.Add(google); + val.Add(amazon); + return val; + } + + /** gets Amazon stock OHLC prices from a .JSON file */ + public async static Task GetAmazonStock() + { + var url = "https://static.infragistics.com/xplatform/data/stocks/stockAmazon.json"; + var data = await Fetch(url); + var stockData = ConvertData(data); + stockData[0].Title = "Amazon"; + return stockData; + } + + /** gets Tesla stock OHLC prices from a .JSON file */ + public async static Task GetTeslaStock() + { + var url = "https://static.infragistics.com/xplatform/data/stocks/stockTesla.json"; + var data = await Fetch(url); + var stockData = ConvertData(data); + stockData[0].Title = "Tesla"; + return stockData; + } + + /** gets Microsoft stock OHLC prices from a .JSON file */ + public async static Task GetMicrosoftStock() + { + var url = "https://static.infragistics.com/xplatform/data/stocks/stockMicrosoft.json"; + var data = await Fetch(url); + var stockData = ConvertData(data); + stockData[0].Title = "Microsoft"; + return stockData; + } + + /** gets Google stock OHLC prices from a .JSON file */ + public async static Task GetGoogleStock() + { + var url = "https://static.infragistics.com/xplatform/data/stocks/stockGoogle.json"; + var data = await Fetch(url); + var stockData = ConvertData(data); + stockData[0].Title = "Google"; + return stockData; + } + + private async static Task[]> Fetch(string url) + { + HttpClient client = new HttpClient(); + var str = await client.GetStringAsync(url); + var arr = JsonSerializer.Deserialize[]>(str); + return arr; + } + + public static TitledStockData ConvertData(Dictionary[] arr) + { + var ret = new TitledStockData(); + + foreach (var json in arr) + { + var date = ((JsonElement)json["date"]).GetString(); + var parts = date.Split('-'); // "2020-01-01" + var item = new MultipleStocksItem(); + item.Date = new DateTime(int.Parse(parts[0]), int.Parse(parts[1]) + 1, int.Parse(parts[2])); + item.Open = ((JsonElement)json["open"]).GetDouble(); + item.High = ((JsonElement)json["high"]).GetDouble(); + item.Low = ((JsonElement)json["low"]).GetDouble(); + item.Close = ((JsonElement)json["close"]).GetDouble(); + item.Volume = ((JsonElement)json["volume"]).GetDouble(); + ret.Add(item); + } + + return ret; + } + } + + public class MultipleStocksItem + { + [DataSeriesMemberIntent(DataSeriesIntent.SeriesTitle)] + public string Title { get; set; } + public DateTime 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 class TitledStockData + : ObservableCollection + { + + } + //end async data \ No newline at end of file diff --git a/samples/charts/dashboard-tile/financial-dashboard/Program.cs b/samples/charts/dashboard-tile/financial-dashboard/Program.cs new file mode 100644 index 0000000000..4723c41bb0 --- /dev/null +++ b/samples/charts/dashboard-tile/financial-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/financial-dashboard/Properties/launchSettings.json b/samples/charts/dashboard-tile/financial-dashboard/Properties/launchSettings.json new file mode 100644 index 0000000000..18bd6fb5bc --- /dev/null +++ b/samples/charts/dashboard-tile/financial-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/financial-dashboard/ReadMe.md b/samples/charts/dashboard-tile/financial-dashboard/ReadMe.md new file mode 100644 index 0000000000..571576be3c --- /dev/null +++ b/samples/charts/dashboard-tile/financial-dashboard/ReadMe.md @@ -0,0 +1,70 @@ + + + +This folder contains implementation of Blazor application with example of Financial Dashboard feature using [Dashboard Tile](https://www.infragistics.com/products/ignite-ui-blazor/blazor/components/general-getting-started.html) component. + + + + + + + View Docs + + + View Code + + + Run Sample + + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-blazor-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-blazor-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Setup + +- instal **.NET SDK** from this [website](https://dotnet.microsoft.com/learn/aspnet/blazor-tutorial/install) + +## Running App in Visual Studio 2019 + +NOTE: VS 2019 has better code highlighting and error detection than VS Code does. + +- open **Visual Studio 2019** as an administrator + +- open the **BlazorClientApp.sln** solution + +- right click solution and select **Restore NuGet Packages** menu item + +- click **Debug** menu and select **Start Debugging** or press **F5** key + + +## Running App in VS Code + +- open **VS Code** as an administrator + +- open this folder in **VS Code** + +- open a terminal window + +- to restore assemblies, run this command: +```dotnet restore``` + +- to run samples, run this command: +```dotnet watch run``` + +- wait for for message: +**Now listening on: http://localhost:4200** + +- open **http://localhost:4200** in your browser + + +## Resources + +- [Razor Component Models](https://www.codemag.com/article/1911052) +- [Razor Syntax](https://docs.microsoft.com/en-us/aspnet/core/blazor/components/?view=aspnetcore-3.1#razor-syntax) +- [Getting reference to components](https://docs.microsoft.com/en-us/aspnet/core/blazor/components/?view=aspnetcore-3.1#capture-references-to-components) diff --git a/samples/charts/dashboard-tile/financial-dashboard/_Imports.razor b/samples/charts/dashboard-tile/financial-dashboard/_Imports.razor new file mode 100644 index 0000000000..d27d337cb1 --- /dev/null +++ b/samples/charts/dashboard-tile/financial-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/financial-dashboard/wwwroot/index.css b/samples/charts/dashboard-tile/financial-dashboard/wwwroot/index.css new file mode 100644 index 0000000000..50ca13caa6 --- /dev/null +++ b/samples/charts/dashboard-tile/financial-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/financial-dashboard/wwwroot/index.html b/samples/charts/dashboard-tile/financial-dashboard/wwwroot/index.html new file mode 100644 index 0000000000..8833030d8e --- /dev/null +++ b/samples/charts/dashboard-tile/financial-dashboard/wwwroot/index.html @@ -0,0 +1,30 @@ + + + + + + + + + + Samples | IgniteUI for Blazor | Infragistics + + + + + + + + + +
+ An unhandled error has occurred. + Reload + 🗙 +
+ + + + + + diff --git a/samples/charts/dashboard-tile/gauge-dashboard/App.razor b/samples/charts/dashboard-tile/gauge-dashboard/App.razor new file mode 100644 index 0000000000..29fcf78c5c --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-dashboard/App.razor @@ -0,0 +1,34 @@ +@using IgniteUI.Blazor.Controls +@using IgniteUI.Blazor.Controls; +@using System; + +
+
+ + + +
+
+ +@code { + + protected override async Task OnAfterRenderAsync(bool firstRender) + { + var dashboard = this.dashboard; + + if (firstRender) { + this.DashboardTileGaugeOnInit(); + } + } + + private IgbDashboardTile dashboard; + + public void DashboardTileGaugeOnInit() + { + this.dashboard.DataSource = 40; + } + +} \ No newline at end of file diff --git a/samples/charts/dashboard-tile/gauge-dashboard/BlazorClientApp.csproj b/samples/charts/dashboard-tile/gauge-dashboard/BlazorClientApp.csproj new file mode 100644 index 0000000000..5ad0404ecd --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-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/gauge-dashboard/BlazorClientApp.sln b/samples/charts/dashboard-tile/gauge-dashboard/BlazorClientApp.sln new file mode 100644 index 0000000000..1e2eda208a --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-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/gauge-dashboard/Program.cs b/samples/charts/dashboard-tile/gauge-dashboard/Program.cs new file mode 100644 index 0000000000..4723c41bb0 --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-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/gauge-dashboard/Properties/launchSettings.json b/samples/charts/dashboard-tile/gauge-dashboard/Properties/launchSettings.json new file mode 100644 index 0000000000..18bd6fb5bc --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-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/gauge-dashboard/ReadMe.md b/samples/charts/dashboard-tile/gauge-dashboard/ReadMe.md new file mode 100644 index 0000000000..ddc7150dfe --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-dashboard/ReadMe.md @@ -0,0 +1,70 @@ + + + +This folder contains implementation of Blazor application with example of Gauge Dashboard feature using [Dashboard Tile](https://www.infragistics.com/products/ignite-ui-blazor/blazor/components/general-getting-started.html) component. + + + + + + + View Docs + + + View Code + + + Run Sample + + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-blazor-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-blazor-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Setup + +- instal **.NET SDK** from this [website](https://dotnet.microsoft.com/learn/aspnet/blazor-tutorial/install) + +## Running App in Visual Studio 2019 + +NOTE: VS 2019 has better code highlighting and error detection than VS Code does. + +- open **Visual Studio 2019** as an administrator + +- open the **BlazorClientApp.sln** solution + +- right click solution and select **Restore NuGet Packages** menu item + +- click **Debug** menu and select **Start Debugging** or press **F5** key + + +## Running App in VS Code + +- open **VS Code** as an administrator + +- open this folder in **VS Code** + +- open a terminal window + +- to restore assemblies, run this command: +```dotnet restore``` + +- to run samples, run this command: +```dotnet watch run``` + +- wait for for message: +**Now listening on: http://localhost:4200** + +- open **http://localhost:4200** in your browser + + +## Resources + +- [Razor Component Models](https://www.codemag.com/article/1911052) +- [Razor Syntax](https://docs.microsoft.com/en-us/aspnet/core/blazor/components/?view=aspnetcore-3.1#razor-syntax) +- [Getting reference to components](https://docs.microsoft.com/en-us/aspnet/core/blazor/components/?view=aspnetcore-3.1#capture-references-to-components) diff --git a/samples/charts/dashboard-tile/gauge-dashboard/_Imports.razor b/samples/charts/dashboard-tile/gauge-dashboard/_Imports.razor new file mode 100644 index 0000000000..d27d337cb1 --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-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/gauge-dashboard/wwwroot/index.css b/samples/charts/dashboard-tile/gauge-dashboard/wwwroot/index.css new file mode 100644 index 0000000000..50ca13caa6 --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-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/gauge-dashboard/wwwroot/index.html b/samples/charts/dashboard-tile/gauge-dashboard/wwwroot/index.html new file mode 100644 index 0000000000..8833030d8e --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-dashboard/wwwroot/index.html @@ -0,0 +1,30 @@ + + + + + + + + + + Samples | IgniteUI for Blazor | Infragistics + + + + + + + + + +
+ An unhandled error has occurred. + Reload + 🗙 +
+ + + + + + diff --git a/samples/charts/dashboard-tile/map-dashboard/App.razor b/samples/charts/dashboard-tile/map-dashboard/App.razor new file mode 100644 index 0000000000..7fe249709d --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/App.razor @@ -0,0 +1,38 @@ +@using IgniteUI.Blazor.Controls + +
+
+ + + +
+
+ +@code { + + protected override async Task OnAfterRenderAsync(bool firstRender) + { + var dashboard = this.dashboard; + + } + + private IgbDashboardTile dashboard; + + private WorldCities _worldCities = null; + public WorldCities WorldCities + { + get + { + if (_worldCities == null) + { + _worldCities = new WorldCities(); + } + return _worldCities; + } + } + +} \ No newline at end of file diff --git a/samples/charts/dashboard-tile/map-dashboard/BlazorClientApp.csproj b/samples/charts/dashboard-tile/map-dashboard/BlazorClientApp.csproj new file mode 100644 index 0000000000..5ad0404ecd --- /dev/null +++ b/samples/charts/dashboard-tile/map-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/map-dashboard/BlazorClientApp.sln b/samples/charts/dashboard-tile/map-dashboard/BlazorClientApp.sln new file mode 100644 index 0000000000..1e2eda208a --- /dev/null +++ b/samples/charts/dashboard-tile/map-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/map-dashboard/Program.cs b/samples/charts/dashboard-tile/map-dashboard/Program.cs new file mode 100644 index 0000000000..4723c41bb0 --- /dev/null +++ b/samples/charts/dashboard-tile/map-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/map-dashboard/Properties/launchSettings.json b/samples/charts/dashboard-tile/map-dashboard/Properties/launchSettings.json new file mode 100644 index 0000000000..18bd6fb5bc --- /dev/null +++ b/samples/charts/dashboard-tile/map-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/map-dashboard/ReadMe.md b/samples/charts/dashboard-tile/map-dashboard/ReadMe.md new file mode 100644 index 0000000000..92d9401f86 --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/ReadMe.md @@ -0,0 +1,70 @@ + + + +This folder contains implementation of Blazor application with example of Map Dashboard feature using [Dashboard Tile](https://www.infragistics.com/products/ignite-ui-blazor/blazor/components/general-getting-started.html) component. + + + + + + + View Docs + + + View Code + + + Run Sample + + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-blazor-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-blazor-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Setup + +- instal **.NET SDK** from this [website](https://dotnet.microsoft.com/learn/aspnet/blazor-tutorial/install) + +## Running App in Visual Studio 2019 + +NOTE: VS 2019 has better code highlighting and error detection than VS Code does. + +- open **Visual Studio 2019** as an administrator + +- open the **BlazorClientApp.sln** solution + +- right click solution and select **Restore NuGet Packages** menu item + +- click **Debug** menu and select **Start Debugging** or press **F5** key + + +## Running App in VS Code + +- open **VS Code** as an administrator + +- open this folder in **VS Code** + +- open a terminal window + +- to restore assemblies, run this command: +```dotnet restore``` + +- to run samples, run this command: +```dotnet watch run``` + +- wait for for message: +**Now listening on: http://localhost:4200** + +- open **http://localhost:4200** in your browser + + +## Resources + +- [Razor Component Models](https://www.codemag.com/article/1911052) +- [Razor Syntax](https://docs.microsoft.com/en-us/aspnet/core/blazor/components/?view=aspnetcore-3.1#razor-syntax) +- [Getting reference to components](https://docs.microsoft.com/en-us/aspnet/core/blazor/components/?view=aspnetcore-3.1#capture-references-to-components) diff --git a/samples/charts/dashboard-tile/map-dashboard/WorldCities.cs b/samples/charts/dashboard-tile/map-dashboard/WorldCities.cs new file mode 100644 index 0000000000..ce43f76223 --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/WorldCities.cs @@ -0,0 +1,5473 @@ +using System; +using System.Collections.Generic; +public class WorldCitiesItem +{ + public bool Capital { get; set; } + public double Population { get; set; } + public double Y { get; set; } + public double X { get; set; } + public string Country { get; set; } + public string Name { get; set; } +} + +public class WorldCities + : List +{ + public WorldCities() + { + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 23.62, + Y = 35.68, + X = 139.81, + Country = @"Japan", + Name = @"Tokyo" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 16.47, + Y = 40.75, + X = -74.1, + Country = @"US", + Name = @"New York" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 15.85, + Y = 37.54, + X = 126.94, + Country = @"South Korea", + Name = @"Seoul" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 15.18, + Y = -23.58, + X = -46.62, + Country = @"Brazil", + Name = @"Sao Paulo" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 15.04, + Y = 34.64, + X = 135.52, + Country = @"Japan", + Name = @"Osaka" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 14.1, + Y = 19.43, + X = -99.13, + Country = @"Mexico", + Name = @"Mexico City" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 13.1, + Y = 55.75, + X = 37.7, + Country = @"Russia", + Name = @"Moscow" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 11.1, + Y = 22.54, + X = 88.33, + Country = @"India", + Name = @"Calcutta" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 11.1, + Y = 51.49, + X = -0.18, + Country = @"UK", + Name = @"London" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 10.75, + Y = -34.67, + X = -58.41, + Country = @"Argentina", + Name = @"Buenos Aires" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 10.15, + Y = -22.72, + X = -43.46, + Country = @"Brazil", + Name = @"Rio de Janeiro" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 9.95, + Y = 19.05, + X = 73.17, + Country = @"India", + Name = @"Bombay" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 9.78, + Y = 48.88, + X = 2.43, + Country = @"France", + Name = @"Paris" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 9.76, + Y = 34, + X = -118.25, + Country = @"US", + Name = @"Los Angeles" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 9.41, + Y = 24.98, + X = 121.53, + Country = @"Taiwan", + Name = @"Chingmei" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 9.3, + Y = 30.08, + X = 31.25, + Country = @"Egypt", + Name = @"Cairo" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 9.3, + Y = 31.25, + X = 121.47, + Country = @"China", + Name = @"Shanghai" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 8.6, + Y = -6.29, + X = 106.76, + Country = @"Indonesia", + Name = @"Jakarta" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 7.72, + Y = 41.83, + X = -87.64, + Country = @"US", + Name = @"Chicago" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 7.2, + Y = 28.53, + X = 77.22, + Country = @"India", + Name = @"Delhi" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 6.45, + Y = 13.75, + X = 100.55, + Country = @"Thailand", + Name = @"Bangkok" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 6.45, + Y = 39.91, + X = 116.39, + Country = @"China", + Name = @"Beijing" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 6.4, + Y = 35.77, + X = 51.45, + Country = @"Iran", + Name = @"Tehran" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 6.13, + Y = 25.04, + X = 121.51, + Country = @"Taiwan", + Name = @"Taipei" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 5.83, + Y = 59.95, + X = 30.45, + Country = @"Russia", + Name = @"Saint Petersburg" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 5.75, + Y = 41.07, + X = 29.01, + Country = @"Turkey", + Name = @"Istanbul" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 5.47, + Y = 14.55, + X = 121.17, + Country = @"Philippines", + Name = @"Manila" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 5.4, + Y = 22.43, + X = 114.15, + Country = @"UK", + Name = @"Hong Kong" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 5.3, + Y = 24.85, + X = 67.03, + Country = @"Pakistan", + Name = @"Karachi" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 5.21, + Y = 39.93, + X = -75.22, + Country = @"US", + Name = @"Philadelphia" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 5.06, + Y = 52.52, + X = 13.33, + Country = @"Germany", + Name = @"Berlin" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 4.88, + Y = 39.13, + X = 117.19, + Country = @"China", + Name = @"Tianjin" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 4.8, + Y = 35.15, + X = 136.92, + Country = @"Japan", + Name = @"Nagoya" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 4.69, + Y = 42.39, + X = -83.08, + Country = @"US", + Name = @"Detroit" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 4.65, + Y = 40.44, + X = -3.69, + Country = @"Spain", + Name = @"Madrid" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 4.47, + Y = 13.06, + X = 80.25, + Country = @"India", + Name = @"Madras" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 4.34, + Y = -12.07, + X = -76.82, + Country = @"Peru", + Name = @"Lima" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 4.26, + Y = 4.63, + X = -74.08, + Country = @"Colombia", + Name = @"Bogota" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 4.1, + Y = -33.48, + X = -70.65, + Country = @"Chile", + Name = @"Santiago" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 4.05, + Y = 37.73, + X = -122.31, + Country = @"US", + Name = @"San Francisco" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 4.04, + Y = 41.53, + X = 2.17, + Country = @"Spain", + Name = @"BarceXa" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 3.97, + Y = 42.38, + X = -71.1, + Country = @"US", + Name = @"Boston" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 3.87, + Y = 51.35, + X = 7.12, + Country = @"Germany", + Name = @"Essen" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 3.84, + Y = 33.33, + X = 44.4, + Country = @"Iraq", + Name = @"Baghdad" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 3.84, + Y = 41.8, + X = 123.38, + Country = @"China", + Name = @"Shenyang" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 3.8, + Y = 6.45, + X = 3.3, + Country = @"Nigeria", + Name = @"Lagos" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 3.8, + Y = 35.16, + X = 129.05, + Country = @"South Korea", + Name = @"Pusan" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 3.75, + Y = 45.47, + X = 9.19, + Country = @"Italy", + Name = @"Milano" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 3.65, + Y = -26.18, + X = 28, + Country = @"South Africa", + Name = @"Johannesburg" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 3.6, + Y = 10.5, + X = -66.9, + Country = @"Venezuela", + Name = @"Caracas" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 3.49, + Y = 30.57, + X = 114.28, + Country = @"China", + Name = @"Wuhan" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 3.43, + Y = 23.71, + X = 90.41, + Country = @"Bangladesh", + Name = @"Dhaka" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 3.43, + Y = 43.72, + X = -79.41, + Country = @"Canada", + Name = @"Toronto" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 3.37, + Y = -33.89, + X = 151.03, + Country = @"Australia", + Name = @"Sydney" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 3.35, + Y = 31.07, + X = 29.98, + Country = @"Egypt", + Name = @"Alexandria" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 3.22, + Y = 38.89, + X = -76.95, + Country = @"US", + Name = @"Washington D.C." + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 3.17, + Y = 41.88, + X = 12.52, + Country = @"Italy", + Name = @"Roma" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 3.1, + Y = 10.76, + X = 106.66, + Country = @"Vietnam", + Name = @"Ho Chi Minh City" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 3.05, + Y = 23.1, + X = 113.29, + Country = @"China", + Name = @"Guangzhou" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 3.03, + Y = 38.12, + X = 23.65, + Country = @"Greece", + Name = @"Athens" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 3.02, + Y = 1.23, + X = 104.18, + Country = @"Singapore", + Name = @"Singapore" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 3.02, + Y = 31.55, + X = 74.34, + Country = @"Pakistan", + Name = @"Lahore" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 3, + Y = -4.39, + X = 15.47, + Country = @"Zaire", + Name = @"Kinshasa" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 2.99, + Y = 35.44, + X = 139.62, + Country = @"Japan", + Name = @"Yokohama" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 2.95, + Y = -19.85, + X = -43.91, + Country = @"Brazil", + Name = @"Belo Horizonte" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 2.95, + Y = 12.97, + X = 77.59, + Country = @"India", + Name = @"Bangalore" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 2.92, + Y = 45.54, + X = -73.65, + Country = @"Canada", + Name = @"Montreal" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 2.9, + Y = 50.45, + X = 30.5, + Country = @"Ukraine", + Name = @"Kiev" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 2.88, + Y = 40.83, + X = 14.27, + Country = @"Italy", + Name = @"Napoli" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 2.83, + Y = -37.85, + X = 145.08, + Country = @"Australia", + Name = @"Melbourne" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 2.83, + Y = 25.83, + X = -80.27, + Country = @"US", + Name = @"Miami" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 2.8, + Y = 16.87, + X = 96.12, + Country = @"Burma", + Name = @"Rangoon" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 2.77, + Y = 53.48, + X = -2.26, + Country = @"UK", + Name = @"Manchester" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 2.75, + Y = 17.39, + X = 78.49, + Country = @"India", + Name = @"Hyderabad" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 2.75, + Y = 29.77, + X = -95.41, + Country = @"US", + Name = @"Houston" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 2.73, + Y = 32.76, + X = -96.66, + Country = @"US", + Name = @"Dallas" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 2.67, + Y = 45.76, + X = 126.62, + Country = @"China", + Name = @"Harbin" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 2.67, + Y = 52.49, + X = -1.86, + Country = @"UK", + Name = @"Birmingham" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 2.63, + Y = -8.09, + X = -34.91, + Country = @"Brazil", + Name = @"Recife" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 2.6, + Y = -30.04, + X = -51.21, + Country = @"Brazil", + Name = @"Porto Alegre" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 2.56, + Y = 47.51, + X = 19.09, + Country = @"Hungary", + Name = @"Budapest" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 2.55, + Y = 36.6, + X = 2.99, + Country = @"Algeria", + Name = @"Algiers" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 2.48, + Y = 33.54, + X = -7.53, + Country = @"Morocco", + Name = @"Casablanca" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 2.45, + Y = 29.54, + X = 106.52, + Country = @"China", + Name = @"Chongqing" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 2.4, + Y = 23.04, + X = 72.57, + Country = @"India", + Name = @"Ahmadabad" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 2.4, + Y = 39.93, + X = 32.85, + Country = @"Turkey", + Name = @"Ankara" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 2.38, + Y = 50.84, + X = 4.37, + Country = @"Belgium", + Name = @"Bruxelles" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 2.33, + Y = 41.25, + X = 69.35, + Country = @"Uzbekistan", + Name = @"Toshkent" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 2.33, + Y = 20.67, + X = -103.34, + Country = @"Mexico", + Name = @"Guadalajara" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 2.32, + Y = 52.24, + X = 21.01, + Country = @"Poland", + Name = @"Warsaw" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 2.29, + Y = 32.05, + X = 118.77, + Country = @"China", + Name = @"Nanjing" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 2.25, + Y = 38.73, + X = -9.13, + Country = @"Portugal", + Name = @"Lisboa" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 2.25, + Y = 44.43, + X = 26.12, + Country = @"Romania", + Name = @"Bucharest" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 2.23, + Y = 53.57, + X = 10.03, + Country = @"Germany", + Name = @"Hamburg" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 2.22, + Y = 40.5, + X = -80, + Country = @"US", + Name = @"Pittsburgh" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 2.22, + Y = 41.39, + X = -81.73, + Country = @"US", + Name = @"Cleveland" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 2.21, + Y = 35.86, + X = 128.59, + Country = @"South Korea", + Name = @"Taegu" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 2.2, + Y = 38.64, + X = -90.34, + Country = @"US", + Name = @"St. Louis" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 2.2, + Y = 48.04, + X = 37.74, + Country = @"Ukraine", + Name = @"Donets'k" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 2.13, + Y = 23.05, + X = -82.42, + Country = @"Cuba", + Name = @"Havana" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 2.1, + Y = 32.76, + X = -117.13, + Country = @"US", + Name = @"San Diego" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 2.1, + Y = 6.24, + X = -75.59, + Country = @"Colombia", + Name = @"Medellin" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 2.08, + Y = 47.59, + X = -122.32, + Country = @"US", + Name = @"Seattle" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 2.05, + Y = -12.6, + X = -38.48, + Country = @"Brazil", + Name = @"Salvador" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 2.05, + Y = 7.02, + X = 80.09, + Country = @"Sri Lanka", + Name = @"Colombo" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 2.05, + Y = 34.27, + X = 108.88, + Country = @"China", + Name = @"Xian" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 2.03, + Y = -7.4, + X = 112.68, + Country = @"Indonesia", + Name = @"Surabaja" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 2.02, + Y = 25.68, + X = -100.32, + Country = @"Mexico", + Name = @"Monterrey" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 2.02, + Y = 40.32, + X = 49.82, + Country = @"Azerbaijan", + Name = @"Baku" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 2.02, + Y = 56.29, + X = 43.94, + Country = @"Russia", + Name = @"Nizhniy Novgorod" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 2.01, + Y = 44.92, + X = -93.31, + Country = @"US", + Name = @"Minneapolis" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.96, + Y = 33.8, + X = -84.35, + Country = @"US", + Name = @"Atlanta" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.96, + Y = 39.32, + X = -76.62, + Country = @"US", + Name = @"Baltimore" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.96, + Y = 48.14, + X = 11.54, + Country = @"Germany", + Name = @"Munich" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 1.95, + Y = 5.32, + X = -4.02, + Country = @"Ivory Coast", + Name = @"Abidjan" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.94, + Y = 49.99, + X = 36.21, + Country = @"Ukraine", + Name = @"Kharkov" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.9, + Y = 43.06, + X = 141.35, + Country = @"Japan", + Name = @"Sapporo" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.88, + Y = 26.46, + X = 80.32, + Country = @"India", + Name = @"Kanpur" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 1.88, + Y = 48.2, + X = 16.32, + Country = @"Austria", + Name = @"Vienna" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.87, + Y = 30.47, + X = 30.85, + Country = @"Egypt", + Name = @"Giza" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 1.86, + Y = 52.37, + X = 4.89, + Country = @"Netherlands", + Name = @"Amsterdam" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 1.85, + Y = 33.52, + X = 36.31, + Country = @"Syria", + Name = @"Damascus" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.85, + Y = 50.13, + X = 8.67, + Country = @"Germany", + Name = @"Frankfurt am Main" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.84, + Y = 22.67, + X = 120.34, + Country = @"Taiwan", + Name = @"Kao-Hsiung" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.82, + Y = -3.78, + X = -38.59, + Country = @"Brazil", + Name = @"Fortaleza" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.81, + Y = 30.67, + X = 104.07, + Country = @"China", + Name = @"Chengdu" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.8, + Y = -6.91, + X = 107.61, + Country = @"Indonesia", + Name = @"Bandung" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.8, + Y = 55.86, + X = -4.27, + Country = @"UK", + Name = @"Glasgow" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.79, + Y = -33.8, + X = 18.69, + Country = @"South Africa", + Name = @"Cape Town" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 1.77, + Y = 18.4, + X = -66.08, + Country = @"Puerto Rico", + Name = @"San Juan" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.77, + Y = 18.54, + X = 73.85, + Country = @"India", + Name = @"Pune" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.76, + Y = 50.94, + X = 6.93, + Country = @"Germany", + Name = @"Koln" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.75, + Y = 33.31, + X = 130.32, + Country = @"Japan", + Name = @"Fukuoka" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.74, + Y = 43.88, + X = 125.31, + Country = @"China", + Name = @"Changchung" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.7, + Y = -25.43, + X = -49.28, + Country = @"Brazil", + Name = @"Curitiba" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 1.69, + Y = 55.72, + X = 12.55, + Country = @"Denmark", + Name = @"Kobenhavn" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 1.68, + Y = 33.78, + X = 35.66, + Country = @"Lebanon", + Name = @"Beirut" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.68, + Y = 39.03, + X = 121.6, + Country = @"China", + Name = @"Dalian" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 1.67, + Y = 31.92, + X = 34.86, + Country = @"Israel", + Name = @"Tel Aviv-Yafo" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.66, + Y = 37.89, + X = 112.55, + Country = @"China", + Name = @"Taiyuan" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 1.65, + Y = 53.9, + X = 27.58, + Country = @"Belarus", + Name = @"Minsk" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.62, + Y = 56.85, + X = 60.61, + Country = @"Russia", + Name = @"Yekaterinburg" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.6, + Y = 48.42, + X = 35.14, + Country = @"Ukraine", + Name = @"Dnepropetrovsk" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.6, + Y = 37.59, + X = 126.77, + Country = @"South Korea", + Name = @"Inch`on" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 1.6, + Y = 39.03, + X = 125.76, + Country = @"North Korea", + Name = @"Pyongyang" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.6, + Y = 55.03, + X = 82.94, + Country = @"Russia", + Name = @"Novosibirsk" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 1.57, + Y = -15.79, + X = -47.9, + Country = @"Brazil", + Name = @"Brasilia" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.57, + Y = 34.38, + X = 132.44, + Country = @"Japan", + Name = @"Hiroshima" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 1.55, + Y = -34.92, + X = -56.17, + Country = @"Uruguay", + Name = @"Montevideo" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.55, + Y = 38.44, + X = 27.21, + Country = @"Turkey", + Name = @"Izmir" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.55, + Y = -29.84, + X = 30.94, + Country = @"South Africa", + Name = @"Durban" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.55, + Y = 45.07, + X = 7.67, + Country = @"Italy", + Name = @"Torino" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.54, + Y = 53.81, + X = -1.5, + Country = @"UK", + Name = @"Leeds" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.52, + Y = 53.42, + X = -2.77, + Country = @"UK", + Name = @"Liverpool" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.52, + Y = 33.68, + X = 130.8, + Country = @"Japan", + Name = @"Kita Kyushu" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 1.5, + Y = 9.03, + X = 38.7, + Country = @"Ethiopia", + Name = @"Adis Abeba" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 1.5, + Y = 21.03, + X = 105.82, + Country = @"Vietnam", + Name = @"Hanoi" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.5, + Y = 53.14, + X = 50.1, + Country = @"Russia", + Name = @"Samara" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 1.48, + Y = 3.15, + X = 101.71, + Country = @"Malaysia", + Name = @"Kuala Lumpur" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.48, + Y = 33.51, + X = -112.11, + Country = @"US", + Name = @"Phoenix" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.48, + Y = 35.01, + X = 135.75, + Country = @"Japan", + Name = @"Kyoto" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.48, + Y = 39.15, + X = -84.48, + Country = @"US", + Name = @"Cincinnati" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.48, + Y = 42.9, + X = -78.85, + Country = @"US", + Name = @"Buffalo" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 1.46, + Y = -9, + X = 13.46, + Country = @"Angola", + Name = @"Luanda" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.46, + Y = 36.29, + X = 59.6, + Country = @"Iran", + Name = @"Mashhad" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.46, + Y = 36.66, + X = 116.97, + Country = @"China", + Name = @"Jinan" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 1.46, + Y = 41.72, + X = 44.78, + Country = @"Georgia", + Name = @"Tbilisi" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 1.45, + Y = 59.24, + X = 18.08, + Country = @"Sweden", + Name = @"Stockholm" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 1.43, + Y = 14.63, + X = -16.85, + Country = @"Senegal", + Name = @"Dakar" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.41, + Y = 39.75, + X = -105.07, + Country = @"US", + Name = @"Denver" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.41, + Y = 34.66, + X = 135.18, + Country = @"Japan", + Name = @"Kobe" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.4, + Y = 3.46, + X = -76.52, + Country = @"Colombia", + Name = @"Cali" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 1.4, + Y = 14.62, + X = -90.52, + Country = @"Guatemala", + Name = @"Guatemala" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 1.4, + Y = 44.8, + X = 20.41, + Country = @"Serbia", + Name = @"Belgrade" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.39, + Y = 22.48, + X = 91.83, + Country = @"Bangladesh", + Name = @"Chittagong" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.38, + Y = 49.27, + X = -122.96, + Country = @"Canada", + Name = @"Vancouver" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 1.38, + Y = 29.19, + X = 48, + Country = @"Kuwait", + Name = @"Al Kuwayt" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.38, + Y = 43.07, + X = -87.99, + Country = @"US", + Name = @"Milwaukee" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.37, + Y = 3.59, + X = 98.68, + Country = @"Indonesia", + Name = @"Medan" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.36, + Y = 48.71, + X = 44.48, + Country = @"Russia", + Name = @"Volgograd" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.33, + Y = 14.65, + X = 121.03, + Country = @"Philippines", + Name = @"Quezon City" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 1.32, + Y = 50.11, + X = 14.46, + Country = @"Czechia", + Name = @"Prague" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.32, + Y = 55.15, + X = 61.39, + Country = @"Russia", + Name = @"Chelyabinsk" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 1.31, + Y = 18.5, + X = -69.91, + Country = @"Dominican Rp", + Name = @"Santo Domingo" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 1.31, + Y = 40.21, + X = 44.53, + Country = @"Armenia", + Name = @"Yerevan" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.3, + Y = 21.62, + X = 39.37, + Country = @"Saudi Arabia", + Name = @"Jiddah" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 1.3, + Y = -6.82, + X = 39.25, + Country = @"Tanzania", + Name = @"Dar es Salaam" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.3, + Y = 21.16, + X = 79.09, + Country = @"India", + Name = @"Nagpur" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.3, + Y = 41.12, + X = 122.98, + Country = @"China", + Name = @"Anshan" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 1.29, + Y = -1.17, + X = 36.83, + Country = @"Kenya", + Name = @"Nairobi" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.28, + Y = 25.05, + X = 102.7, + Country = @"China", + Name = @"Kunming" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.27, + Y = 36.15, + X = 120.43, + Country = @"China", + Name = @"Qingdao" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.27, + Y = 30.25, + X = 120.17, + Country = @"China", + Name = @"Hangzhou" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.27, + Y = 36.11, + X = 103.6, + Country = @"China", + Name = @"Lanzhou" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.27, + Y = 38.99, + X = -94.63, + Country = @"US", + Name = @"Kansas City" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.27, + Y = 39.47, + X = -0.37, + Country = @"Spain", + Name = @"Valencia" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.27, + Y = 41.86, + X = 123.91, + Country = @"China", + Name = @"Fushun" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.27, + Y = 45.75, + X = 4.86, + Country = @"France", + Name = @"Lyon" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 1.25, + Y = 24.65, + X = 46.77, + Country = @"Saudi Arabia", + Name = @"Ar Riyad" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.25, + Y = -2.2, + X = -79.91, + Country = @"Ecuador", + Name = @"Guayaquil" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 1.25, + Y = 5.56, + X = -0.2, + Country = @"Ghana", + Name = @"Accra" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 1.25, + Y = 31.95, + X = 35.93, + Country = @"Jordan", + Name = @"Amman" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.23, + Y = 41.15, + X = -8.49, + Country = @"Portugal", + Name = @"Porto" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.23, + Y = 43.3, + X = 5.38, + Country = @"France", + Name = @"Marseille" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.23, + Y = 45.44, + X = -122.64, + Country = @"US", + Name = @"Portland" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 1.23, + Y = 36.82, + X = 10.17, + Country = @"Tunisia", + Name = @"Tunis" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.22, + Y = 36.22, + X = 37.16, + Country = @"Syria", + Name = @"Aleppo" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 1.21, + Y = 42.71, + X = 23.33, + Country = @"Bulgaria", + Name = @"Sofia" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.2, + Y = -1.61, + X = -48.32, + Country = @"Brazil", + Name = @"Belem" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.19, + Y = 28.2, + X = 112.97, + Country = @"China", + Name = @"Changsha" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.19, + Y = 29.96, + X = -90.1, + Country = @"US", + Name = @"New Orleans" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.19, + Y = 38.08, + X = 114.56, + Country = @"China", + Name = @"Shijiazhuang" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 1.19, + Y = 43.26, + X = 76.91, + Country = @"Kazakhstan", + Name = @"Almaty" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.19, + Y = 46.57, + X = 30.68, + Country = @"Ukraine", + Name = @"Odessa" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 1.18, + Y = 34.53, + X = 69.14, + Country = @"Afghanistan", + Name = @"Kabul" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.18, + Y = 55.06, + X = 73.25, + Country = @"Russia", + Name = @"Omsk" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.17, + Y = 34.76, + X = 113.64, + Country = @"China", + Name = @"Zhengzhou" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.17, + Y = 43.85, + X = 126.57, + Country = @"China", + Name = @"Jilin" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.17, + Y = 47.23, + X = 39.69, + Country = @"Russia", + Name = @"Rostov-na-Donu" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.16, + Y = 58, + X = 56.23, + Country = @"Russia", + Name = @"Perm'" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.15, + Y = -27.45, + X = 153.03, + Country = @"Australia", + Name = @"Brisbane" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.15, + Y = 47.34, + X = 123.96, + Country = @"China", + Name = @"Qiqihar" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.14, + Y = 11.01, + X = -74.68, + Country = @"Colombia", + Name = @"Barranquilla" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.14, + Y = 7.38, + X = 3.9, + Country = @"Nigeria", + Name = @"Ibadan" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 1.14, + Y = 53.34, + X = -6.26, + Country = @"Ireland", + Name = @"Dublin" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.14, + Y = 55.73, + X = 49.15, + Country = @"Russia", + Name = @"Kazan'" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.12, + Y = 40.65, + X = 109.98, + Country = @"China", + Name = @"Baotou" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.11, + Y = 51.93, + X = 4.49, + Country = @"Netherlands", + Name = @"Rotterdam" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.1, + Y = 31.41, + X = 73.08, + Country = @"Pakistan", + Name = @"Faisalabad" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.1, + Y = 51.21, + X = 4.43, + Country = @"Belgium", + Name = @"Antwerp" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.1, + Y = 54.82, + X = 56.1, + Country = @"Russia", + Name = @"Ufa" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.09, + Y = 35.5, + X = 139.73, + Country = @"Japan", + Name = @"Kawasaki" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.07, + Y = -31.32, + X = -64.18, + Country = @"Argentina", + Name = @"Cordoba" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 1.07, + Y = -25.96, + X = 32.57, + Country = @"Mozambique", + Name = @"Maputo" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.06, + Y = -23.95, + X = -46.31, + Country = @"Brazil", + Name = @"Santos" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.06, + Y = 26.85, + X = 80.92, + Country = @"India", + Name = @"Lucknow" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.06, + Y = 39.62, + X = 118.18, + Country = @"China", + Name = @"Tangshan" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.06, + Y = 51.78, + X = 19.48, + Country = @"Poland", + Name = @"Lodz" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 1.05, + Y = -0.23, + X = -78.52, + Country = @"Ecuador", + Name = @"Quito" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.05, + Y = 19.05, + X = -98.19, + Country = @"Mexico", + Name = @"Puebla de Zaragoza" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.04, + Y = 31.78, + X = -106.45, + Country = @"US", + Name = @"El Paso" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.04, + Y = -32.94, + X = -60.66, + Country = @"Argentina", + Name = @"Rosario" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.04, + Y = 43.78, + X = 87.59, + Country = @"China", + Name = @"Urumqi" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.03, + Y = 4.14, + X = 9.71, + Country = @"Cameroon", + Name = @"Douala" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.03, + Y = 28.67, + X = 115.89, + Country = @"China", + Name = @"Nanchang" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.02, + Y = -7.03, + X = 110.44, + Country = @"Indonesia", + Name = @"Semarang" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.02, + Y = 25.61, + X = 85.14, + Country = @"India", + Name = @"Patna" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.02, + Y = 26.91, + X = 75.8, + Country = @"India", + Name = @"Jaipur" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.02, + Y = 50.63, + X = 3.06, + Country = @"France", + Name = @"Lille" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 1.01, + Y = 26.57, + X = 106.7, + Country = @"China", + Name = @"Guiyang" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 1, + Y = 56.88, + X = 24.05, + Country = @"Latvia", + Name = @"Riga" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.99, + Y = -31.98, + X = 115.92, + Country = @"Australia", + Name = @"Perth" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.99, + Y = 32.75, + X = 13.21, + Country = @"Libya", + Name = @"Tripoli" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.99, + Y = -16.73, + X = -49.25, + Country = @"Brazil", + Name = @"Goiania" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.99, + Y = -16.5, + X = -68.15, + Country = @"Bolivia", + Name = @"La Paz" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.99, + Y = 32.65, + X = 51.68, + Country = @"Iran", + Name = @"Esfahan" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.98, + Y = 33.92, + X = -6.75, + Country = @"Morocco", + Name = @"Rabat" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.98, + Y = -34.92, + X = 138.87, + Country = @"Australia", + Name = @"Adelaide" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.98, + Y = 43.28, + X = -2.97, + Country = @"Spain", + Name = @"Bilbao" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.97, + Y = 29.43, + X = -98.52, + Country = @"US", + Name = @"San Antonio" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.97, + Y = 38.08, + X = 46.29, + Country = @"Iran", + Name = @"Tabriz" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.96, + Y = -25.73, + X = 28.22, + Country = @"South Africa", + Name = @"Pretoria" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.96, + Y = 9.91, + X = 78.12, + Country = @"India", + Name = @"Madurai" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.96, + Y = 40.04, + X = -82.99, + Country = @"US", + Name = @"Columbus" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.94, + Y = 37.37, + X = -5.97, + Country = @"Spain", + Name = @"Sevilla" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.93, + Y = 25.28, + X = 82.96, + Country = @"India", + Name = @"Benares" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.92, + Y = 15.55, + X = 32.53, + Country = @"Sudan", + Name = @"Khartoum" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.92, + Y = 13.7, + X = -89.2, + Country = @"El Salvador", + Name = @"San Salvador" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.91, + Y = 54.37, + X = 18.62, + Country = @"Poland", + Name = @"Gdansk" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.9, + Y = 60.2, + X = 24.98, + Country = @"Finland", + Name = @"Helsinki" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.89, + Y = -17.83, + X = 31.02, + Country = @"Zimbabwe", + Name = @"Harare" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.89, + Y = 10.65, + X = -71.64, + Country = @"Venezuela", + Name = @"Maracaibo" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.89, + Y = 26.07, + X = 119.3, + Country = @"China", + Name = @"Fuzhou" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.88, + Y = 18.53, + X = -72.34, + Country = @"Haiti", + Name = @"Port-au-Prince" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.87, + Y = 38.57, + X = -121.42, + Country = @"US", + Name = @"Sacramento" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.85, + Y = 29.63, + X = 52.57, + Country = @"Iran", + Name = @"Shiraz" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.85, + Y = -36.89, + X = 174.8, + Country = @"New Zealand", + Name = @"Auckland" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.85, + Y = 35.11, + X = -90, + Country = @"US", + Name = @"Memphis" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.84, + Y = 33.61, + X = 73.04, + Country = @"Pakistan", + Name = @"Rawalpindi" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.83, + Y = 36.79, + X = 118.06, + Country = @"China", + Name = @"Zibo" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.83, + Y = 50.06, + X = 19.95, + Country = @"Poland", + Name = @"Krakow" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.82, + Y = 43.21, + X = -77.64, + Country = @"US", + Name = @"Rochester" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.82, + Y = 45.37, + X = -75.65, + Country = @"Canada", + Name = @"Ottawa" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.81, + Y = 44.46, + X = 8.92, + Country = @"Italy", + Name = @"Genova" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.81, + Y = -3.12, + X = -60.01, + Country = @"Brazil", + Name = @"Manaus" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.8, + Y = 9.52, + X = -12.8, + Country = @"Guinea", + Name = @"Conakry" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.8, + Y = 25.38, + X = 68.37, + Country = @"Pakistan", + Name = @"Hyderabad" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.8, + Y = 36.88, + X = -76.27, + Country = @"US", + Name = @"Norfolk" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.8, + Y = 53.08, + X = 8.86, + Country = @"Germany", + Name = @"Bremen" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.79, + Y = 53.57, + X = -113.27, + Country = @"Canada", + Name = @"Edmonton" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.79, + Y = -3, + X = 104.83, + Country = @"Indonesia", + Name = @"Palembang" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.79, + Y = 49.84, + X = 24.03, + Country = @"Ukraine", + Name = @"Lvov" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.78, + Y = 22.38, + X = 114.23, + Country = @"UK", + Name = @"Kowloon" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.78, + Y = 37, + X = 35.32, + Country = @"Turkey", + Name = @"Adana" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.77, + Y = 51.9, + X = 4.3, + Country = @"Netherlands", + Name = @"The Hague" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.77, + Y = 18.02, + X = -76.8, + Country = @"Jamaica", + Name = @"Kingston" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.76, + Y = 21.32, + X = -157.81, + Country = @"US", + Name = @"Honolulu" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.75, + Y = 50.62, + X = 5.57, + Country = @"Belgium", + Name = @"Liege" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.74, + Y = 34.67, + X = 112.36, + Country = @"China", + Name = @"Luoyang" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.74, + Y = 35.49, + X = -97.53, + Country = @"US", + Name = @"Oklahoma City" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.72, + Y = 38.13, + X = 13.4, + Country = @"Italy", + Name = @"Palermo" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.72, + Y = 59.93, + X = 10.72, + Country = @"Norway", + Name = @"Oslo" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.71, + Y = 40.63, + X = 22.8, + Country = @"Greece", + Name = @"ThessaXiki" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.71, + Y = 57.75, + X = 12, + Country = @"Sweden", + Name = @"Goteborg" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.71, + Y = -5.19, + X = 119.72, + Country = @"Indonesia", + Name = @"Vjuag Padang" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.71, + Y = 24.14, + X = 120.67, + Country = @"Taiwan", + Name = @"T`ai-chung" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.71, + Y = 53.37, + X = -1.46, + Country = @"UK", + Name = @"Sheffield" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.7, + Y = -25.22, + X = -57.67, + Country = @"Paraguay", + Name = @"Asuncion" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.7, + Y = 45.81, + X = 15.96, + Country = @"Croatia", + Name = @"Zagreb" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.7, + Y = 11.56, + X = 104.91, + Country = @"Cambodia", + Name = @"Phnom Penh" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.7, + Y = 51.35, + X = 12.4, + Country = @"Germany", + Name = @"Leipzig" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.69, + Y = 9.99, + X = 76.52, + Country = @"India", + Name = @"Cochin" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.69, + Y = -33.88, + X = 25.48, + Country = @"South Africa", + Name = @"Port Elizabeth" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.69, + Y = 54.59, + X = -5.91, + Country = @"UK", + Name = @"Belfast" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.68, + Y = -32.9, + X = -71.3, + Country = @"Chile", + Name = @"Valparaiso" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.68, + Y = -36.88, + X = -72.85, + Country = @"Chile", + Name = @"Concepcion" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.68, + Y = 12.15, + X = -86.27, + Country = @"Nicaragua", + Name = @"Managua" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.68, + Y = 40.69, + X = -111.89, + Country = @"US", + Name = @"Salt Lake City" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.67, + Y = 47, + X = 28.83, + Country = @"Moldova", + Name = @"Kishinev" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.67, + Y = 9.93, + X = -84.08, + Country = @"Costa Rica", + Name = @"San Jose" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.67, + Y = 51.03, + X = -114.05, + Country = @"Canada", + Name = @"Calgary" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.67, + Y = 51.05, + X = 13.71, + Country = @"Germany", + Name = @"Dresden" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.66, + Y = 23.17, + X = 120.23, + Country = @"Taiwan", + Name = @"T`ai-nan" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.66, + Y = -18.87, + X = 47.5, + Country = @"Madagascar", + Name = @"Antananarivo" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.65, + Y = 43.13, + X = 131.96, + Country = @"Russia", + Name = @"Vladivostok" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.65, + Y = -32.9, + X = -68.83, + Country = @"Argentina", + Name = @"Mendoza" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.65, + Y = 3.87, + X = 11.51, + Country = @"Cameroon", + Name = @"Yaounde" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.65, + Y = 12.65, + X = -7.99, + Country = @"Mali", + Name = @"Bamako" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.65, + Y = 22.84, + X = 89.56, + Country = @"Bangladesh", + Name = @"Khulna" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.64, + Y = 30.33, + X = -81.66, + Country = @"US", + Name = @"Jacksonville" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.64, + Y = 43.78, + X = 11.21, + Country = @"Italy", + Name = @"Firenze" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.64, + Y = 44.84, + X = -0.6, + Country = @"France", + Name = @"Bordeaux" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.64, + Y = 51.12, + X = 17.04, + Country = @"Poland", + Name = @"Wroclaw" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.63, + Y = 37.31, + X = -121.85, + Country = @"US", + Name = @"San Jose" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.63, + Y = 8.95, + X = -79.4, + Country = @"Panama", + Name = @"Panama" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.63, + Y = 35.75, + X = -0.52, + Country = @"Algeria", + Name = @"Oran" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.63, + Y = 51.5, + X = -3.15, + Country = @"UK", + Name = @"Cardiff" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.63, + Y = 55.88, + X = -3.3, + Country = @"UK", + Name = @"Edinburgh" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.63, + Y = 49.92, + X = -97.12, + Country = @"Canada", + Name = @"Winnipeg" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.63, + Y = 52.32, + X = 104.25, + Country = @"Russia", + Name = @"Irkutsk" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.62, + Y = 42.88, + X = 74.77, + Country = @"Kyrgyzstan", + Name = @"Frunze" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.62, + Y = 10.18, + X = -68, + Country = @"Venezuela", + Name = @"Valencia" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.62, + Y = 30.5, + X = 47.76, + Country = @"Iraq", + Name = @"Al Basra" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.61, + Y = 49.88, + X = 73.2, + Country = @"Kazakhstan", + Name = @"Karaganda" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.6, + Y = 48.53, + X = 135.07, + Country = @"Russia", + Name = @"Khabarovsk" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.6, + Y = 17.75, + X = 83.33, + Country = @"India", + Name = @"Vishakhapatnam" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.6, + Y = -2.5, + X = -44.43, + Country = @"Brazil", + Name = @"Sao Luis" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.6, + Y = 53.7, + X = 87.17, + Country = @"Russia", + Name = @"Novokuznetsk" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.6, + Y = 2.04, + X = 45.34, + Country = @"Somalia", + Name = @"Muqdisho" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.6, + Y = 46.8, + X = -71.24, + Country = @"Canada", + Name = @"Quebec" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.59, + Y = 28, + X = -82.59, + Country = @"US", + Name = @"Tampa" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.59, + Y = 38.63, + X = 68.9, + Country = @"Tajikistan", + Name = @"Dushanfe" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.59, + Y = -4.29, + X = 15.29, + Country = @"Congo", + Name = @"Brazzaville" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.59, + Y = 31.63, + X = 74.87, + Country = @"India", + Name = @"Amritsar" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.58, + Y = 54.69, + X = 25.28, + Country = @"Lithuania", + Name = @"Vilnius" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.57, + Y = 36.34, + X = 43.14, + Country = @"Iraq", + Name = @"Mosul" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.57, + Y = 41.65, + X = -0.88, + Country = @"Spain", + Name = @"Zaragoza" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.57, + Y = 50.73, + X = 7.1, + Country = @"Germany", + Name = @"Bonn" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.57, + Y = 51.51, + X = 7.47, + Country = @"Germany", + Name = @"Dortmund" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.55, + Y = 14.1, + X = -87.2, + Country = @"Honduras", + Name = @"Tegucigalpa" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.55, + Y = 21.43, + X = 39.81, + Country = @"Saudi Arabia", + Name = @"Mecca" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.55, + Y = 47.93, + X = 106.91, + Country = @"Mongolia", + Name = @"Ulaanbaatar" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.54, + Y = -15.43, + X = 28.17, + Country = @"Zambia", + Name = @"Lusaka" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.54, + Y = -11.68, + X = 27.55, + Country = @"Zaire", + Name = @"Lumumbashi" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.54, + Y = 11.92, + X = 8.52, + Country = @"Nigeria", + Name = @"Kano" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.54, + Y = 31.15, + X = -8, + Country = @"Morocco", + Name = @"Marrakech" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.54, + Y = 34.04, + X = -5, + Country = @"Morocco", + Name = @"Fes" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.54, + Y = 43.6, + X = 1.44, + Country = @"France", + Name = @"Toulouse" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.53, + Y = 15.62, + X = 32.48, + Country = @"Sudan", + Name = @"Omdurman" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.53, + Y = 8.38, + X = -12.91, + Country = @"Sierra Leone", + Name = @"Freetown" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.53, + Y = 21.98, + X = 96.08, + Country = @"Burma", + Name = @"Mandalay" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.52, + Y = 51.49, + X = 6.78, + Country = @"Germany", + Name = @"Duisburg" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.51, + Y = 46.25, + X = 48, + Country = @"Russia", + Name = @"Astrakhan" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.51, + Y = -5.78, + X = -35.25, + Country = @"Brazil", + Name = @"Natal" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.5, + Y = 10.07, + X = -69.34, + Country = @"Venezuela", + Name = @"Barquisimeto" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.49, + Y = 5.35, + X = 100.55, + Country = @"Malaysia", + Name = @"George Town" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.49, + Y = 31.77, + X = 35.23, + Country = @"Israel", + Name = @"Jerusalem" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.48, + Y = 59.28, + X = 24.75, + Country = @"Estonia", + Name = @"Tallinn" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.48, + Y = 35.21, + X = -80.84, + Country = @"US", + Name = @"Charlotte" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.47, + Y = 6.52, + X = -10.77, + Country = @"Liberia", + Name = @"Monrovia" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.47, + Y = 4.37, + X = 18.56, + Country = @"Cent Af Rep", + Name = @"Bangui" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.47, + Y = 47.22, + X = -1.56, + Country = @"France", + Name = @"Nantes" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.47, + Y = 51.05, + X = 3.74, + Country = @"Belgium", + Name = @"Gent" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.47, + Y = 68.96, + X = 33.09, + Country = @"Russia", + Name = @"Murmansk" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.46, + Y = 0.32, + X = 32.58, + Country = @"Uganda", + Name = @"Kampala" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.45, + Y = 42, + X = 21.53, + Country = @"Macedonia", + Name = @"Skopje" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.45, + Y = 32.88, + X = 129.86, + Country = @"Japan", + Name = @"Nagasaki" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.45, + Y = -16.4, + X = -71.52, + Country = @"Peru", + Name = @"Arequipa" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.45, + Y = 49.2, + X = 16.62, + Country = @"Czechia", + Name = @"Brno" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.44, + Y = 12.48, + X = -1.67, + Country = @"Burkina Faso", + Name = @"Ouagadouou" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.44, + Y = -4.02, + X = 39.67, + Country = @"Kenya", + Name = @"Mombasa" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.44, + Y = 32.04, + X = 20.31, + Country = @"Libya", + Name = @"Banghazi" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.44, + Y = -17.79, + X = -63.2, + Country = @"Bolivia", + Name = @"Santa Cruz de La Sierra" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.43, + Y = 48.27, + X = 17.27, + Country = @"Slovakia", + Name = @"Bratislava" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.43, + Y = 15.36, + X = 44.21, + Country = @"Yemen", + Name = @"Sanaa" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.43, + Y = 22.24, + X = -97.84, + Country = @"Mexico", + Name = @"Tampico" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.43, + Y = 34.73, + X = 36.72, + Country = @"Syria", + Name = @"Homs" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.42, + Y = 45.42, + X = 12.37, + Country = @"Italy", + Name = @"Venezia" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.42, + Y = 64.52, + X = 40.65, + Country = @"Russia", + Name = @"Arkhangelsk" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.41, + Y = -20.2, + X = 28.71, + Country = @"Zimbabwe", + Name = @"Bulawayo" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.41, + Y = -33, + X = 151.91, + Country = @"Australia", + Name = @"Newcastle" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.41, + Y = 7.08, + X = 125.61, + Country = @"Philippines", + Name = @"Davao" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.4, + Y = 6.28, + X = 1.35, + Country = @"Togo", + Name = @"Lome" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.4, + Y = 13.6, + X = 2.08, + Country = @"Niger", + Name = @"Niamey" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.4, + Y = 20.82, + X = -89.55, + Country = @"Mexico", + Name = @"Merida" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.4, + Y = 37.95, + X = 58.39, + Country = @"Turkmenistan", + Name = @"Ashkhabad" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.4, + Y = 48.58, + X = 7.77, + Country = @"France", + Name = @"Strasbourg" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.39, + Y = 19.01, + X = -96.08, + Country = @"Mexico", + Name = @"Veracruz" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.39, + Y = 28.56, + X = -105.97, + Country = @"Mexico", + Name = @"Chihuaha" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.39, + Y = 20.86, + X = 106.68, + Country = @"Vietnam", + Name = @"Haiphong" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.38, + Y = 18, + X = 102.68, + Country = @"Laos", + Name = @"Vientiane" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.37, + Y = 10.64, + X = -61.49, + Country = @"Trinidad", + Name = @"Port of Spain" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.37, + Y = 39.66, + X = 66.95, + Country = @"Uzbekistan", + Name = @"Samarkand" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.35, + Y = -41.21, + X = 175.14, + Country = @"New Zealand", + Name = @"Wellington" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.35, + Y = -7.93, + X = -79, + Country = @"Peru", + Name = @"Trujillo" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.34, + Y = 43.87, + X = 18.43, + Country = @"Bosnia", + Name = @"Sarajevo" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.34, + Y = 48.3, + X = 14.29, + Country = @"Austria", + Name = @"Linz" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.33, + Y = 40.72, + X = -74.2, + Country = @"US", + Name = @"Newark" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.33, + Y = 29.96, + X = 32.56, + Country = @"Egypt", + Name = @"Suez" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.33, + Y = 47.06, + X = 15.43, + Country = @"Austria", + Name = @"Graz" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.32, + Y = 12.86, + X = 45.18, + Country = @"Yemen", + Name = @"Aden" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.32, + Y = -33.03, + X = 27.9, + Country = @"South Africa", + Name = @"East Xdon" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.32, + Y = -43.55, + X = 172.68, + Country = @"New Zealand", + Name = @"Christchurch" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.32, + Y = 27.71, + X = 85.31, + Country = @"Nepal", + Name = @"Kathmandu" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.31, + Y = 12.95, + X = 75.16, + Country = @"India", + Name = @"Mangalore" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.31, + Y = 34.75, + X = 10.76, + Country = @"Tunisia", + Name = @"Sfax" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.31, + Y = 25.2, + X = 51.5, + Country = @"Qatar", + Name = @"Doha" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.3, + Y = -0.92, + X = 100.48, + Country = @"Indonesia", + Name = @"Padang" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.3, + Y = 44.63, + X = -63.58, + Country = @"Canada", + Name = @"Halifax" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.3, + Y = 16.97, + X = -99.93, + Country = @"Mexico", + Name = @"ACapulco" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.3, + Y = 12.1, + X = 15.24, + Country = @"Chad", + Name = @"N'Djamena" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.3, + Y = 39.23, + X = 9.11, + Country = @"Italy", + Name = @"Cagliari" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.3, + Y = 46.95, + X = 7.45, + Country = @"Switzerland", + Name = @"Bern" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.29, + Y = -19.77, + X = 35.02, + Country = @"Mozambique", + Name = @"Beira" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.29, + Y = -4.64, + X = 12.06, + Country = @"Congo", + Name = @"Pointe Noire" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.29, + Y = 40.75, + X = 140.67, + Country = @"Japan", + Name = @"Aomori" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.29, + Y = 24.43, + X = 39.7, + Country = @"Saudi Arabia", + Name = @"Al Madinah" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.29, + Y = -31.62, + X = -60.7, + Country = @"Argentina", + Name = @"Santa Fe" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.29, + Y = -5.89, + X = 22.4, + Country = @"Zaire", + Name = @"Kananga" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.28, + Y = 18.03, + X = -15.78, + Country = @"Mauritania", + Name = @"Nouakchott" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.28, + Y = 15.33, + X = 38.97, + Country = @"Eritrea", + Name = @"Asmara" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.28, + Y = 29.6, + X = 60.83, + Country = @"Iran", + Name = @"Zahedan" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.28, + Y = -6.62, + X = -79.83, + Country = @"Peru", + Name = @"Chiclayo" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.28, + Y = -15.55, + X = -56.05, + Country = @"Brazil", + Name = @"Cuiaba" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.28, + Y = 0.52, + X = 25.2, + Country = @"Zaire", + Name = @"Kisangani" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.27, + Y = 53.2, + X = 158.72, + Country = @"Russia", + Name = @"Petropavloski-Kamchatskiy" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.27, + Y = -3.27, + X = 29.53, + Country = @"Burundi", + Name = @"Bujumbura" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.27, + Y = -35.35, + X = 149.04, + Country = @"Australia", + Name = @"Canberra" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.27, + Y = 28.57, + X = 77.22, + Country = @"India", + Name = @"New Delhi" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.26, + Y = 49.32, + X = 0.22, + Country = @"France", + Name = @"Le Havre" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.26, + Y = 48.65, + X = -123.57, + Country = @"Canada", + Name = @"Victoria" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.26, + Y = 11.88, + X = 13.26, + Country = @"Niger", + Name = @"Maiduguri" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.26, + Y = -12.04, + X = -76.84, + Country = @"Peru", + Name = @"Callao" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.25, + Y = -7.33, + X = 19, + Country = @"Zaire", + Name = @"Kahemba" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.25, + Y = 6.45, + X = 7.49, + Country = @"Nigeria", + Name = @"Enugu" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.25, + Y = 39.9, + X = 41.29, + Country = @"Turkey", + Name = @"Erzurum" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.24, + Y = 24.24, + X = 54.62, + Country = @"UAE", + Name = @"Abu Zaby" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.24, + Y = 5.93, + X = -55.23, + Country = @"SuriName", + Name = @"Paramaribo" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.24, + Y = -0.5, + X = 9.49, + Country = @"Gabon", + Name = @"Libreville" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.24, + Y = 60.35, + X = 5.49, + Country = @"Norway", + Name = @"Bergen" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.24, + Y = 41.32, + X = 36.37, + Country = @"Turkey", + Name = @"Samsun" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.24, + Y = 45.7, + X = 13.93, + Country = @"Italy", + Name = @"Trieste" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.23, + Y = -13.92, + X = 33.82, + Country = @"Malawi", + Name = @"LiXgwe" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.23, + Y = 31.97, + X = 54.45, + Country = @"Iran", + Name = @"Yazd" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.23, + Y = -29.15, + X = 26.26, + Country = @"South Africa", + Name = @"Bloemfontein" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.23, + Y = -2.46, + X = -54.61, + Country = @"Brazil", + Name = @"Santarem" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.23, + Y = 46.07, + X = 14.64, + Country = @"Slovenia", + Name = @"Ljubljana" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.22, + Y = 1.42, + X = 124.88, + Country = @"Indonesia", + Name = @"Manado" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.22, + Y = -8.93, + X = -78.45, + Country = @"Peru", + Name = @"Chimbote" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.22, + Y = -27.4, + X = -58.9, + Country = @"Argentina", + Name = @"Resistencia" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.22, + Y = 47.8, + X = 13.09, + Country = @"Austria", + Name = @"Salzburg" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.22, + Y = -38.73, + X = -62.27, + Country = @"Argentina", + Name = @"Bahia Blanca" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.21, + Y = -1.21, + X = 116.86, + Country = @"Indonesia", + Name = @"Balikpapan" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.21, + Y = 19.62, + X = 37.22, + Country = @"Sudan", + Name = @"Bur Sudan" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.21, + Y = 41.33, + X = 19.83, + Country = @"Albania", + Name = @"Tirane" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.2, + Y = 7.58, + X = -72.01, + Country = @"Venezuela", + Name = @"San Cristobal" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.2, + Y = 34.34, + X = 36.01, + Country = @"Lebanon", + Name = @"Tripoli" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.2, + Y = 31.6, + X = 65.5, + Country = @"Afghanistan", + Name = @"Qandahar" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.2, + Y = 23.36, + X = -106.27, + Country = @"Mexico", + Name = @"Mazatlan" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.2, + Y = -12.73, + X = 15.78, + Country = @"Angola", + Name = @"Huambo" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.2, + Y = -8.75, + X = -63.9, + Country = @"Brazil", + Name = @"Porto Velho" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.2, + Y = 52.11, + X = -106.63, + Country = @"Canada", + Name = @"Saskatoon" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.2, + Y = 33.72, + X = 73.06, + Country = @"Pakistan", + Name = @"Islamabad" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.19, + Y = 6.77, + X = -58.17, + Country = @"Guyana", + Name = @"Georgetown" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.19, + Y = 24.08, + X = 32.95, + Country = @"Egypt", + Name = @"Aswan" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.19, + Y = 62.01, + X = 129.83, + Country = @"Russia", + Name = @"Yakutsk" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.19, + Y = 50.41, + X = -104.65, + Country = @"Canada", + Name = @"Regina" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.18, + Y = 61.19, + X = -149.17, + Country = @"US", + Name = @"Anchorage" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.18, + Y = -23.83, + X = -70.23, + Country = @"Chile", + Name = @"Antofagasta" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.18, + Y = -13.6, + X = -71.86, + Country = @"Peru", + Name = @"Cuzco" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.18, + Y = -2.12, + X = 29.99, + Country = @"Rwanda", + Name = @"Kigali" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.18, + Y = 35.17, + X = 33.39, + Country = @"Cyprus", + Name = @"Nicosia" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.18, + Y = -3.75, + X = -73.19, + Country = @"Peru", + Name = @"Iquitos" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.18, + Y = 47.27, + X = 11.35, + Country = @"Austria", + Name = @"Innsbruck" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.17, + Y = 69.33, + X = 88.1, + Country = @"Russia", + Name = @"Noril`sk" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.17, + Y = -43, + X = 147.5, + Country = @"Australia", + Name = @"Hobart" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.17, + Y = 50.33, + X = 110.75, + Country = @"Russia", + Name = @"Chatanga" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.17, + Y = 16.46, + X = 107.7, + Country = @"Vietnam", + Name = @"Hue" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.16, + Y = 6.6, + X = 2.63, + Country = @"Benin", + Name = @"Porto Novo" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.16, + Y = 34.46, + X = 62.21, + Country = @"Afghanistan", + Name = @"Herat" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.15, + Y = 16.92, + X = -96.94, + Country = @"Mexico", + Name = @"Oaxaca" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.15, + Y = -9.55, + X = 147.41, + Country = @"Papua N Guin", + Name = @"Port Moresby" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.15, + Y = 38.14, + X = 21.88, + Country = @"Greece", + Name = @"Patras" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.15, + Y = 39.48, + X = 76, + Country = @"China", + Name = @"Kashi" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.15, + Y = -12.72, + X = 13.46, + Country = @"Angola", + Name = @"Benguela" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.15, + Y = 59.57, + X = 150.78, + Country = @"Russia", + Name = @"Magadan" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.14, + Y = 64.31, + X = -21.34, + Country = @"Iceland", + Name = @"Reykjavik" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.14, + Y = 55.57, + X = 9.9, + Country = @"Denmark", + Name = @"Odense" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.14, + Y = 13.18, + X = 30.16, + Country = @"Sudan", + Name = @"El Obeid" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.14, + Y = -28.66, + X = 24.83, + Country = @"South Africa", + Name = @"Kimberley" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.14, + Y = -5.81, + X = 13.45, + Country = @"Zaire", + Name = @"Matadi" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.13, + Y = 0.05, + X = 18.46, + Country = @"Zaire", + Name = @"Mbandaka" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.13, + Y = 49.74, + X = 6.27, + Country = @"Luxembourg", + Name = @"Luxembourg" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.12, + Y = -22.57, + X = 17.1, + Country = @"Namibia", + Name = @"Windhoek" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.12, + Y = 67.8, + X = 64.33, + Country = @"Russia", + Name = @"Vorkuta" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.12, + Y = 45.34, + X = -65.65, + Country = @"Canada", + Name = @"Saint John" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.12, + Y = -0.82, + X = 9.15, + Country = @"Gabon", + Name = @"Port Gentil" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.12, + Y = 11.5, + X = 43.1, + Country = @"Djibouti", + Name = @"Djibouti" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.11, + Y = -20.26, + X = -69.91, + Country = @"Chile", + Name = @"Iquique" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.11, + Y = 11.91, + X = -15.65, + Country = @"GuineaBissau", + Name = @"Bissau" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.11, + Y = -3.39, + X = 129.31, + Country = @"Indonesia", + Name = @"Ambon" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.11, + Y = -45.86, + X = 170.5, + Country = @"New Zealand", + Name = @"Dunedin" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.11, + Y = -19.3, + X = 146.83, + Country = @"Australia", + Name = @"Townsville" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.11, + Y = -29.26, + X = 27.89, + Country = @"Lesotho", + Name = @"Maseru" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.1, + Y = 46.92, + X = -122.88, + Country = @"US", + Name = @"Olympia" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.1, + Y = 13.45, + X = -16.49, + Country = @"Gambia", + Name = @"Banjul" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.1, + Y = -45.83, + X = -67.5, + Country = @"Argentina", + Name = @"Comodoro Rivadavia" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.1, + Y = -53.15, + X = -70.8, + Country = @"Chile", + Name = @"Punte Arenas" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.1, + Y = -18.23, + X = 49.41, + Country = @"Madagascar", + Name = @"Toamasina" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.1, + Y = -24.66, + X = 25.79, + Country = @"Botswana", + Name = @"Gaborone" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.09, + Y = 15.95, + X = -16.3, + Country = @"Senegal", + Name = @"Saint Louis" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.09, + Y = 27, + X = -13.18, + Country = @"W Sahara", + Name = @"Laayoune" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.09, + Y = -19.04, + X = -65.26, + Country = @"Bolivia", + Name = @"Sucre" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.08, + Y = -31.31, + X = -57.71, + Country = @"Uruguay", + Name = @"Salto" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.08, + Y = 42.5, + X = 19.4, + Country = @"Montenegro", + Name = @"Podgorica" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.08, + Y = -41.48, + X = -73, + Country = @"Chile", + Name = @"Puerto Montt" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.08, + Y = 29.65, + X = 91.13, + Country = @"China", + Name = @"Lhasa" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.07, + Y = 61.15, + X = 47, + Country = @"Russia", + Name = @"Kotlas" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.07, + Y = -12.7, + X = 130.99, + Country = @"Australia", + Name = @"Darwin" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.07, + Y = 1.5, + X = 110.43, + Country = @"Malaysia", + Name = @"Kuching" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.06, + Y = -23.29, + X = 44.02, + Country = @"Madagascar", + Name = @"Toliara" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.06, + Y = -31, + X = -71.02, + Country = @"Chile", + Name = @"Coquimbo" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.06, + Y = 4.93, + X = 114.97, + Country = @"Brunei", + Name = @"Bandar Seri Begawan" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.06, + Y = -17.83, + X = 25.88, + Country = @"Zambia", + Name = @"Livingstone" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.06, + Y = -23.43, + X = 150.48, + Country = @"Australia", + Name = @"Rockhampton" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.05, + Y = 23.52, + X = 58.63, + Country = @"Oman", + Name = @"Masqat" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.05, + Y = -4.95, + X = 30, + Country = @"Tanzania", + Name = @"Kigoma" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.05, + Y = 16.96, + X = 7.98, + Country = @"Niger", + Name = @"Agadez" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.05, + Y = -10.26, + X = 40.18, + Country = @"Tanzania", + Name = @"Mtwara" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.05, + Y = -46.41, + X = 168.45, + Country = @"New Zealand", + Name = @"Invercargill" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.05, + Y = -6.18, + X = 35.75, + Country = @"Tanzania", + Name = @"Dodoma" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.04, + Y = 64.84, + X = -147.65, + Country = @"US", + Name = @"Fairbanks" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.04, + Y = 19.71, + X = -155.07, + Country = @"US", + Name = @"Hilo" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.04, + Y = 4.92, + X = -52.4, + Country = @"Fr Guiana", + Name = @"Cayenne" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.04, + Y = -26.3, + X = 31.19, + Country = @"Swaziland", + Name = @"Mbabne" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.04, + Y = -16.85, + X = 145.71, + Country = @"Australia", + Name = @"Cairns" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.03, + Y = 3.64, + X = 8.82, + Country = @"Eq Guinea", + Name = @"Malabo" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.03, + Y = 50.28, + X = -66.4, + Country = @"Canada", + Name = @"Sept-Iles" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.03, + Y = -41.3, + X = 173.27, + Country = @"New Zealand", + Name = @"Nelson" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.03, + Y = 16.76, + X = -3.01, + Country = @"Mali", + Name = @"Tombouctoo" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.02, + Y = 58.39, + X = -134.13, + Country = @"US", + Name = @"Juneau" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.02, + Y = -23.1, + X = 14.62, + Country = @"Namibia", + Name = @"Walvis Bay" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.02, + Y = 54.42, + X = -130.05, + Country = @"Canada", + Name = @"Prince Rupert" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.02, + Y = 20.9, + X = -16.83, + Country = @"Mauritania", + Name = @"Nouadnibou" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.02, + Y = 27.2, + X = 2.53, + Country = @"Algeria", + Name = @"In Salah" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.02, + Y = -32.04, + X = 115.93, + Country = @"Australia", + Name = @"Fremantle" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.02, + Y = 68.35, + X = 17.3, + Country = @"Norway", + Name = @"Narvik" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.01, + Y = 62.52, + X = -114.06, + Country = @"Canada", + Name = @"Yellowknife" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.01, + Y = 17.12, + X = -88.8, + Country = @"Belize", + Name = @"Belmopan" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.01, + Y = 70.39, + X = 23.91, + Country = @"Norway", + Name = @"Hammerfest" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.01, + Y = 64.27, + X = -51.58, + Country = @"Greenland", + Name = @"Godthab" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.01, + Y = 60.65, + X = -135.01, + Country = @"Canada", + Name = @"Whitehorse" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.01, + Y = 59.33, + X = 143.25, + Country = @"Russia", + Name = @"Okhotsk" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.01, + Y = 52.05, + X = 113.58, + Country = @"Russia", + Name = @"Chita" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.01, + Y = 55.88, + X = 37.75, + Country = @"Russia", + Name = @"Druzba" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0.01, + Y = 53.31, + X = -60.55, + Country = @"Canada", + Name = @"Goose Bay" + }); + this.Add(new WorldCitiesItem() + { + Capital = true, + Population = 0.01, + Y = 27.44, + X = 89.67, + Country = @"Bhutan", + Name = @"Thimbu" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0, + Y = 78.2, + X = 15.66, + Country = @"Norway", + Name = @"Xgyearbyen" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0, + Y = 30.14, + X = 9.82, + Country = @"Libya", + Name = @"Ghadamis" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0, + Y = 71.7, + X = 128.75, + Country = @"Russia", + Name = @"Tiksi" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0, + Y = 77.67, + X = -69, + Country = @"Greenland", + Name = @"Thule" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0, + Y = 22.83, + X = 5.55, + Country = @"Algeria", + Name = @"Tamanrasset" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0, + Y = 60.12, + X = -149.45, + Country = @"US", + Name = @"Seward" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0, + Y = 70.53, + X = -23, + Country = @"Greenland", + Name = @"Scoresbyund" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0, + Y = 66.57, + X = 66.58, + Country = @"Russia", + Name = @"Salekhard" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0, + Y = 64.59, + X = -165.27, + Country = @"US", + Name = @"Nome" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0, + Y = 68.27, + X = -133.67, + Country = @"Canada", + Name = @"Inuvik" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0, + Y = 67.35, + X = 86.55, + Country = @"Russia", + Name = @"Igarka" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0, + Y = 69.38, + X = -53.63, + Country = @"Greenland", + Name = @"Godhavn" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0, + Y = 58.71, + X = -94.18, + Country = @"Canada", + Name = @"Churchill" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0, + Y = 2.75, + X = -60.5, + Country = @"Brazil", + Name = @"Boa Vista" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0, + Y = -15.75, + X = 133.22, + Country = @"Australia", + Name = @"Birdum" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0, + Y = 65.67, + X = -37.31, + Country = @"Greenland", + Name = @"Angmagssalik" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0, + Y = 64.4, + X = 177.13, + Country = @"Russia", + Name = @"Anadyr" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0, + Y = 47.81, + X = 97, + Country = @"Mongolia", + Name = @"Uliastay" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0, + Y = -15.05, + X = 40.7, + Country = @"Mozambique", + Name = @"Mocambique" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0, + Y = -51.71, + X = -69.41, + Country = @"Argentina", + Name = @"Rio Gallegos" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0, + Y = 27.7, + X = -8.16, + Country = @"Algeria", + Name = @"Tindouf" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0, + Y = 25.91, + X = 13.91, + Country = @"Libya", + Name = @"Murzuq" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0, + Y = 21.76, + X = 31.28, + Country = @"Sudan", + Name = @"Wadi Halfa" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0, + Y = -23.63, + X = 133.93, + Country = @"Australia", + Name = @"Alice Springs" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0, + Y = 46.96, + X = 142.75, + Country = @"Russia", + Name = @"Yuzhno-Sakhalinsk" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0, + Y = 50.08, + X = 45.53, + Country = @"Russia", + Name = @"Nikolayevsk" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0, + Y = 67.58, + X = 133.41, + Country = @"Russia", + Name = @"Verkhoyansk" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0, + Y = 54.86, + X = -67.01, + Country = @"Canada", + Name = @"Schefferville" + }); + this.Add(new WorldCitiesItem() + { + Capital = false, + Population = 0, + Y = 51.33, + X = -80.73, + Country = @"Canada", + Name = @"Moosonee" + }); + } +} diff --git a/samples/charts/dashboard-tile/map-dashboard/_Imports.razor b/samples/charts/dashboard-tile/map-dashboard/_Imports.razor new file mode 100644 index 0000000000..d27d337cb1 --- /dev/null +++ b/samples/charts/dashboard-tile/map-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/map-dashboard/wwwroot/index.css b/samples/charts/dashboard-tile/map-dashboard/wwwroot/index.css new file mode 100644 index 0000000000..50ca13caa6 --- /dev/null +++ b/samples/charts/dashboard-tile/map-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/map-dashboard/wwwroot/index.html b/samples/charts/dashboard-tile/map-dashboard/wwwroot/index.html new file mode 100644 index 0000000000..8833030d8e --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/wwwroot/index.html @@ -0,0 +1,30 @@ + + + + + + + + + + Samples | IgniteUI for Blazor | Infragistics + + + + + + + + + +
+ An unhandled error has occurred. + Reload + 🗙 +
+ + + + + + diff --git a/samples/charts/dashboard-tile/pie-dashboard/App.razor b/samples/charts/dashboard-tile/pie-dashboard/App.razor new file mode 100644 index 0000000000..2a2ddda473 --- /dev/null +++ b/samples/charts/dashboard-tile/pie-dashboard/App.razor @@ -0,0 +1,37 @@ +@using IgniteUI.Blazor.Controls + +
+
+ + + +
+
+ +@code { + + protected override async Task OnAfterRenderAsync(bool firstRender) + { + var dashboard = this.dashboard; + + } + + private IgbDashboardTile dashboard; + + private EnergyGlobalDemand _energyGlobalDemand = null; + public EnergyGlobalDemand EnergyGlobalDemand + { + get + { + if (_energyGlobalDemand == null) + { + _energyGlobalDemand = new EnergyGlobalDemand(); + } + return _energyGlobalDemand; + } + } + +} \ No newline at end of file diff --git a/samples/charts/dashboard-tile/pie-dashboard/BlazorClientApp.csproj b/samples/charts/dashboard-tile/pie-dashboard/BlazorClientApp.csproj new file mode 100644 index 0000000000..5ad0404ecd --- /dev/null +++ b/samples/charts/dashboard-tile/pie-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/pie-dashboard/BlazorClientApp.sln b/samples/charts/dashboard-tile/pie-dashboard/BlazorClientApp.sln new file mode 100644 index 0000000000..1e2eda208a --- /dev/null +++ b/samples/charts/dashboard-tile/pie-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/pie-dashboard/EnergyGlobalDemand.cs b/samples/charts/dashboard-tile/pie-dashboard/EnergyGlobalDemand.cs new file mode 100644 index 0000000000..67fd74756f --- /dev/null +++ b/samples/charts/dashboard-tile/pie-dashboard/EnergyGlobalDemand.cs @@ -0,0 +1,46 @@ +using System; +using System.Collections.Generic; +public class EnergyGlobalDemandItem +{ + public double Value { get; set; } + public string Category { get; set; } + public string Summary { get; set; } +} + +public class EnergyGlobalDemand + : List +{ + public EnergyGlobalDemand() + { + this.Add(new EnergyGlobalDemandItem() + { + Value = 37, + Category = @"Cooling", + Summary = @"Cooling 37%" + }); + this.Add(new EnergyGlobalDemandItem() + { + Value = 25, + Category = @"Residential", + Summary = @"Residential 25%" + }); + this.Add(new EnergyGlobalDemandItem() + { + Value = 12, + Category = @"Heating", + Summary = @"Heating 12%" + }); + this.Add(new EnergyGlobalDemandItem() + { + Value = 11, + Category = @"Lighting", + Summary = @"Lighting 11%" + }); + this.Add(new EnergyGlobalDemandItem() + { + Value = 15, + Category = @"Other", + Summary = @"Other 15%" + }); + } +} diff --git a/samples/charts/dashboard-tile/pie-dashboard/Program.cs b/samples/charts/dashboard-tile/pie-dashboard/Program.cs new file mode 100644 index 0000000000..4723c41bb0 --- /dev/null +++ b/samples/charts/dashboard-tile/pie-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/pie-dashboard/Properties/launchSettings.json b/samples/charts/dashboard-tile/pie-dashboard/Properties/launchSettings.json new file mode 100644 index 0000000000..18bd6fb5bc --- /dev/null +++ b/samples/charts/dashboard-tile/pie-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/pie-dashboard/ReadMe.md b/samples/charts/dashboard-tile/pie-dashboard/ReadMe.md new file mode 100644 index 0000000000..c4c3742162 --- /dev/null +++ b/samples/charts/dashboard-tile/pie-dashboard/ReadMe.md @@ -0,0 +1,70 @@ + + + +This folder contains implementation of Blazor application with example of Pie Dashboard feature using [Dashboard Tile](https://www.infragistics.com/products/ignite-ui-blazor/blazor/components/general-getting-started.html) component. + + + + + + + View Docs + + + View Code + + + Run Sample + + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-blazor-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-blazor-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Setup + +- instal **.NET SDK** from this [website](https://dotnet.microsoft.com/learn/aspnet/blazor-tutorial/install) + +## Running App in Visual Studio 2019 + +NOTE: VS 2019 has better code highlighting and error detection than VS Code does. + +- open **Visual Studio 2019** as an administrator + +- open the **BlazorClientApp.sln** solution + +- right click solution and select **Restore NuGet Packages** menu item + +- click **Debug** menu and select **Start Debugging** or press **F5** key + + +## Running App in VS Code + +- open **VS Code** as an administrator + +- open this folder in **VS Code** + +- open a terminal window + +- to restore assemblies, run this command: +```dotnet restore``` + +- to run samples, run this command: +```dotnet watch run``` + +- wait for for message: +**Now listening on: http://localhost:4200** + +- open **http://localhost:4200** in your browser + + +## Resources + +- [Razor Component Models](https://www.codemag.com/article/1911052) +- [Razor Syntax](https://docs.microsoft.com/en-us/aspnet/core/blazor/components/?view=aspnetcore-3.1#razor-syntax) +- [Getting reference to components](https://docs.microsoft.com/en-us/aspnet/core/blazor/components/?view=aspnetcore-3.1#capture-references-to-components) diff --git a/samples/charts/dashboard-tile/pie-dashboard/_Imports.razor b/samples/charts/dashboard-tile/pie-dashboard/_Imports.razor new file mode 100644 index 0000000000..d27d337cb1 --- /dev/null +++ b/samples/charts/dashboard-tile/pie-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/pie-dashboard/wwwroot/index.css b/samples/charts/dashboard-tile/pie-dashboard/wwwroot/index.css new file mode 100644 index 0000000000..50ca13caa6 --- /dev/null +++ b/samples/charts/dashboard-tile/pie-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/pie-dashboard/wwwroot/index.html b/samples/charts/dashboard-tile/pie-dashboard/wwwroot/index.html new file mode 100644 index 0000000000..8833030d8e --- /dev/null +++ b/samples/charts/dashboard-tile/pie-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/annotations-custom/BlazorClientApp.csproj b/samples/charts/data-chart/annotations-custom/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/annotations-custom/BlazorClientApp.csproj +++ b/samples/charts/data-chart/annotations-custom/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/BlazorClientApp.csproj +++ b/samples/charts/data-chart/axis-annotations-corner-radius/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/axis-annotations/BlazorClientApp.csproj b/samples/charts/data-chart/axis-annotations/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/axis-annotations/BlazorClientApp.csproj +++ b/samples/charts/data-chart/axis-annotations/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/axis-crossing/BlazorClientApp.csproj b/samples/charts/data-chart/axis-crossing/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/axis-crossing/BlazorClientApp.csproj +++ b/samples/charts/data-chart/axis-crossing/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/axis-label-rotation/BlazorClientApp.csproj b/samples/charts/data-chart/axis-label-rotation/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/axis-label-rotation/BlazorClientApp.csproj +++ b/samples/charts/data-chart/axis-label-rotation/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/axis-locations/BlazorClientApp.csproj b/samples/charts/data-chart/axis-locations/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/charts/data-chart/axis-locations/BlazorClientApp.csproj +++ b/samples/charts/data-chart/axis-locations/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/axis-min-max-gap/BlazorClientApp.csproj +++ b/samples/charts/data-chart/axis-min-max-gap/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/axis-scales/BlazorClientApp.csproj b/samples/charts/data-chart/axis-scales/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/axis-scales/BlazorClientApp.csproj +++ b/samples/charts/data-chart/axis-scales/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/axis-settings/BlazorClientApp.csproj b/samples/charts/data-chart/axis-settings/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/axis-settings/BlazorClientApp.csproj +++ b/samples/charts/data-chart/axis-settings/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/axis-sharing/BlazorClientApp.csproj b/samples/charts/data-chart/axis-sharing/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/axis-sharing/BlazorClientApp.csproj +++ b/samples/charts/data-chart/axis-sharing/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/axis-stacking/BlazorClientApp.csproj b/samples/charts/data-chart/axis-stacking/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/axis-stacking/BlazorClientApp.csproj +++ b/samples/charts/data-chart/axis-stacking/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/axis-types/BlazorClientApp.csproj b/samples/charts/data-chart/axis-types/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/axis-types/BlazorClientApp.csproj +++ b/samples/charts/data-chart/axis-types/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/BlazorClientApp.csproj +++ b/samples/charts/data-chart/bar-chart-multiple-sources/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/bar-chart-overlapping/BlazorClientApp.csproj b/samples/charts/data-chart/bar-chart-overlapping/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/BlazorClientApp.csproj +++ b/samples/charts/data-chart/bar-chart-overlapping/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/bar-chart-single-source/BlazorClientApp.csproj +++ b/samples/charts/data-chart/bar-chart-single-source/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/bar-chart-styling/BlazorClientApp.csproj b/samples/charts/data-chart/bar-chart-styling/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/bar-chart-styling/BlazorClientApp.csproj +++ b/samples/charts/data-chart/bar-chart-styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/callout-layer-styling/BlazorClientApp.csproj b/samples/charts/data-chart/callout-layer-styling/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/callout-layer-styling/BlazorClientApp.csproj +++ b/samples/charts/data-chart/callout-layer-styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/category-series/BlazorClientApp.csproj b/samples/charts/data-chart/category-series/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/category-series/BlazorClientApp.csproj +++ b/samples/charts/data-chart/category-series/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/BlazorClientApp.csproj +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 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 @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/chart-highlight-filter/BlazorClientApp.csproj b/samples/charts/data-chart/chart-highlight-filter/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/chart-highlight-filter/BlazorClientApp.csproj +++ b/samples/charts/data-chart/chart-highlight-filter/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/chart-navigation/BlazorClientApp.csproj b/samples/charts/data-chart/chart-navigation/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/chart-navigation/BlazorClientApp.csproj +++ b/samples/charts/data-chart/chart-navigation/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/chart-overview/BlazorClientApp.csproj b/samples/charts/data-chart/chart-overview/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/chart-overview/BlazorClientApp.csproj +++ b/samples/charts/data-chart/chart-overview/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/chart-performance/BlazorClientApp.csproj b/samples/charts/data-chart/chart-performance/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/chart-performance/BlazorClientApp.csproj +++ b/samples/charts/data-chart/chart-performance/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/chart-synchronization/BlazorClientApp.csproj b/samples/charts/data-chart/chart-synchronization/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/chart-synchronization/BlazorClientApp.csproj +++ b/samples/charts/data-chart/chart-synchronization/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/chart-titles/BlazorClientApp.csproj b/samples/charts/data-chart/chart-titles/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/chart-titles/BlazorClientApp.csproj +++ b/samples/charts/data-chart/chart-titles/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/column-chart-styling/BlazorClientApp.csproj b/samples/charts/data-chart/column-chart-styling/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/column-chart-styling/BlazorClientApp.csproj +++ b/samples/charts/data-chart/column-chart-styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/composite-chart/BlazorClientApp.csproj b/samples/charts/data-chart/composite-chart/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/composite-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/composite-chart/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/crosshair-layer-styling/BlazorClientApp.csproj b/samples/charts/data-chart/crosshair-layer-styling/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/BlazorClientApp.csproj +++ b/samples/charts/data-chart/crosshair-layer-styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/custom-drawing-annotations/BlazorClientApp.csproj b/samples/charts/data-chart/custom-drawing-annotations/BlazorClientApp.csproj index 7a042d5942..df9e51b6be 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/BlazorClientApp.csproj +++ b/samples/charts/data-chart/custom-drawing-annotations/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -17,10 +17,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/custom-editing-data/BlazorClientApp.csproj b/samples/charts/data-chart/custom-editing-data/BlazorClientApp.csproj index e35d9b6d2f..3d8973d9a2 100644 --- a/samples/charts/data-chart/custom-editing-data/BlazorClientApp.csproj +++ b/samples/charts/data-chart/custom-editing-data/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -16,10 +16,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/dash-array-axes/BlazorClientApp.csproj b/samples/charts/data-chart/dash-array-axes/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/dash-array-axes/BlazorClientApp.csproj +++ b/samples/charts/data-chart/dash-array-axes/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/dash-array-series/BlazorClientApp.csproj b/samples/charts/data-chart/dash-array-series/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/dash-array-series/BlazorClientApp.csproj +++ b/samples/charts/data-chart/dash-array-series/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/dash-array-tickmarks/BlazorClientApp.csproj b/samples/charts/data-chart/dash-array-tickmarks/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/BlazorClientApp.csproj +++ b/samples/charts/data-chart/dash-array-tickmarks/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/dash-array-trendline/BlazorClientApp.csproj b/samples/charts/data-chart/dash-array-trendline/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/dash-array-trendline/BlazorClientApp.csproj +++ b/samples/charts/data-chart/dash-array-trendline/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 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 @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/data-legend-grouping/BlazorClientApp.csproj b/samples/charts/data-chart/data-legend-grouping/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/data-legend-grouping/BlazorClientApp.csproj +++ b/samples/charts/data-chart/data-legend-grouping/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/data-legend-styling/BlazorClientApp.csproj b/samples/charts/data-chart/data-legend-styling/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/data-legend-styling/BlazorClientApp.csproj +++ b/samples/charts/data-chart/data-legend-styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/data-legend/BlazorClientApp.csproj b/samples/charts/data-chart/data-legend/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/data-legend/BlazorClientApp.csproj +++ b/samples/charts/data-chart/data-legend/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 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 @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/data-tooltip-grouping/BlazorClientApp.csproj b/samples/charts/data-chart/data-tooltip-grouping/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/data-tooltip-grouping/BlazorClientApp.csproj +++ b/samples/charts/data-chart/data-tooltip-grouping/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/data-tooltip-styling/BlazorClientApp.csproj b/samples/charts/data-chart/data-tooltip-styling/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/data-tooltip-styling/BlazorClientApp.csproj +++ b/samples/charts/data-chart/data-tooltip-styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/data-tooltip/BlazorClientApp.csproj b/samples/charts/data-chart/data-tooltip/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/data-tooltip/BlazorClientApp.csproj +++ b/samples/charts/data-chart/data-tooltip/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/final-value-layer-styling/BlazorClientApp.csproj +++ b/samples/charts/data-chart/final-value-layer-styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/financial-price-series/BlazorClientApp.csproj b/samples/charts/data-chart/financial-price-series/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/financial-price-series/BlazorClientApp.csproj +++ b/samples/charts/data-chart/financial-price-series/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/financial-series/BlazorClientApp.csproj b/samples/charts/data-chart/financial-series/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/financial-series/BlazorClientApp.csproj +++ b/samples/charts/data-chart/financial-series/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/format-specifiers/BlazorClientApp.csproj b/samples/charts/data-chart/format-specifiers/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/format-specifiers/BlazorClientApp.csproj +++ b/samples/charts/data-chart/format-specifiers/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/gantt-chart/BlazorClientApp.csproj b/samples/charts/data-chart/gantt-chart/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/gantt-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/gantt-chart/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/itemized-bar-chart/BlazorClientApp.csproj b/samples/charts/data-chart/itemized-bar-chart/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/itemized-bar-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/itemized-bar-chart/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/itemized-column-chart/BlazorClientApp.csproj b/samples/charts/data-chart/itemized-column-chart/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/itemized-column-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/itemized-column-chart/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/itemized-stacked-bar-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/itemized-stacked-bar-chart/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/itemized-stacked-column-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/itemized-stacked-column-chart/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/legend-interactions/BlazorClientApp.csproj b/samples/charts/data-chart/legend-interactions/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/legend-interactions/BlazorClientApp.csproj +++ b/samples/charts/data-chart/legend-interactions/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/legends/BlazorClientApp.csproj b/samples/charts/data-chart/legends/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/legends/BlazorClientApp.csproj +++ b/samples/charts/data-chart/legends/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/network-polar-chart/BlazorClientApp.csproj b/samples/charts/data-chart/network-polar-chart/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/network-polar-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/network-polar-chart/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/network-scatter-chart/BlazorClientApp.csproj b/samples/charts/data-chart/network-scatter-chart/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/network-scatter-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/network-scatter-chart/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/BlazorClientApp.csproj +++ b/samples/charts/data-chart/polar-area-chart-styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/polar-area-chart/BlazorClientApp.csproj b/samples/charts/data-chart/polar-area-chart/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/polar-area-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/polar-area-chart/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/polar-chart-types/BlazorClientApp.csproj b/samples/charts/data-chart/polar-chart-types/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/polar-chart-types/BlazorClientApp.csproj +++ b/samples/charts/data-chart/polar-chart-types/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/polar-line-chart/BlazorClientApp.csproj b/samples/charts/data-chart/polar-line-chart/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/polar-line-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/polar-line-chart/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/polar-scatter-chart/BlazorClientApp.csproj b/samples/charts/data-chart/polar-scatter-chart/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/polar-scatter-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/polar-scatter-chart/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/polar-spline-area-chart/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/polar-spline-chart/BlazorClientApp.csproj b/samples/charts/data-chart/polar-spline-chart/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/polar-spline-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/polar-spline-chart/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/pyramid-chart/BlazorClientApp.csproj b/samples/charts/data-chart/pyramid-chart/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/pyramid-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/pyramid-chart/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/BlazorClientApp.csproj +++ b/samples/charts/data-chart/radial-area-chart-styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/radial-area-chart/BlazorClientApp.csproj b/samples/charts/data-chart/radial-area-chart/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/radial-area-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/radial-area-chart/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/radial-chart-types/BlazorClientApp.csproj b/samples/charts/data-chart/radial-chart-types/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/radial-chart-types/BlazorClientApp.csproj +++ b/samples/charts/data-chart/radial-chart-types/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/radial-column-chart-selection/BlazorClientApp.csproj +++ b/samples/charts/data-chart/radial-column-chart-selection/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/radial-column-chart/BlazorClientApp.csproj b/samples/charts/data-chart/radial-column-chart/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/radial-column-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/radial-column-chart/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/radial-label-mode/BlazorClientApp.csproj b/samples/charts/data-chart/radial-label-mode/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/radial-label-mode/BlazorClientApp.csproj +++ b/samples/charts/data-chart/radial-label-mode/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/radial-line-chart/BlazorClientApp.csproj b/samples/charts/data-chart/radial-line-chart/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/radial-line-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/radial-line-chart/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/radial-pie-chart/BlazorClientApp.csproj b/samples/charts/data-chart/radial-pie-chart/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/radial-pie-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/radial-pie-chart/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 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 @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 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 @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/range-area-chart/BlazorClientApp.csproj b/samples/charts/data-chart/range-area-chart/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/range-area-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/range-area-chart/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/range-column-chart/BlazorClientApp.csproj b/samples/charts/data-chart/range-column-chart/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/range-column-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/range-column-chart/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/range-series/BlazorClientApp.csproj b/samples/charts/data-chart/range-series/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/range-series/BlazorClientApp.csproj +++ b/samples/charts/data-chart/range-series/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/App.razor b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/App.razor index 08fed840df..619051cf99 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/App.razor +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/App.razor @@ -7,24 +7,27 @@ @ref="chart" IsHorizontalZoomEnabled="true" IsVerticalZoomEnabled="true" - ChartTitle="Public Debt vs. Population" - Subtitle="GDP per Capita"> + ChartTitle="Population vs. Public Debt vs. GDP" + TitleTopMargin="10" + TitleBottomMargin="0"> + AbbreviateLargeNumbers="true"> + AbbreviateLargeNumbers="true" + MaximumValue="1000"> + + + @@ -57,6 +86,7 @@ var xAxis = this.xAxis; var yAxis = this.yAxis; var bubbleSeries1 = this.bubbleSeries1; + var dataToolTipLayer = this.dataToolTipLayer; } @@ -74,7 +104,7 @@ var sizeScale1 = new IgbSizeScale(); sizeScale1.IsLogarithmic = false; sizeScale1.MinimumValue = 10; - sizeScale1.MaximumValue = 120; + sizeScale1.MaximumValue = 80; this._sizeScale1 = sizeScale1; } return this._sizeScale1; @@ -89,14 +119,15 @@ { var valueBrushScale1 = new IgbValueBrushScale(); valueBrushScale1.IsLogarithmic = false; - valueBrushScale1.MinimumValue = 0; - valueBrushScale1.MaximumValue = 100000; - valueBrushScale1.Brushes = "#1aa1e2 #189ad9 #1692ce #1385bc #0f79ab #0c6b99 #095e88 #055277 #024669 #003f5e"; + valueBrushScale1.MinimumValue = 500; + valueBrushScale1.MaximumValue = 260000; + valueBrushScale1.Brushes = "#96bdfa #6fa4f7 #5290f2 #135ed4"; this._valueBrushScale1 = valueBrushScale1; } return this._valueBrushScale1; } } + private IgbDataToolTipLayer dataToolTipLayer; private WorldStats _worldStats = null; public WorldStats WorldStats 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 c8a13963f1..5ad0404ecd 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 @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 53016c0ed8..b3edbfa500 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 @@ -4158,7 +4158,7 @@ public WorldStats() Status = @"Dependency", Longitude = -53.13, Latitude = 3.893, - GdpPerPerson = 4386128, + GdpPerPerson = 4386, Rank = 180, Unemployment = 3, OilProduction = 0, @@ -5320,29 +5320,6 @@ public WorldStats() Internet = 4009 }); this.Add(new WorldStatsItem() - { - Code = @"ATA", - Name = @"Antarctica", - Continent = @"Antarctica", - Population = 4050, - GdpTotal = 810, - Economy = @"Developing", - Region = @"Antarctica", - Status = @"Indeterminate", - Longitude = 54.592, - Latitude = -70.81, - GdpPerPerson = 200000, - Rank = 231, - Unemployment = 9, - OilProduction = 2, - BirthRate = 18, - MedianAge = 42, - Electricity = 63975, - Televisions = 2439, - PublicDebt = 45, - Internet = 2190 - }); - this.Add(new WorldStatsItem() { Code = @"IOT", Name = @"British Indian Territory", diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/App.razor b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/App.razor index 067e16a71f..ab60c92cd0 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/App.razor +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/App.razor @@ -28,6 +28,8 @@ Name="yAxis" @ref="yAxis" Title="GDP per Capita" + MaximumValue="1000000" + TitleLeftMargin="10" IsLogarithmic="true" AbbreviateLargeNumbers="true"> @@ -40,7 +42,10 @@ YAxisName="yAxis" XMemberPath="Population" YMemberPath="GDP" - RadiusMemberPath="Population" + RadiusMemberPath="WorkedHours" + XMemberAsLegendLabel="Population" + YMemberAsLegendLabel="GDP" + RadiusMemberAsLegendLabel="Work Hours" DataSource="CountryStatsAfrica" MarkerType="MarkerType.Circle" ShowDefaultTooltip="true" @@ -55,13 +60,33 @@ YAxisName="yAxis" XMemberPath="Population" YMemberPath="GDP" - RadiusMemberPath="Population" + RadiusMemberPath="WorkedHours" + XMemberAsLegendLabel="Population" + YMemberAsLegendLabel="GDP" + RadiusMemberAsLegendLabel="Work Hours" DataSource="CountryStatsEurope" MarkerType="MarkerType.Circle" ShowDefaultTooltip="true" RadiusScale="SizeScale2"> + + + @@ -79,6 +104,7 @@ var yAxis = this.yAxis; var bubbleSeries1 = this.bubbleSeries1; var bubbleSeries2 = this.bubbleSeries2; + var dataToolTipLayer = this.dataToolTipLayer; this.BindElements = () => { chart.Legend = this.legend; @@ -102,7 +128,7 @@ var sizeScale1 = new IgbSizeScale(); sizeScale1.IsLogarithmic = false; sizeScale1.MinimumValue = 10; - sizeScale1.MaximumValue = 50; + sizeScale1.MaximumValue = 80; this._sizeScale1 = sizeScale1; } return this._sizeScale1; @@ -119,12 +145,13 @@ var sizeScale2 = new IgbSizeScale(); sizeScale2.IsLogarithmic = false; sizeScale2.MinimumValue = 10; - sizeScale2.MaximumValue = 50; + sizeScale2.MaximumValue = 80; this._sizeScale2 = sizeScale2; } return this._sizeScale2; } } + private IgbDataToolTipLayer dataToolTipLayer; private CountryStatsAfrica _countryStatsAfrica = null; public CountryStatsAfrica CountryStatsAfrica 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 c8a13963f1..5ad0404ecd 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 @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/App.razor b/samples/charts/data-chart/scatter-bubble-chart-single-source/App.razor index 810a94e20b..9d89eccabf 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/App.razor +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/App.razor @@ -1,17 +1,19 @@ @using IgniteUI.Blazor.Controls
-
- Total Population of Selected Countries -
+ @ref="chart" + ChartTitle="Population vs. Public Debt vs. GDP" + TitleTopMargin="10" + TitleBottomMargin="0"> @@ -19,10 +21,11 @@ + MaximumValue="1000"> + @ref="dataToolTipLayer" + ValueRowMarginTop="1" + LabelTextMarginTop="1" + TitleTextMarginTop="1" + UnitsTextMarginTop="1" + ValueRowMarginBottom="1" + LabelTextMarginBottom="1" + TitleTextMarginBottom="1" + UnitsTextMarginBottom="1" + UnitsTextMarginRight="5" + ValueTextMarginLeft="10" + LabelTextMarginLeft="1" + LayoutMode="DataLegendLayoutMode.Vertical" + BadgeShape="LegendItemBadgeShape.Hidden" + HeaderRowVisible="false"> @@ -76,7 +97,7 @@ var sizeScale1 = new IgbSizeScale(); sizeScale1.IsLogarithmic = false; sizeScale1.MinimumValue = 10; - sizeScale1.MaximumValue = 50; + sizeScale1.MaximumValue = 80; this._sizeScale1 = sizeScale1; } return this._sizeScale1; 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 c8a13963f1..5ad0404ecd 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 @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 53016c0ed8..b3edbfa500 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 @@ -4158,7 +4158,7 @@ public WorldStats() Status = @"Dependency", Longitude = -53.13, Latitude = 3.893, - GdpPerPerson = 4386128, + GdpPerPerson = 4386, Rank = 180, Unemployment = 3, OilProduction = 0, @@ -5320,29 +5320,6 @@ public WorldStats() Internet = 4009 }); this.Add(new WorldStatsItem() - { - Code = @"ATA", - Name = @"Antarctica", - Continent = @"Antarctica", - Population = 4050, - GdpTotal = 810, - Economy = @"Developing", - Region = @"Antarctica", - Status = @"Indeterminate", - Longitude = 54.592, - Latitude = -70.81, - GdpPerPerson = 200000, - Rank = 231, - Unemployment = 9, - OilProduction = 2, - BirthRate = 18, - MedianAge = 42, - Electricity = 63975, - Televisions = 2439, - PublicDebt = 45, - Internet = 2190 - }); - this.Add(new WorldStatsItem() { Code = @"IOT", Name = @"British Indian Territory", diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/App.razor b/samples/charts/data-chart/scatter-bubble-chart-styling/App.razor index c97bf6aa28..bd0956ecc1 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/App.razor +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/App.razor @@ -1,25 +1,19 @@ @using IgniteUI.Blazor.Controls
-
- Total Population of Selected Countries -
-
- - - -
+ @ref="chart" + ChartTitle="Population vs. Public Debt vs. GDP" + TitleTopMargin="10" + TitleBottomMargin="0"> @@ -27,52 +21,54 @@ + AbbreviateLargeNumbers="true" + MaximumValue="1000"> - - - + @ref="dataToolTipLayer" + ValueRowMarginTop="1" + LabelTextMarginTop="1" + TitleTextMarginTop="1" + UnitsTextMarginTop="1" + ValueRowMarginBottom="1" + LabelTextMarginBottom="1" + TitleTextMarginBottom="1" + UnitsTextMarginBottom="1" + UnitsTextMarginRight="5" + ValueTextMarginLeft="10" + LabelTextMarginLeft="1" + LayoutMode="DataLegendLayoutMode.Vertical" + BadgeShape="LegendItemBadgeShape.Hidden" + IncludedColumns="@(new string[] { "X", "Y", "Radius" })" + HeaderRowVisible="false"> @@ -82,26 +78,16 @@ @code { - private Action BindElements { get; set; } - protected override async Task OnAfterRenderAsync(bool firstRender) { - var legend = this.legend; var chart = this.chart; var xAxis = this.xAxis; var yAxis = this.yAxis; var bubbleSeries1 = this.bubbleSeries1; - var bubbleSeries2 = this.bubbleSeries2; var dataToolTipLayer = this.dataToolTipLayer; - this.BindElements = () => { - chart.Legend = this.legend; - }; - this.BindElements(); - } - private IgbLegend legend; private IgbDataChart chart; private IgbNumericXAxis xAxis; private IgbNumericYAxis yAxis; @@ -116,54 +102,24 @@ var sizeScale1 = new IgbSizeScale(); sizeScale1.IsLogarithmic = false; sizeScale1.MinimumValue = 10; - sizeScale1.MaximumValue = 50; + sizeScale1.MaximumValue = 80; this._sizeScale1 = sizeScale1; } return this._sizeScale1; } } - private IgbBubbleSeries bubbleSeries2; - private IgbSizeScale _sizeScale2 = null; - public IgbSizeScale SizeScale2 - { - get - { - if (this._sizeScale2 == null) - { - var sizeScale2 = new IgbSizeScale(); - sizeScale2.IsLogarithmic = false; - sizeScale2.MinimumValue = 10; - sizeScale2.MaximumValue = 50; - this._sizeScale2 = sizeScale2; - } - return this._sizeScale2; - } - } private IgbDataToolTipLayer dataToolTipLayer; - private CountryStatsAfrica _countryStatsAfrica = null; - public CountryStatsAfrica CountryStatsAfrica - { - get - { - if (_countryStatsAfrica == null) - { - _countryStatsAfrica = new CountryStatsAfrica(); - } - return _countryStatsAfrica; - } - } - - private CountryStatsEurope _countryStatsEurope = null; - public CountryStatsEurope CountryStatsEurope + private WorldStats _worldStats = null; + public WorldStats WorldStats { get { - if (_countryStatsEurope == null) + if (_worldStats == null) { - _countryStatsEurope = new CountryStatsEurope(); + _worldStats = new WorldStats(); } - return _countryStatsEurope; + return _worldStats; } } 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/BlazorClientApp.csproj +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/CountryStatsAfrica.cs b/samples/charts/data-chart/scatter-bubble-chart-styling/CountryStatsAfrica.cs deleted file mode 100644 index 44fb5cac81..0000000000 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/CountryStatsAfrica.cs +++ /dev/null @@ -1,426 +0,0 @@ -using System; -using System.Collections.Generic; -public class CountryStatsAfricaItem -{ - public string Code { get; set; } - public double Population { get; set; } - public double WorkedHours { get; set; } - public double GDP { get; set; } - public string Name { get; set; } -} - -public class CountryStatsAfrica - : List -{ - public CountryStatsAfrica() - { - this.Add(new CountryStatsAfricaItem() - { - Code = @"DZA", - Population = 39728000, - WorkedHours = 47.5, - GDP = 13725, - Name = @"Algeria" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"AGO", - Population = 27884000, - WorkedHours = 39.8, - GDP = 6228, - Name = @"Angola" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"BEN", - Population = 10576000, - WorkedHours = 43.7, - GDP = 1987, - Name = @"Benin" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"BWA", - Population = 2121000, - WorkedHours = 41.2, - GDP = 15357, - Name = @"Botswana" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"BFA", - Population = 18111000, - WorkedHours = 39.3, - GDP = 1596, - Name = @"Burkina Faso" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"BDI", - Population = 10160000, - WorkedHours = 36.4, - GDP = 748, - Name = @"Burundi" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"CMR", - Population = 23298000, - WorkedHours = 42, - GDP = 3289, - Name = @"Cameroon" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"CPV", - Population = 525000, - WorkedHours = 45, - GDP = 5915, - Name = @"Cape Verde" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"CAF", - Population = 4493000, - WorkedHours = 38, - GDP = 622, - Name = @"Central African Republic" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"TCD", - Population = 14111000, - WorkedHours = 40.4, - GDP = 2067, - Name = @"Chad" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"COM", - Population = 777000, - WorkedHours = 40.1, - GDP = 1413, - Name = @"Comoros" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"COG", - Population = 4856000, - WorkedHours = 38.1, - GDP = 5543, - Name = @"Congo" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"CIV", - Population = 23226000, - WorkedHours = 39.7, - GDP = 3242, - Name = @"Cote Ivoire" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"COD", - Population = 76245000, - WorkedHours = 44, - GDP = 812, - Name = @"Democratic Republic of Congo" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"EGY", - Population = 92443000, - WorkedHours = 39.7, - GDP = 10096, - Name = @"Egypt" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"GNQ", - Population = 1169000, - WorkedHours = 38.8, - GDP = 27554, - Name = @"Equatorial Guinea" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"SWZ", - Population = 1104000, - WorkedHours = 45.7, - GDP = 7759, - Name = @"Eswatini" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"ETH", - Population = 101000000, - WorkedHours = 40.1, - GDP = 1533, - Name = @"Ethiopia" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"GAB", - Population = 1948000, - WorkedHours = 40.5, - GDP = 16837, - Name = @"Gabon" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"GMB", - Population = 2086000, - WorkedHours = 40.3, - GDP = 1568, - Name = @"Gambia" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"GHA", - Population = 27849000, - WorkedHours = 47.6, - GDP = 3927, - Name = @"Ghana" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"GIN", - Population = 11432000, - WorkedHours = 43.4, - GDP = 1758, - Name = @"Guinea" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"GNB", - Population = 1737000, - WorkedHours = 35.1, - GDP = 1446, - Name = @"Guinea-Bissau" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"KEN", - Population = 47878000, - WorkedHours = 43.9, - GDP = 2836, - Name = @"Kenya" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"LSO", - Population = 2059000, - WorkedHours = 47.6, - GDP = 2708, - Name = @"Lesotho" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"LBR", - Population = 4472000, - WorkedHours = 40.3, - GDP = 785, - Name = @"Liberia" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"LBY", - Population = 6418000, - WorkedHours = 42.5, - GDP = 14847, - Name = @"Libya" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"MDG", - Population = 24234000, - WorkedHours = 40.8, - GDP = 1377, - Name = @"Madagascar" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"MWI", - Population = 16745000, - WorkedHours = 44.5, - GDP = 1089, - Name = @"Malawi" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"MLI", - Population = 17439000, - WorkedHours = 40.6, - GDP = 1919, - Name = @"Mali" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"MRT", - Population = 4046000, - WorkedHours = 45.9, - GDP = 3602, - Name = @"Mauritania" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"MUS", - Population = 1259000, - WorkedHours = 44.4, - GDP = 18864, - Name = @"Mauritius" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"MAR", - Population = 34664000, - WorkedHours = 39.6, - GDP = 7297, - Name = @"Morocco" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"MOZ", - Population = 27042000, - WorkedHours = 46.7, - GDP = 1118, - Name = @"Mozambique" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"NAM", - Population = 2315000, - WorkedHours = 43.1, - GDP = 9975, - Name = @"Namibia" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"NER", - Population = 20002000, - WorkedHours = 45, - GDP = 908, - Name = @"Niger" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"NGA", - Population = 181000000, - WorkedHours = 32.76, - GDP = 5671, - Name = @"Nigeria" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"RWA", - Population = 11369000, - WorkedHours = 46.3, - GDP = 1731, - Name = @"Rwanda" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"STP", - Population = 199000, - WorkedHours = 38.2, - GDP = 2948, - Name = @"Sao Tome" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"SEN", - Population = 14578000, - WorkedHours = 46.8, - GDP = 2294, - Name = @"Senegal" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"SYC", - Population = 95000, - WorkedHours = 39.8, - GDP = 24857, - Name = @"Seychelles" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"SLE", - Population = 7172000, - WorkedHours = 35.4, - GDP = 1314, - Name = @"Sierra Leone" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"ZAF", - Population = 55386000, - WorkedHours = 42.48, - GDP = 12378, - Name = @"South Africa" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"SSD", - Population = 10716000, - WorkedHours = 39.3, - GDP = 1875, - Name = @"South Sudan" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"SDN", - Population = 38903000, - WorkedHours = 36.3, - GDP = 4290, - Name = @"Sudan" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"TZA", - Population = 51483000, - WorkedHours = 38, - GDP = 2491, - Name = @"Tanzania" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"TGO", - Population = 7323000, - WorkedHours = 38.8, - GDP = 1351, - Name = @"Togo" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"TUN", - Population = 11180000, - WorkedHours = 35.2, - GDP = 10766, - Name = @"Tunisia" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"UGA", - Population = 38225000, - WorkedHours = 38.6, - GDP = 1666, - Name = @"Uganda" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"ZMB", - Population = 15879000, - WorkedHours = 46.6, - GDP = 3627, - Name = @"Zambia" - }); - this.Add(new CountryStatsAfricaItem() - { - Code = @"ZWE", - Population = 13815000, - WorkedHours = 41.4, - GDP = 1912, - Name = @"Zimbabwe" - }); - } -} diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/CountryStatsEurope.cs b/samples/charts/data-chart/scatter-bubble-chart-styling/CountryStatsEurope.cs deleted file mode 100644 index 4adb7755a1..0000000000 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/CountryStatsEurope.cs +++ /dev/null @@ -1,346 +0,0 @@ -using System; -using System.Collections.Generic; -public class CountryStatsEuropeItem -{ - public string Code { get; set; } - public double Population { get; set; } - public double WorkedHours { get; set; } - public double GDP { get; set; } - public string Name { get; set; } -} - -public class CountryStatsEurope - : List -{ - public CountryStatsEurope() - { - this.Add(new CountryStatsEuropeItem() - { - Code = @"ALB", - Population = 2891000, - WorkedHours = 41, - GDP = 10970, - Name = @"Albania" - }); - this.Add(new CountryStatsEuropeItem() - { - Code = @"AUT", - Population = 8679000, - WorkedHours = 30.75, - GDP = 44305, - Name = @"Austria" - }); - this.Add(new CountryStatsEuropeItem() - { - Code = @"BLR", - Population = 9439000, - WorkedHours = 43.5, - GDP = 17230, - Name = @"Belarus" - }); - this.Add(new CountryStatsEuropeItem() - { - Code = @"BEL", - Population = 11288000, - WorkedHours = 29.7, - GDP = 41708, - Name = @"Belgium" - }); - this.Add(new CountryStatsEuropeItem() - { - Code = @"BIH", - Population = 3429000, - WorkedHours = 46.5, - GDP = 10932, - Name = @"Bosnia" - }); - this.Add(new CountryStatsEuropeItem() - { - Code = @"BGR", - Population = 7200000, - WorkedHours = 31.62, - GDP = 17000, - Name = @"Bulgaria" - }); - this.Add(new CountryStatsEuropeItem() - { - Code = @"HRV", - Population = 4233000, - WorkedHours = 35.15, - GDP = 20984, - Name = @"Croatia" - }); - this.Add(new CountryStatsEuropeItem() - { - Code = @"CYP", - Population = 1161000, - WorkedHours = 34.42, - GDP = 30549, - Name = @"Cyprus" - }); - this.Add(new CountryStatsEuropeItem() - { - Code = @"CZE", - Population = 10601000, - WorkedHours = 33.77, - GDP = 30605, - Name = @"Czechia" - }); - this.Add(new CountryStatsEuropeItem() - { - Code = @"DNK", - Population = 5689000, - WorkedHours = 27.16, - GDP = 45459, - Name = @"Denmark" - }); - this.Add(new CountryStatsEuropeItem() - { - Code = @"EST", - Population = 1315000, - WorkedHours = 35.61, - GDP = 27550, - Name = @"Estonia" - }); - this.Add(new CountryStatsEuropeItem() - { - Code = @"FIN", - Population = 5481000, - WorkedHours = 31.48, - GDP = 38942, - Name = @"Finland" - }); - this.Add(new CountryStatsEuropeItem() - { - Code = @"FRA", - Population = 64453000, - WorkedHours = 29.03, - GDP = 37766, - Name = @"France" - }); - this.Add(new CountryStatsEuropeItem() - { - Code = @"DEU", - Population = 81787000, - WorkedHours = 26.31, - GDP = 43938, - Name = @"Germany" - }); - this.Add(new CountryStatsEuropeItem() - { - Code = @"GRC", - Population = 10660000, - WorkedHours = 39.06, - GDP = 24170, - Name = @"Greece" - }); - this.Add(new CountryStatsEuropeItem() - { - Code = @"HUN", - Population = 9778000, - WorkedHours = 36.99, - GDP = 25034, - Name = @"Hungary" - }); - this.Add(new CountryStatsEuropeItem() - { - Code = @"ISL", - Population = 330000, - WorkedHours = 29.02, - GDP = 43048, - Name = @"Iceland" - }); - this.Add(new CountryStatsEuropeItem() - { - Code = @"IRL", - Population = 4652000, - WorkedHours = 33.47, - GDP = 60818, - Name = @"Ireland" - }); - this.Add(new CountryStatsEuropeItem() - { - Code = @"ITA", - Population = 60578000, - WorkedHours = 33.04, - GDP = 34302, - Name = @"Italy" - }); - this.Add(new CountryStatsEuropeItem() - { - Code = @"LVA", - Population = 1998000, - WorkedHours = 36.57, - GDP = 23019, - Name = @"Latvia" - }); - this.Add(new CountryStatsEuropeItem() - { - Code = @"LTU", - Population = 2932000, - WorkedHours = 35.76, - GDP = 27046, - Name = @"Lithuania" - }); - this.Add(new CountryStatsEuropeItem() - { - Code = @"LUX", - Population = 567000, - WorkedHours = 29.25, - GDP = 94089, - Name = @"Luxembourg" - }); - this.Add(new CountryStatsEuropeItem() - { - Code = @"MLT", - Population = 434000, - WorkedHours = 37.78, - GDP = 34087, - Name = @"Malta" - }); - this.Add(new CountryStatsEuropeItem() - { - Code = @"MDA", - Population = 4071000, - WorkedHours = 41, - GDP = 4747, - Name = @"Moldova" - }); - this.Add(new CountryStatsEuropeItem() - { - Code = @"MNE", - Population = 627000, - WorkedHours = 47.2, - GDP = 15290, - Name = @"Montenegro" - }); - this.Add(new CountryStatsEuropeItem() - { - Code = @"NLD", - Population = 16938000, - WorkedHours = 27.38, - GDP = 46494, - Name = @"Netherlands" - }); - this.Add(new CountryStatsEuropeItem() - { - Code = @"MKD", - Population = 2079000, - WorkedHours = 36.6, - GDP = 12760, - Name = @"North Macedonia" - }); - this.Add(new CountryStatsEuropeItem() - { - Code = @"NOR", - Population = 5200000, - WorkedHours = 27.36, - GDP = 64008, - Name = @"Norway" - }); - this.Add(new CountryStatsEuropeItem() - { - Code = @"POL", - Population = 38034000, - WorkedHours = 39.4, - GDP = 25300, - Name = @"Poland" - }); - this.Add(new CountryStatsEuropeItem() - { - Code = @"PRT", - Population = 10368000, - WorkedHours = 36.06, - GDP = 26608, - Name = @"Portugal" - }); - this.Add(new CountryStatsEuropeItem() - { - Code = @"ROU", - Population = 19925000, - WorkedHours = 34.34, - GDP = 20556, - Name = @"Romania" - }); - this.Add(new CountryStatsEuropeItem() - { - Code = @"RUS", - Population = 145000000, - WorkedHours = 38.04, - GDP = 24517, - Name = @"Russia" - }); - this.Add(new CountryStatsEuropeItem() - { - Code = @"SMR", - Population = 33000, - WorkedHours = 40.1, - GDP = 56372, - Name = @"San Marino" - }); - this.Add(new CountryStatsEuropeItem() - { - Code = @"SRB", - Population = 8877000, - WorkedHours = 46.5, - GDP = 13278, - Name = @"Serbia" - }); - this.Add(new CountryStatsEuropeItem() - { - Code = @"SVK", - Population = 5436000, - WorkedHours = 33.73, - GDP = 28309, - Name = @"Slovakia" - }); - this.Add(new CountryStatsEuropeItem() - { - Code = @"SVN", - Population = 2071000, - WorkedHours = 32.46, - GDP = 29038, - Name = @"Slovenia" - }); - this.Add(new CountryStatsEuropeItem() - { - Code = @"ESP", - Population = 46672000, - WorkedHours = 32.68, - GDP = 32291, - Name = @"Spain" - }); - this.Add(new CountryStatsEuropeItem() - { - Code = @"SWE", - Population = 9765000, - WorkedHours = 30.96, - GDP = 45679, - Name = @"Sweden" - }); - this.Add(new CountryStatsEuropeItem() - { - Code = @"CHE", - Population = 8297000, - WorkedHours = 30.57, - GDP = 57264, - Name = @"Switzerland" - }); - this.Add(new CountryStatsEuropeItem() - { - Code = @"UKR", - Population = 44922000, - WorkedHours = 38.6, - GDP = 7465, - Name = @"Ukraine" - }); - this.Add(new CountryStatsEuropeItem() - { - Code = @"GBR", - Population = 65860000, - WorkedHours = 32.1, - GDP = 38839, - Name = @"United Kingdom" - }); - } -} diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/WorldStats.cs b/samples/charts/data-chart/scatter-bubble-chart-styling/WorldStats.cs new file mode 100644 index 0000000000..b3edbfa500 --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/WorldStats.cs @@ -0,0 +1,5415 @@ +using System; +using System.Collections.Generic; +public class WorldStatsItem +{ + public string Code { get; set; } + public string Name { get; set; } + public string Continent { get; set; } + public double Population { get; set; } + public double GdpTotal { get; set; } + public string Economy { get; set; } + public string Region { get; set; } + public string Status { get; set; } + public double Longitude { get; set; } + public double Latitude { get; set; } + public double GdpPerPerson { get; set; } + public double Rank { get; set; } + public double Unemployment { get; set; } + public double OilProduction { get; set; } + public double BirthRate { get; set; } + public double MedianAge { get; set; } + public double Electricity { get; set; } + public double Televisions { get; set; } + public double PublicDebt { get; set; } + public double Internet { get; set; } +} + +public class WorldStats + : List +{ + public WorldStats() + { + this.Add(new WorldStatsItem() + { + Code = @"CHN", + Name = @"China", + Continent = @"Asia", + Population = 1379302771, + GdpTotal = 21140000, + Economy = @"Emerging", + Region = @"Eastern Asia", + Status = @"Country", + Longitude = 104.18, + Latitude = 35.887, + GdpPerPerson = 15327, + Rank = 1, + Unemployment = 4, + OilProduction = 3725000, + BirthRate = 14, + MedianAge = 34, + Electricity = 3256000, + Televisions = 400000000, + PublicDebt = 18, + Internet = 253000000 + }); + this.Add(new WorldStatsItem() + { + Code = @"IND", + Name = @"India", + Continent = @"Asia", + Population = 1281935911, + GdpTotal = 8721000, + Economy = @"Emerging", + Region = @"Southern Asia", + Status = @"Country", + Longitude = 78.022, + Latitude = 22.665, + GdpPerPerson = 6803, + Rank = 2, + Unemployment = 7, + OilProduction = 810000, + BirthRate = 22, + MedianAge = 25, + Electricity = 661600, + Televisions = 63000000, + PublicDebt = 58, + Internet = 80000000 + }); + this.Add(new WorldStatsItem() + { + Code = @"USA", + Name = @"United States", + Continent = @"North America", + Population = 326625791, + GdpTotal = 18560000, + Economy = @"Developed", + Region = @"Northern America", + Status = @"Country", + Longitude = -101.8, + Latitude = 39.818, + GdpPerPerson = 56823, + Rank = 3, + Unemployment = 5, + OilProduction = 7460000, + BirthRate = 14, + MedianAge = 37, + Electricity = 4062000, + Televisions = 219000000, + PublicDebt = 61, + Internet = 223000000 + }); + this.Add(new WorldStatsItem() + { + Code = @"IDN", + Name = @"Indonesia", + Continent = @"Asia", + Population = 260580739, + GdpTotal = 3028000, + Economy = @"Emerging", + Region = @"Eastern Asia", + Status = @"Country", + Longitude = 102.72, + Latitude = -2.698, + GdpPerPerson = 11620, + Rank = 4, + Unemployment = 9, + OilProduction = 837500, + BirthRate = 19, + MedianAge = 27, + Electricity = 125900, + Televisions = 13750000, + PublicDebt = 34, + Internet = 13000000 + }); + this.Add(new WorldStatsItem() + { + Code = @"BRA", + Name = @"Brazil", + Continent = @"South America", + Population = 207353391, + GdpTotal = 3081000, + Economy = @"Emerging", + Region = @"South America", + Status = @"Country", + Longitude = -48.88, + Latitude = -12.89, + GdpPerPerson = 14859, + Rank = 5, + Unemployment = 9, + OilProduction = 1797000, + BirthRate = 19, + MedianAge = 28, + Electricity = 396400, + Televisions = 36500000, + PublicDebt = 45, + Internet = 50000000 + }); + this.Add(new WorldStatsItem() + { + Code = @"PAK", + Name = @"Pakistan", + Continent = @"Asia", + Population = 204924861, + GdpTotal = 988200, + Economy = @"Emerging", + Region = @"Southern Asia", + Status = @"Country", + Longitude = 67.624, + Latitude = 28.421, + GdpPerPerson = 4822, + Rank = 6, + Unemployment = 6, + OilProduction = 62000, + BirthRate = 28, + MedianAge = 21, + Electricity = 89820, + Televisions = 3100000, + PublicDebt = 51, + Internet = 17500000 + }); + this.Add(new WorldStatsItem() + { + Code = @"NGA", + Name = @"Nigeria", + Continent = @"Africa", + Population = 190632261, + GdpTotal = 1089000, + Economy = @"Emerging", + Region = @"Western Africa", + Status = @"Country", + Longitude = 8.657, + Latitude = 9.075, + GdpPerPerson = 5713, + Rank = 7, + Unemployment = 5, + OilProduction = 2166000, + BirthRate = 37, + MedianAge = 19, + Electricity = 22530, + Televisions = 6900000, + PublicDebt = 14, + Internet = 10000000 + }); + this.Add(new WorldStatsItem() + { + Code = @"BGD", + Name = @"Bangladesh", + Continent = @"Asia", + Population = 157826578, + GdpTotal = 628400, + Economy = @"Least developed", + Region = @"Southern Asia", + Status = @"Country", + Longitude = 89.935, + Latitude = 24.474, + GdpPerPerson = 3982, + Rank = 8, + Unemployment = 3, + OilProduction = 6746, + BirthRate = 29, + MedianAge = 23, + Electricity = 21350, + Televisions = 770000, + PublicDebt = 37, + Internet = 500000 + }); + this.Add(new WorldStatsItem() + { + Code = @"RUS", + Name = @"Russia", + Continent = @"Europe", + Population = 142257519, + GdpTotal = 3745000, + Economy = @"Emerging", + Region = @"Eastern Europe", + Status = @"Country", + Longitude = 42.379, + Latitude = 56.974, + GdpPerPerson = 26325, + Rank = 9, + Unemployment = 6, + OilProduction = 9870000, + BirthRate = 11, + MedianAge = 38, + Electricity = 1000000, + Televisions = 60500000, + PublicDebt = 6, + Internet = 30000000 + }); + this.Add(new WorldStatsItem() + { + Code = @"JPN", + Name = @"Japan", + Continent = @"Asia", + Population = 126451398, + GdpTotal = 4932000, + Economy = @"Developed", + Region = @"Eastern Asia", + Status = @"Country", + Longitude = 138.48, + Latitude = 36.519, + GdpPerPerson = 39003, + Rank = 10, + Unemployment = 4, + OilProduction = 125000, + BirthRate = 8, + MedianAge = 44, + Electricity = 1025000, + Televisions = 86500000, + PublicDebt = 170, + Internet = 88110000 + }); + this.Add(new WorldStatsItem() + { + Code = @"MEX", + Name = @"Mexico", + Continent = @"North America", + Population = 124574795, + GdpTotal = 2307000, + Economy = @"Emerging", + Region = @"Central America", + Status = @"Country", + Longitude = -102.5, + Latitude = 23.63, + GdpPerPerson = 18519, + Rank = 11, + Unemployment = 4, + OilProduction = 3083000, + BirthRate = 20, + MedianAge = 26, + Electricity = 222400, + Televisions = 25600000, + PublicDebt = 23, + Internet = 22812000 + }); + this.Add(new WorldStatsItem() + { + Code = @"ETH", + Name = @"Ethiopia", + Continent = @"Africa", + Population = 105350020, + GdpTotal = 174700, + Economy = @"Least developed", + Region = @"Eastern Africa", + Status = @"Country", + Longitude = 40.489, + Latitude = 9.154, + GdpPerPerson = 1658, + Rank = 12, + Unemployment = 5, + OilProduction = 1, + BirthRate = 25, + MedianAge = 52, + Electricity = 60942, + Televisions = 66893500, + PublicDebt = 45, + Internet = 291000 + }); + this.Add(new WorldStatsItem() + { + Code = @"PHL", + Name = @"Philippines", + Continent = @"Asia", + Population = 104256076, + GdpTotal = 801900, + Economy = @"Emerging", + Region = @"Eastern Asia", + Status = @"Country", + Longitude = 121.4, + Latitude = 16.78, + GdpPerPerson = 7692, + Rank = 13, + Unemployment = 7, + OilProduction = 0, + BirthRate = 26, + MedianAge = 22, + Electricity = 53670, + Televisions = 3700000, + PublicDebt = 56, + Internet = 5300000 + }); + this.Add(new WorldStatsItem() + { + Code = @"EGY", + Name = @"Egypt", + Continent = @"Africa", + Population = 97041072, + GdpTotal = 1105000, + Economy = @"Emerging", + Region = @"Middle East", + Status = @"Country", + Longitude = 30.787, + Latitude = 26.825, + GdpPerPerson = 11387, + Rank = 14, + Unemployment = 9, + OilProduction = 665000, + BirthRate = 22, + MedianAge = 25, + Electricity = 102500, + Televisions = 7700000, + PublicDebt = 106, + Internet = 8620000 + }); + this.Add(new WorldStatsItem() + { + Code = @"VNM", + Name = @"Vietnam", + Continent = @"Asia", + Population = 96160163, + GdpTotal = 594900, + Economy = @"Emerging", + Region = @"Eastern Asia", + Status = @"Country", + Longitude = 108.46, + Latitude = 13.711, + GdpPerPerson = 6187, + Rank = 15, + Unemployment = 4, + OilProduction = 324000, + BirthRate = 16, + MedianAge = 27, + Electricity = 59010, + Televisions = 3570000, + PublicDebt = 42, + Internet = 17870000 + }); + this.Add(new WorldStatsItem() + { + Code = @"COD", + Name = @"Dem. Rep. Congo", + Continent = @"Africa", + Population = 83301151, + GdpTotal = 66010, + Economy = @"Least developed", + Region = @"Middle Africa", + Status = @"Country", + Longitude = 21.738, + Latitude = -4.071, + GdpPerPerson = 792, + Rank = 16, + Unemployment = 3, + OilProduction = 4, + BirthRate = 13, + MedianAge = 41, + Electricity = 48913, + Televisions = 55942436, + PublicDebt = 16, + Internet = 8903936 + }); + this.Add(new WorldStatsItem() + { + Code = @"IRN", + Name = @"Iran", + Continent = @"Asia", + Population = 82021564, + GdpTotal = 1459000, + Economy = @"Emerging", + Region = @"Middle East", + Status = @"Country", + Longitude = 53.664, + Latitude = 32.435, + GdpPerPerson = 17788, + Rank = 17, + Unemployment = 12, + OilProduction = 3956000, + BirthRate = 17, + MedianAge = 26, + Electricity = 170400, + Televisions = 4610000, + PublicDebt = 17, + Internet = 23000000 + }); + this.Add(new WorldStatsItem() + { + Code = @"TUR", + Name = @"Turkey", + Continent = @"Asia", + Population = 80845215, + GdpTotal = 1670000, + Economy = @"Emerging", + Region = @"Middle East", + Status = @"Country", + Longitude = 35.243, + Latitude = 38.962, + GdpPerPerson = 20657, + Rank = 18, + Unemployment = 10, + OilProduction = 45460, + BirthRate = 16, + MedianAge = 29, + Electricity = 154200, + Televisions = 20900000, + PublicDebt = 39, + Internet = 13150000 + }); + this.Add(new WorldStatsItem() + { + Code = @"DEU", + Name = @"Germany", + Continent = @"Europe", + Population = 80594017, + GdpTotal = 3979000, + Economy = @"Developed", + Region = @"Western Europe", + Status = @"Country", + Longitude = 11.43, + Latitude = 52.237, + GdpPerPerson = 49371, + Rank = 19, + Unemployment = 9, + OilProduction = 141700, + BirthRate = 8, + MedianAge = 43, + Electricity = 579400, + Televisions = 51400000, + PublicDebt = 65, + Internet = 42500000 + }); + this.Add(new WorldStatsItem() + { + Code = @"THA", + Name = @"Thailand", + Continent = @"Asia", + Population = 68414135, + GdpTotal = 1161000, + Economy = @"Emerging", + Region = @"Eastern Asia", + Status = @"Country", + Longitude = 100.65, + Latitude = 15.345, + GdpPerPerson = 16970, + Rank = 20, + Unemployment = 1, + OilProduction = 310000, + BirthRate = 14, + MedianAge = 33, + Electricity = 124600, + Televisions = 15190000, + PublicDebt = 38, + Internet = 13416000 + }); + this.Add(new WorldStatsItem() + { + Code = @"FRA", + Name = @"France", + Continent = @"Europe", + Population = 67106161, + GdpTotal = 2699000, + Economy = @"Developed", + Region = @"Western Europe", + Status = @"Country", + Longitude = 2.267, + Latitude = 46.645, + GdpPerPerson = 40220, + Rank = 21, + Unemployment = 12, + OilProduction = 1, + BirthRate = 24, + MedianAge = 48, + Electricity = 63711, + Televisions = 43156970, + PublicDebt = 11, + Internet = 7012454 + }); + this.Add(new WorldStatsItem() + { + Code = @"GBR", + Name = @"United Kingdom", + Continent = @"Europe", + Population = 64769452, + GdpTotal = 2788000, + Economy = @"Developed", + Region = @"Northern Europe", + Status = @"Country", + Longitude = -1.233, + Latitude = 52.242, + GdpPerPerson = 43045, + Rank = 22, + Unemployment = 5, + OilProduction = 1636000, + BirthRate = 11, + MedianAge = 40, + Electricity = 372600, + Televisions = 30500000, + PublicDebt = 44, + Internet = 40200000 + }); + this.Add(new WorldStatsItem() + { + Code = @"ITA", + Name = @"Italy", + Continent = @"Europe", + Population = 62137802, + GdpTotal = 2221000, + Economy = @"Developed", + Region = @"Southern Europe", + Status = @"Country", + Longitude = 15.701, + Latitude = 40.885, + GdpPerPerson = 35743, + Rank = 23, + Unemployment = 6, + OilProduction = 164800, + BirthRate = 8, + MedianAge = 43, + Electricity = 278500, + Televisions = 30300000, + PublicDebt = 104, + Internet = 32000000 + }); + this.Add(new WorldStatsItem() + { + Code = @"MMR", + Name = @"Myanmar", + Continent = @"Asia", + Population = 55123814, + GdpTotal = 311100, + Economy = @"Least developed", + Region = @"Eastern Asia", + Status = @"Country", + Longitude = 96.028, + Latitude = 21.509, + GdpPerPerson = 5644, + Rank = 24, + Unemployment = 13, + OilProduction = 4, + BirthRate = 24, + MedianAge = 37, + Electricity = 26955, + Televisions = 39322205, + PublicDebt = 18, + Internet = 30207772 + }); + this.Add(new WorldStatsItem() + { + Code = @"ZAF", + Name = @"South Africa", + Continent = @"Africa", + Population = 54841552, + GdpTotal = 739100, + Economy = @"Emerging", + Region = @"Southern Africa", + Status = @"Country", + Longitude = 22.489, + Latitude = -32.4, + GdpPerPerson = 13477, + Rank = 25, + Unemployment = 24, + OilProduction = 200000, + BirthRate = 20, + MedianAge = 24, + Electricity = 264000, + Televisions = 6000000, + PublicDebt = 31, + Internet = 5100000 + }); + this.Add(new WorldStatsItem() + { + Code = @"TZA", + Name = @"Tanzania", + Continent = @"Africa", + Population = 53950935, + GdpTotal = 150600, + Economy = @"Least developed", + Region = @"Eastern Africa", + Status = @"Country", + Longitude = 34.894, + Latitude = -6.356, + GdpPerPerson = 2791, + Rank = 26, + Unemployment = 6, + OilProduction = 3, + BirthRate = 9, + MedianAge = 34, + Electricity = 10186, + Televisions = 35987980, + PublicDebt = 20, + Internet = 400000 + }); + this.Add(new WorldStatsItem() + { + Code = @"KOR", + Name = @"South Korea", + Continent = @"Asia", + Population = 51181299, + GdpTotal = 1929000, + Economy = @"Emerging", + Region = @"Eastern Asia", + Status = @"Country", + Longitude = 128.29, + Latitude = 36.399, + GdpPerPerson = 37690, + Rank = 27, + Unemployment = 3, + OilProduction = 17050, + BirthRate = 9, + MedianAge = 37, + Electricity = 403200, + Televisions = 15900000, + PublicDebt = 28, + Internet = 35590000 + }); + this.Add(new WorldStatsItem() + { + Code = @"ESP", + Name = @"Spain", + Continent = @"Europe", + Population = 48958159, + GdpTotal = 1690000, + Economy = @"Developed", + Region = @"Southern Europe", + Status = @"Country", + Longitude = -2.892, + Latitude = 40.569, + GdpPerPerson = 34519, + Rank = 28, + Unemployment = 8, + OilProduction = 29350, + BirthRate = 10, + MedianAge = 41, + Electricity = 270300, + Televisions = 16200000, + PublicDebt = 36, + Internet = 19690000 + }); + this.Add(new WorldStatsItem() + { + Code = @"COL", + Name = @"Colombia", + Continent = @"South America", + Population = 47698524, + GdpTotal = 688000, + Economy = @"Developing", + Region = @"South America", + Status = @"Country", + Longitude = -72.95, + Latitude = 4.099, + GdpPerPerson = 14424, + Rank = 29, + Unemployment = 11, + OilProduction = 531300, + BirthRate = 20, + MedianAge = 27, + Electricity = 50470, + Televisions = 4590000, + PublicDebt = 53, + Internet = 12100000 + }); + this.Add(new WorldStatsItem() + { + Code = @"KEN", + Name = @"Kenya", + Continent = @"Africa", + Population = 47615739, + GdpTotal = 152700, + Economy = @"Emerging", + Region = @"Eastern Africa", + Status = @"Country", + Longitude = 37.929, + Latitude = 0.4, + GdpPerPerson = 3207, + Rank = 30, + Unemployment = 40, + OilProduction = 0, + BirthRate = 38, + MedianAge = 19, + Electricity = 5502, + Televisions = 730000, + PublicDebt = 49, + Internet = 3000000 + }); + this.Add(new WorldStatsItem() + { + Code = @"ARG", + Name = @"Argentina", + Continent = @"South America", + Population = 44293293, + GdpTotal = 879400, + Economy = @"Emerging", + Region = @"South America", + Status = @"Country", + Longitude = -64.84, + Latitude = -33.07, + GdpPerPerson = 19854, + Rank = 31, + Unemployment = 9, + OilProduction = 730000, + BirthRate = 18, + MedianAge = 30, + Electricity = 101100, + Televisions = 7950000, + PublicDebt = 56, + Internet = 9309000 + }); + this.Add(new WorldStatsItem() + { + Code = @"UKR", + Name = @"Ukraine", + Continent = @"Europe", + Population = 44033874, + GdpTotal = 352600, + Economy = @"Developing", + Region = @"Eastern Europe", + Status = @"Country", + Longitude = 30.86, + Latitude = 49.723, + GdpPerPerson = 8007, + Rank = 32, + Unemployment = 2, + OilProduction = 90400, + BirthRate = 10, + MedianAge = 39, + Electricity = 192100, + Televisions = 18050000, + PublicDebt = 12, + Internet = 10000000 + }); + this.Add(new WorldStatsItem() + { + Code = @"DZA", + Name = @"Algeria", + Continent = @"Africa", + Population = 40969443, + GdpTotal = 609400, + Economy = @"Developing", + Region = @"Northern Africa", + Status = @"Country", + Longitude = 1.642, + Latitude = 28.04, + GdpPerPerson = 14875, + Rank = 33, + Unemployment = 12, + OilProduction = 1358000, + BirthRate = 17, + MedianAge = 26, + Electricity = 31910, + Televisions = 3100000, + PublicDebt = 18, + Internet = 3500000 + }); + this.Add(new WorldStatsItem() + { + Code = @"UGA", + Name = @"Uganda", + Continent = @"Africa", + Population = 39570125, + GdpTotal = 84930, + Economy = @"Least developed", + Region = @"Eastern Africa", + Status = @"Country", + Longitude = 32.27, + Latitude = 1.375, + GdpPerPerson = 2146, + Rank = 34, + Unemployment = 10, + OilProduction = 1, + BirthRate = 10, + MedianAge = 32, + Electricity = 35388, + Televisions = 27867123, + PublicDebt = 21, + Internet = 2000000 + }); + this.Add(new WorldStatsItem() + { + Code = @"IRQ", + Name = @"Iraq", + Continent = @"Asia", + Population = 39192111, + GdpTotal = 596700, + Economy = @"Developing", + Region = @"Middle East", + Status = @"Country", + Longitude = 43.66, + Latitude = 33.218, + GdpPerPerson = 15225, + Rank = 35, + Unemployment = 6, + OilProduction = 0, + BirthRate = 20, + MedianAge = 44, + Electricity = 48545, + Televisions = 13178804, + PublicDebt = 40, + Internet = 9538092 + }); + this.Add(new WorldStatsItem() + { + Code = @"POL", + Name = @"Poland", + Continent = @"Europe", + Population = 38476269, + GdpTotal = 1052000, + Economy = @"Developed", + Region = @"Eastern Europe", + Status = @"Country", + Longitude = 20.073, + Latitude = 52.374, + GdpPerPerson = 27342, + Rank = 36, + Unemployment = 13, + OilProduction = 0, + BirthRate = 10, + MedianAge = 38, + Electricity = 146200, + Televisions = 13050000, + PublicDebt = 43, + Internet = 16000000 + }); + this.Add(new WorldStatsItem() + { + Code = @"SDN", + Name = @"Sudan", + Continent = @"Africa", + Population = 37345935, + GdpTotal = 176300, + Economy = @"Developing", + Region = @"Northern Africa", + Status = @"Country", + Longitude = 30.217, + Latitude = 15.434, + GdpPerPerson = 4721, + Rank = 37, + Unemployment = 19, + OilProduction = 484500, + BirthRate = 34, + MedianAge = 19, + Electricity = 3944, + Televisions = 2380000, + PublicDebt = 106, + Internet = 1500000 + }); + this.Add(new WorldStatsItem() + { + Code = @"CAN", + Name = @"Canada", + Continent = @"North America", + Population = 35623680, + GdpTotal = 1674000, + Economy = @"Developed", + Region = @"Northern America", + Status = @"Country", + Longitude = -108, + Latitude = 55.855, + GdpPerPerson = 46991, + Rank = 38, + Unemployment = 6, + OilProduction = 3310000, + BirthRate = 10, + MedianAge = 40, + Electricity = 609600, + Televisions = 21500000, + PublicDebt = 64, + Internet = 28000000 + }); + this.Add(new WorldStatsItem() + { + Code = @"AFG", + Name = @"Afghanistan", + Continent = @"Asia", + Population = 34124811, + GdpTotal = 64080, + Economy = @"Least developed", + Region = @"Southern Asia", + Status = @"Country", + Longitude = 66.041, + Latitude = 33.977, + GdpPerPerson = 1878, + Rank = 39, + Unemployment = 9, + OilProduction = 2, + BirthRate = 15, + MedianAge = 39, + Electricity = 64532, + Televisions = 15374294, + PublicDebt = 25, + Internet = 18662148 + }); + this.Add(new WorldStatsItem() + { + Code = @"MAR", + Name = @"Morocco", + Continent = @"Africa", + Population = 33986655, + GdpTotal = 282800, + Economy = @"Developing", + Region = @"Northern Africa", + Status = @"Country", + Longitude = -5.707, + Latitude = 32.104, + GdpPerPerson = 8321, + Rank = 40, + Unemployment = 10, + OilProduction = 300, + BirthRate = 21, + MedianAge = 25, + Electricity = 21370, + Televisions = 3100000, + PublicDebt = 67, + Internet = 7300000 + }); + this.Add(new WorldStatsItem() + { + Code = @"MYS", + Name = @"Malaysia", + Continent = @"Asia", + Population = 31381992, + GdpTotal = 863000, + Economy = @"Developing", + Region = @"Eastern Asia", + Status = @"Country", + Longitude = 101.72, + Latitude = 4.89, + GdpPerPerson = 27500, + Rank = 41, + Unemployment = 3, + OilProduction = 757500, + BirthRate = 22, + MedianAge = 25, + Electricity = 82360, + Televisions = 10800000, + PublicDebt = 42, + Internet = 15868000 + }); + this.Add(new WorldStatsItem() + { + Code = @"VEN", + Name = @"Venezuela", + Continent = @"South America", + Population = 31304016, + GdpTotal = 468600, + Economy = @"Emerging", + Region = @"South America", + Status = @"Country", + Longitude = -64.78, + Latitude = 6.695, + GdpPerPerson = 14969, + Rank = 42, + Unemployment = 9, + OilProduction = 2398000, + BirthRate = 21, + MedianAge = 25, + Electricity = 99200, + Televisions = 4100000, + PublicDebt = 19, + Internet = 5720000 + }); + this.Add(new WorldStatsItem() + { + Code = @"PER", + Name = @"Peru", + Continent = @"South America", + Population = 31036656, + GdpTotal = 410400, + Economy = @"Emerging", + Region = @"South America", + Status = @"Country", + Longitude = -73.82, + Latitude = -12.89, + GdpPerPerson = 13223, + Rank = 43, + Unemployment = 7, + OilProduction = 119000, + BirthRate = 20, + MedianAge = 26, + Electricity = 24970, + Televisions = 3060000, + PublicDebt = 29, + Internet = 7636000 + }); + this.Add(new WorldStatsItem() + { + Code = @"UZB", + Name = @"Uzbekistan", + Continent = @"Asia", + Population = 29748859, + GdpTotal = 202300, + Economy = @"Developing", + Region = @"Central Asia", + Status = @"Country", + Longitude = 63.288, + Latitude = 42.338, + GdpPerPerson = 6800, + Rank = 44, + Unemployment = 1, + OilProduction = 109400, + BirthRate = 18, + MedianAge = 24, + Electricity = 49000, + Televisions = 6400000, + PublicDebt = 19, + Internet = 1200000 + }); + this.Add(new WorldStatsItem() + { + Code = @"NPL", + Name = @"Nepal", + Continent = @"Asia", + Population = 29384297, + GdpTotal = 71520, + Economy = @"Least developed", + Region = @"Southern Asia", + Status = @"Country", + Longitude = 82.328, + Latitude = 28.843, + GdpPerPerson = 2434, + Rank = 45, + Unemployment = 5, + OilProduction = 3, + BirthRate = 18, + MedianAge = 34, + Electricity = 68842, + Televisions = 21075997, + PublicDebt = 16, + Internet = 7780693 + }); + this.Add(new WorldStatsItem() + { + Code = @"AGO", + Name = @"Angola", + Continent = @"Africa", + Population = 29310273, + GdpTotal = 189000, + Economy = @"Least developed", + Region = @"Middle Africa", + Status = @"Country", + Longitude = 18.097, + Latitude = -12.37, + GdpPerPerson = 6448, + Rank = 46, + Unemployment = 14, + OilProduction = 0, + BirthRate = 15, + MedianAge = 38, + Electricity = 25890, + Televisions = 21283158, + PublicDebt = 12, + Internet = 100000 + }); + this.Add(new WorldStatsItem() + { + Code = @"SAU", + Name = @"Saudi Arabia", + Continent = @"Asia", + Population = 28571770, + GdpTotal = 1731000, + Economy = @"Developed", + Region = @"Middle East", + Status = @"Country", + Longitude = 45.129, + Latitude = 24.248, + GdpPerPerson = 60584, + Rank = 47, + Unemployment = 13, + OilProduction = 11000000, + BirthRate = 29, + MedianAge = 22, + Electricity = 165600, + Televisions = 5100000, + PublicDebt = 24, + Internet = 6200000 + }); + this.Add(new WorldStatsItem() + { + Code = @"YEM", + Name = @"Yemen", + Continent = @"Asia", + Population = 28036829, + GdpTotal = 73450, + Economy = @"Least developed", + Region = @"Middle East", + Status = @"Country", + Longitude = 48.53, + Latitude = 15.658, + GdpPerPerson = 2620, + Rank = 48, + Unemployment = 35, + OilProduction = 339200, + BirthRate = 42, + MedianAge = 17, + Electricity = 4456, + Televisions = 470000, + PublicDebt = 34, + Internet = 320000 + }); + this.Add(new WorldStatsItem() + { + Code = @"GHA", + Name = @"Ghana", + Continent = @"Africa", + Population = 27499924, + GdpTotal = 120800, + Economy = @"Developing", + Region = @"Western Africa", + Status = @"Country", + Longitude = -0.893, + Latitude = 8.607, + GdpPerPerson = 4393, + Rank = 49, + Unemployment = 11, + OilProduction = 700, + BirthRate = 29, + MedianAge = 20, + Electricity = 7042, + Televisions = 1900000, + PublicDebt = 59, + Internet = 650000 + }); + this.Add(new WorldStatsItem() + { + Code = @"MOZ", + Name = @"Mozambique", + Continent = @"Africa", + Population = 26573706, + GdpTotal = 35010, + Economy = @"Least developed", + Region = @"Eastern Africa", + Status = @"Country", + Longitude = 38.075, + Latitude = -15.41, + GdpPerPerson = 1317, + Rank = 50, + Unemployment = 21, + OilProduction = 0, + BirthRate = 38, + MedianAge = 17, + Electricity = 13170, + Televisions = 67600, + PublicDebt = 22, + Internet = 200000 + }); + this.Add(new WorldStatsItem() + { + Code = @"PRK", + Name = @"North Korea", + Continent = @"Asia", + Population = 25248140, + GdpTotal = 40000, + Economy = @"Least developed", + Region = @"Eastern Asia", + Status = @"Country", + Longitude = 127.01, + Latitude = 40.333, + GdpPerPerson = 1584, + Rank = 51, + Unemployment = 13, + OilProduction = 0, + BirthRate = 23, + MedianAge = 55, + Electricity = 35619, + Televisions = 16501842, + PublicDebt = 30, + Internet = 2340760 + }); + this.Add(new WorldStatsItem() + { + Code = @"MDG", + Name = @"Madagascar", + Continent = @"Africa", + Population = 25054161, + GdpTotal = 36860, + Economy = @"Least developed", + Region = @"Eastern Africa", + Status = @"Country", + Longitude = 46.87, + Latitude = -18.82, + GdpPerPerson = 1471, + Rank = 52, + Unemployment = 15, + OilProduction = 0, + BirthRate = 20, + MedianAge = 36, + Electricity = 86068, + Televisions = 9470858, + PublicDebt = 31, + Internet = 1407981 + }); + this.Add(new WorldStatsItem() + { + Code = @"CMR", + Name = @"Cameroon", + Continent = @"Africa", + Population = 24994885, + GdpTotal = 77240, + Economy = @"Developing", + Region = @"Middle Africa", + Status = @"Country", + Longitude = 12.451, + Latitude = 4.365, + GdpPerPerson = 3090, + Rank = 53, + Unemployment = 30, + OilProduction = 85300, + BirthRate = 35, + MedianAge = 19, + Electricity = 4090, + Televisions = 450000, + PublicDebt = 16, + Internet = 370000 + }); + this.Add(new WorldStatsItem() + { + Code = @"CIV", + Name = @"Ivory Coast", + Continent = @"Africa", + Population = 24184810, + GdpTotal = 87120, + Economy = @"Developing", + Region = @"Western Africa", + Status = @"Country", + Longitude = -5.555, + Latitude = 7.538, + GdpPerPerson = 3602, + Rank = 54, + Unemployment = 3, + OilProduction = 1, + BirthRate = 17, + MedianAge = 55, + Electricity = 49302, + Televisions = 9034402, + PublicDebt = 75, + Internet = 300000 + }); + this.Add(new WorldStatsItem() + { + Code = @"TWN", + Name = @"Taiwan", + Continent = @"Asia", + Population = 23508428, + GdpTotal = 1127000, + Economy = @"Developed", + Region = @"Eastern Asia", + Status = @"Country", + Longitude = 120.96, + Latitude = 23.636, + GdpPerPerson = 47940, + Rank = 55, + Unemployment = 4, + OilProduction = 600, + BirthRate = 9, + MedianAge = 36, + Electricity = 235000, + Televisions = 8800000, + PublicDebt = 28, + Internet = 14760000 + }); + this.Add(new WorldStatsItem() + { + Code = @"AUS", + Name = @"Australia", + Continent = @"Oceania", + Population = 23232413, + GdpTotal = 1189000, + Economy = @"Developed", + Region = @"Australia", + Status = @"Country", + Longitude = 135.87, + Latitude = -25.63, + GdpPerPerson = 51178, + Rank = 56, + Unemployment = 4, + OilProduction = 540000, + BirthRate = 13, + MedianAge = 37, + Electricity = 236700, + Televisions = 10150000, + PublicDebt = 16, + Internet = 11240000 + }); + this.Add(new WorldStatsItem() + { + Code = @"LKA", + Name = @"Sri Lanka", + Continent = @"Asia", + Population = 22409381, + GdpTotal = 236700, + Economy = @"Developing", + Region = @"Southern Asia", + Status = @"Country", + Longitude = 80.792, + Latitude = 7.881, + GdpPerPerson = 10563, + Rank = 57, + Unemployment = 6, + OilProduction = 0, + BirthRate = 17, + MedianAge = 30, + Electricity = 8411, + Televisions = 1530000, + PublicDebt = 86, + Internet = 771700 + }); + this.Add(new WorldStatsItem() + { + Code = @"ROU", + Name = @"Romania", + Continent = @"Europe", + Population = 21529967, + GdpTotal = 441000, + Economy = @"Developed", + Region = @"Eastern Europe", + Status = @"Country", + Longitude = 24.974, + Latitude = 45.967, + GdpPerPerson = 20483, + Rank = 58, + Unemployment = 4, + OilProduction = 115000, + BirthRate = 11, + MedianAge = 37, + Electricity = 60520, + Televisions = 5250000, + PublicDebt = 13, + Internet = 12000000 + }); + this.Add(new WorldStatsItem() + { + Code = @"BFA", + Name = @"Burkina Faso", + Continent = @"Africa", + Population = 20107509, + GdpTotal = 32990, + Economy = @"Least developed", + Region = @"Western Africa", + Status = @"Country", + Longitude = -1.567, + Latitude = 12.251, + GdpPerPerson = 1641, + Rank = 59, + Unemployment = 4, + OilProduction = 5, + BirthRate = 21, + MedianAge = 30, + Electricity = 82658, + Televisions = 7478745, + PublicDebt = 14, + Internet = 5896530 + }); + this.Add(new WorldStatsItem() + { + Code = @"NER", + Name = @"Niger", + Continent = @"Africa", + Population = 19245344, + GdpTotal = 20150, + Economy = @"Least developed", + Region = @"Northern Africa", + Status = @"Country", + Longitude = 10.845, + Latitude = 17.92, + GdpPerPerson = 1047, + Rank = 60, + Unemployment = 9, + OilProduction = 5, + BirthRate = 18, + MedianAge = 53, + Electricity = 10652, + Televisions = 8203307, + PublicDebt = 17, + Internet = 157021 + }); + this.Add(new WorldStatsItem() + { + Code = @"MWI", + Name = @"Malawi", + Continent = @"Africa", + Population = 19196246, + GdpTotal = 21200, + Economy = @"Least developed", + Region = @"Eastern Africa", + Status = @"Country", + Longitude = 34.282, + Latitude = -13.26, + GdpPerPerson = 1104, + Rank = 61, + Unemployment = 12, + OilProduction = 3, + BirthRate = 12, + MedianAge = 51, + Electricity = 20676, + Televisions = 4938675, + PublicDebt = 51, + Internet = 139500 + }); + this.Add(new WorldStatsItem() + { + Code = @"KAZ", + Name = @"Kazakhstan", + Continent = @"Asia", + Population = 18556698, + GdpTotal = 460700, + Economy = @"Developing", + Region = @"Central Asia", + Status = @"Country", + Longitude = 66.966, + Latitude = 47.999, + GdpPerPerson = 24827, + Rank = 62, + Unemployment = 7, + OilProduction = 1355000, + BirthRate = 16, + MedianAge = 29, + Electricity = 76340, + Televisions = 3880000, + PublicDebt = 8, + Internet = 1901000 + }); + this.Add(new WorldStatsItem() + { + Code = @"SYR", + Name = @"Syria", + Continent = @"Asia", + Population = 18028549, + GdpTotal = 50280, + Economy = @"Developing", + Region = @"Middle East", + Status = @"Country", + Longitude = 39.062, + Latitude = 34.807, + GdpPerPerson = 2789, + Rank = 63, + Unemployment = 9, + OilProduction = 379000, + BirthRate = 27, + MedianAge = 21, + Electricity = 153200, + Televisions = 1050000, + PublicDebt = 38, + Internet = 3470000 + }); + this.Add(new WorldStatsItem() + { + Code = @"MLI", + Name = @"Mali", + Continent = @"Africa", + Population = 17885245, + GdpTotal = 38090, + Economy = @"Least developed", + Region = @"Western Africa", + Status = @"Country", + Longitude = -1.496, + Latitude = 17.867, + GdpPerPerson = 2130, + Rank = 64, + Unemployment = 4, + OilProduction = 4, + BirthRate = 21, + MedianAge = 46, + Electricity = 72483, + Televisions = 4783188, + PublicDebt = 38, + Internet = 8619386 + }); + this.Add(new WorldStatsItem() + { + Code = @"CHL", + Name = @"Chile", + Continent = @"South America", + Population = 17789267, + GdpTotal = 436100, + Economy = @"Emerging", + Region = @"South America", + Status = @"Country", + Longitude = -69.11, + Latitude = -23.36, + GdpPerPerson = 24515, + Rank = 65, + Unemployment = 7, + OilProduction = 15100, + BirthRate = 15, + MedianAge = 31, + Electricity = 47600, + Televisions = 3150000, + PublicDebt = 4, + Internet = 557000 + }); + this.Add(new WorldStatsItem() + { + Code = @"NLD", + Name = @"Netherlands", + Continent = @"Europe", + Population = 17084719, + GdpTotal = 870800, + Economy = @"Developed", + Region = @"Western Europe", + Status = @"Country", + Longitude = 6.272, + Latitude = 52.971, + GdpPerPerson = 50970, + Rank = 66, + Unemployment = 5, + OilProduction = 76000, + BirthRate = 11, + MedianAge = 40, + Electricity = 94340, + Televisions = 8100000, + PublicDebt = 46, + Internet = 15000000 + }); + this.Add(new WorldStatsItem() + { + Code = @"ECU", + Name = @"Ecuador", + Continent = @"South America", + Population = 16290913, + GdpTotal = 182400, + Economy = @"Developing", + Region = @"South America", + Status = @"Country", + Longitude = -77.98, + Latitude = -1.291, + GdpPerPerson = 11196, + Rank = 67, + Unemployment = 9, + OilProduction = 511100, + BirthRate = 22, + MedianAge = 24, + Electricity = 12940, + Televisions = 2500000, + PublicDebt = 33, + Internet = 1549000 + }); + this.Add(new WorldStatsItem() + { + Code = @"KHM", + Name = @"Cambodia", + Continent = @"Asia", + Population = 16204486, + GdpTotal = 58940, + Economy = @"Least developed", + Region = @"Eastern Asia", + Status = @"Country", + Longitude = 104.96, + Latitude = 12.558, + GdpPerPerson = 3637, + Rank = 68, + Unemployment = 15, + OilProduction = 1, + BirthRate = 17, + MedianAge = 50, + Electricity = 45509, + Televisions = 2489832, + PublicDebt = 22, + Internet = 11512560 + }); + this.Add(new WorldStatsItem() + { + Code = @"ZMB", + Name = @"Zambia", + Continent = @"Africa", + Population = 15972000, + GdpTotal = 65170, + Economy = @"Least developed", + Region = @"Eastern Africa", + Status = @"Country", + Longitude = 26.301, + Latitude = -14.3, + GdpPerPerson = 4080, + Rank = 69, + Unemployment = 50, + OilProduction = 150, + BirthRate = 41, + MedianAge = 17, + Electricity = 8850, + Televisions = 277000, + PublicDebt = 28, + Internet = 500000 + }); + this.Add(new WorldStatsItem() + { + Code = @"GTM", + Name = @"Guatemala", + Continent = @"North America", + Population = 15460732, + GdpTotal = 131800, + Economy = @"Developing", + Region = @"Central America", + Status = @"Country", + Longitude = -90.4, + Latitude = 15.225, + GdpPerPerson = 8525, + Rank = 70, + Unemployment = 3, + OilProduction = 13000, + BirthRate = 29, + MedianAge = 19, + Electricity = 7281, + Televisions = 1323000, + PublicDebt = 21, + Internet = 1320000 + }); + this.Add(new WorldStatsItem() + { + Code = @"SEN", + Name = @"Senegal", + Continent = @"Africa", + Population = 14668522, + GdpTotal = 39720, + Economy = @"Least developed", + Region = @"Western Africa", + Status = @"Country", + Longitude = -14.76, + Latitude = 15.47, + GdpPerPerson = 2708, + Rank = 71, + Unemployment = 48, + OilProduction = 0, + BirthRate = 37, + MedianAge = 19, + Electricity = 2159, + Televisions = 361000, + PublicDebt = 23, + Internet = 820000 + }); + this.Add(new WorldStatsItem() + { + Code = @"ZWE", + Name = @"Zimbabwe", + Continent = @"Africa", + Population = 13805084, + GdpTotal = 28330, + Economy = @"Emerging", + Region = @"Eastern Africa", + Status = @"Country", + Longitude = 29.115, + Latitude = -19.02, + GdpPerPerson = 2052, + Rank = 72, + Unemployment = 80, + OilProduction = 0, + BirthRate = 32, + MedianAge = 18, + Electricity = 9950, + Televisions = 370000, + PublicDebt = 218, + Internet = 1351000 + }); + this.Add(new WorldStatsItem() + { + Code = @"SSD", + Name = @"South Sudan", + Continent = @"Africa", + Population = 13026129, + GdpTotal = 20880, + Economy = @"Least developed", + Region = @"Eastern Africa", + Status = @"Country", + Longitude = 29.708, + Latitude = 7.857, + GdpPerPerson = 1603, + Rank = 73, + Unemployment = 11, + OilProduction = 5, + BirthRate = 8, + MedianAge = 43, + Electricity = 41476, + Televisions = 7716253, + PublicDebt = 41, + Internet = 4569804 + }); + this.Add(new WorldStatsItem() + { + Code = @"GIN", + Name = @"Guinea", + Continent = @"Africa", + Population = 12413867, + GdpTotal = 16080, + Economy = @"Least developed", + Region = @"Western Africa", + Status = @"Country", + Longitude = -9.522, + Latitude = 10.478, + GdpPerPerson = 1295, + Rank = 74, + Unemployment = 15, + OilProduction = 4, + BirthRate = 5, + MedianAge = 49, + Electricity = 15826, + Televisions = 6262180, + PublicDebt = 32, + Internet = 6439493 + }); + this.Add(new WorldStatsItem() + { + Code = @"TCD", + Name = @"Chad", + Continent = @"Africa", + Population = 12075985, + GdpTotal = 30590, + Economy = @"Least developed", + Region = @"Northern Africa", + Status = @"Country", + Longitude = 18.716, + Latitude = 15.46, + GdpPerPerson = 2533, + Rank = 75, + Unemployment = 15, + OilProduction = 2, + BirthRate = 25, + MedianAge = 46, + Electricity = 57747, + Televisions = 8629897, + PublicDebt = 33, + Internet = 6531943 + }); + this.Add(new WorldStatsItem() + { + Code = @"RWA", + Name = @"Rwanda", + Continent = @"Africa", + Population = 11901484, + GdpTotal = 21970, + Economy = @"Least developed", + Region = @"Eastern Africa", + Status = @"Country", + Longitude = 29.867, + Latitude = -1.936, + GdpPerPerson = 1846, + Rank = 76, + Unemployment = 14, + OilProduction = 0, + BirthRate = 23, + MedianAge = 51, + Electricity = 51710, + Televisions = 1363647, + PublicDebt = 36, + Internet = 2425128 + }); + this.Add(new WorldStatsItem() + { + Code = @"BEL", + Name = @"Belgium", + Continent = @"Europe", + Population = 11491346, + GdpTotal = 508600, + Economy = @"Developed", + Region = @"Western Europe", + Status = @"Country", + Longitude = 4.605, + Latitude = 50.911, + GdpPerPerson = 44259, + Rank = 77, + Unemployment = 8, + OilProduction = 9000, + BirthRate = 10, + MedianAge = 41, + Electricity = 80840, + Televisions = 4720000, + PublicDebt = 85, + Internet = 5220000 + }); + this.Add(new WorldStatsItem() + { + Code = @"BDI", + Name = @"Burundi", + Continent = @"Africa", + Population = 11466756, + GdpTotal = 7892, + Economy = @"Least developed", + Region = @"Eastern Africa", + Status = @"Country", + Longitude = 29.913, + Latitude = -3.384, + GdpPerPerson = 688, + Rank = 78, + Unemployment = 12, + OilProduction = 3, + BirthRate = 16, + MedianAge = 35, + Electricity = 43850, + Televisions = 2920735, + PublicDebt = 20, + Internet = 3908915 + }); + this.Add(new WorldStatsItem() + { + Code = @"TUN", + Name = @"Tunisia", + Continent = @"Africa", + Population = 11403800, + GdpTotal = 130800, + Economy = @"Developing", + Region = @"Northern Africa", + Status = @"Country", + Longitude = 9.516, + Latitude = 33.785, + GdpPerPerson = 11470, + Rank = 79, + Unemployment = 14, + OilProduction = 76900, + BirthRate = 16, + MedianAge = 29, + Electricity = 12850, + Televisions = 920000, + PublicDebt = 55, + Internet = 1722000 + }); + this.Add(new WorldStatsItem() + { + Code = @"CUB", + Name = @"Cuba", + Continent = @"North America", + Population = 11147407, + GdpTotal = 132900, + Economy = @"Emerging", + Region = @"Central America", + Status = @"Country", + Longitude = -80.54, + Latitude = 22.567, + GdpPerPerson = 11922, + Rank = 80, + Unemployment = 2, + OilProduction = 58300, + BirthRate = 11, + MedianAge = 37, + Electricity = 16450, + Televisions = 2640000, + PublicDebt = 37, + Internet = 1310000 + }); + this.Add(new WorldStatsItem() + { + Code = @"BOL", + Name = @"Bolivia", + Continent = @"South America", + Population = 11138234, + GdpTotal = 78350, + Economy = @"Emerging", + Region = @"South America", + Status = @"Country", + Longitude = -63.57, + Latitude = -16.3, + GdpPerPerson = 7034, + Rank = 81, + Unemployment = 8, + OilProduction = 46470, + BirthRate = 22, + MedianAge = 23, + Electricity = 5293, + Televisions = 900000, + PublicDebt = 46, + Internet = 1000000 + }); + this.Add(new WorldStatsItem() + { + Code = @"BEN", + Name = @"Benin", + Continent = @"Africa", + Population = 11038805, + GdpTotal = 24310, + Economy = @"Least developed", + Region = @"Western Africa", + Status = @"Country", + Longitude = 2.704, + Latitude = 10.535, + GdpPerPerson = 2202, + Rank = 82, + Unemployment = 2, + OilProduction = 0, + BirthRate = 25, + MedianAge = 40, + Electricity = 13145, + Televisions = 7167916, + PublicDebt = 34, + Internet = 8520122 + }); + this.Add(new WorldStatsItem() + { + Code = @"PRT", + Name = @"Portugal", + Continent = @"Europe", + Population = 10839514, + GdpTotal = 297100, + Economy = @"Developed", + Region = @"Southern Europe", + Status = @"Country", + Longitude = -7.757, + Latitude = 40.815, + GdpPerPerson = 27409, + Rank = 83, + Unemployment = 8, + OilProduction = 9500, + BirthRate = 10, + MedianAge = 39, + Electricity = 49040, + Televisions = 3310000, + PublicDebt = 64, + Internet = 3549000 + }); + this.Add(new WorldStatsItem() + { + Code = @"GRC", + Name = @"Greece", + Continent = @"Europe", + Population = 10768477, + GdpTotal = 290500, + Economy = @"Developed", + Region = @"Southern Europe", + Status = @"Country", + Longitude = 21.871, + Latitude = 39.558, + GdpPerPerson = 26977, + Rank = 84, + Unemployment = 8, + OilProduction = 5687, + BirthRate = 10, + MedianAge = 42, + Electricity = 56130, + Televisions = 2540000, + PublicDebt = 90, + Internet = 2540000 + }); + this.Add(new WorldStatsItem() + { + Code = @"DOM", + Name = @"Dominican Republic", + Continent = @"North America", + Population = 10734247, + GdpTotal = 161900, + Economy = @"Developing", + Region = @"Central America", + Status = @"Country", + Longitude = -70.17, + Latitude = 18.775, + GdpPerPerson = 15083, + Rank = 85, + Unemployment = 16, + OilProduction = 12, + BirthRate = 23, + MedianAge = 25, + Electricity = 12220, + Televisions = 770000, + PublicDebt = 41, + Internet = 1677000 + }); + this.Add(new WorldStatsItem() + { + Code = @"CZE", + Name = @"Czechia", + Continent = @"Europe", + Population = 10674723, + GdpTotal = 350900, + Economy = @"Developed", + Region = @"Eastern Europe", + Status = @"Country", + Longitude = 15.461, + Latitude = 49.807, + GdpPerPerson = 32872, + Rank = 86, + Unemployment = 7, + OilProduction = 18030, + BirthRate = 9, + MedianAge = 40, + Electricity = 77380, + Televisions = 3405834, + PublicDebt = 26, + Internet = 4400000 + }); + this.Add(new WorldStatsItem() + { + Code = @"HTI", + Name = @"Haiti", + Continent = @"North America", + Population = 10646714, + GdpTotal = 19340, + Economy = @"Least developed", + Region = @"Central America", + Status = @"Country", + Longitude = -72.23, + Latitude = 19.342, + GdpPerPerson = 1817, + Rank = 87, + Unemployment = 15, + OilProduction = 2, + BirthRate = 9, + MedianAge = 52, + Electricity = 12871, + Televisions = 4329511, + PublicDebt = 25, + Internet = 4777792 + }); + this.Add(new WorldStatsItem() + { + Code = @"JOR", + Name = @"Jordan", + Continent = @"Asia", + Population = 10248069, + GdpTotal = 86190, + Economy = @"Developing", + Region = @"Middle East", + Status = @"Country", + Longitude = 38.125, + Latitude = 32.309, + GdpPerPerson = 8410, + Rank = 88, + Unemployment = 14, + OilProduction = 0, + BirthRate = 20, + MedianAge = 24, + Electricity = 9074, + Televisions = 500000, + PublicDebt = 72, + Internet = 1127000 + }); + this.Add(new WorldStatsItem() + { + Code = @"AZE", + Name = @"Azerbaijan", + Continent = @"Asia", + Population = 9961396, + GdpTotal = 167900, + Economy = @"Developing", + Region = @"Middle East", + Status = @"Country", + Longitude = 48.401, + Latitude = 40.344, + GdpPerPerson = 16855, + Rank = 89, + Unemployment = 1, + OilProduction = 934700, + BirthRate = 18, + MedianAge = 28, + Electricity = 23800, + Televisions = 170000, + PublicDebt = 7, + Internet = 1036000 + }); + this.Add(new WorldStatsItem() + { + Code = @"SWE", + Name = @"Sweden", + Continent = @"Europe", + Population = 9960487, + GdpTotal = 498100, + Economy = @"Developed", + Region = @"Northern Europe", + Status = @"Country", + Longitude = 17.594, + Latitude = 64.621, + GdpPerPerson = 50008, + Rank = 90, + Unemployment = 6, + OilProduction = 2350, + BirthRate = 10, + MedianAge = 41, + Electricity = 153200, + Televisions = 4600000, + PublicDebt = 42, + Internet = 7000000 + }); + this.Add(new WorldStatsItem() + { + Code = @"HUN", + Name = @"Hungary", + Continent = @"Europe", + Population = 9850845, + GdpTotal = 267600, + Economy = @"Developed", + Region = @"Eastern Europe", + Status = @"Country", + Longitude = 19.485, + Latitude = 47.153, + GdpPerPerson = 27165, + Rank = 91, + Unemployment = 7, + OilProduction = 42180, + BirthRate = 10, + MedianAge = 39, + Electricity = 33690, + Televisions = 4420000, + PublicDebt = 67, + Internet = 4200000 + }); + this.Add(new WorldStatsItem() + { + Code = @"BLR", + Name = @"Belarus", + Continent = @"Europe", + Population = 9549747, + GdpTotal = 165400, + Economy = @"Developing", + Region = @"Eastern Europe", + Status = @"Country", + Longitude = 27.943, + Latitude = 53.705, + GdpPerPerson = 17320, + Rank = 92, + Unemployment = 15, + OilProduction = 5, + BirthRate = 7, + MedianAge = 33, + Electricity = 84070, + Televisions = 3348094, + PublicDebt = 6, + Internet = 3754027 + }); + this.Add(new WorldStatsItem() + { + Code = @"HND", + Name = @"Honduras", + Continent = @"North America", + Population = 9038741, + GdpTotal = 43190, + Economy = @"Developing", + Region = @"Central America", + Status = @"Country", + Longitude = -86.74, + Latitude = 14.889, + GdpPerPerson = 4778, + Rank = 93, + Unemployment = 28, + OilProduction = 0, + BirthRate = 27, + MedianAge = 20, + Electricity = 5339, + Televisions = 570000, + PublicDebt = 24, + Internet = 344100 + }); + this.Add(new WorldStatsItem() + { + Code = @"AUT", + Name = @"Austria", + Continent = @"Europe", + Population = 8754413, + GdpTotal = 416600, + Economy = @"Developed", + Region = @"Western Europe", + Status = @"Country", + Longitude = 14.987, + Latitude = 47.624, + GdpPerPerson = 47587, + Rank = 94, + Unemployment = 4, + OilProduction = 23320, + BirthRate = 9, + MedianAge = 42, + Electricity = 61020, + Televisions = 10150000, + PublicDebt = 59, + Internet = 4277000 + }); + this.Add(new WorldStatsItem() + { + Code = @"TJK", + Name = @"Tajikistan", + Continent = @"Asia", + Population = 8468555, + GdpTotal = 25810, + Economy = @"Developing", + Region = @"Central Asia", + Status = @"Country", + Longitude = 71.234, + Latitude = 38.86, + GdpPerPerson = 3048, + Rank = 95, + Unemployment = 11, + OilProduction = 5, + BirthRate = 8, + MedianAge = 44, + Electricity = 56534, + Televisions = 6542566, + PublicDebt = 44, + Internet = 4521889 + }); + this.Add(new WorldStatsItem() + { + Code = @"ISR", + Name = @"Israel", + Continent = @"Asia", + Population = 8299706, + GdpTotal = 297000, + Economy = @"Developed", + Region = @"Middle East", + Status = @"Country", + Longitude = 34.977, + Latitude = 30.748, + GdpPerPerson = 35784, + Rank = 96, + Unemployment = 7, + OilProduction = 100, + BirthRate = 20, + MedianAge = 29, + Electricity = 46850, + Televisions = 1690000, + PublicDebt = 81, + Internet = 2000000 + }); + this.Add(new WorldStatsItem() + { + Code = @"CHE", + Name = @"Switzerland", + Continent = @"Europe", + Population = 8236303, + GdpTotal = 496300, + Economy = @"Developed", + Region = @"Western Europe", + Status = @"Country", + Longitude = 7.865, + Latitude = 46.729, + GdpPerPerson = 60258, + Rank = 97, + Unemployment = 3, + OilProduction = 3202, + BirthRate = 10, + MedianAge = 41, + Electricity = 56100, + Televisions = 3310000, + PublicDebt = 44, + Internet = 4610000 + }); + this.Add(new WorldStatsItem() + { + Code = @"TGO", + Name = @"Togo", + Continent = @"Africa", + Population = 7965055, + GdpTotal = 11610, + Economy = @"Least developed", + Region = @"Western Africa", + Status = @"Country", + Longitude = 1.146, + Latitude = 6.799, + GdpPerPerson = 1458, + Rank = 98, + Unemployment = 3, + OilProduction = 4, + BirthRate = 9, + MedianAge = 37, + Electricity = 28181, + Televisions = 2309082, + PublicDebt = 41, + Internet = 789456 + }); + this.Add(new WorldStatsItem() + { + Code = @"SOM", + Name = @"Somalia", + Continent = @"Africa", + Population = 7531386, + GdpTotal = 4719, + Economy = @"Least developed", + Region = @"Eastern Africa", + Status = @"Country", + Longitude = 44.134, + Latitude = 3.077, + GdpPerPerson = 627, + Rank = 99, + Unemployment = 2, + OilProduction = 4, + BirthRate = 12, + MedianAge = 50, + Electricity = 29272, + Televisions = 1648650, + PublicDebt = 22, + Internet = 3227211 + }); + this.Add(new WorldStatsItem() + { + Code = @"HKG", + Name = @"Hong Kong", + Continent = @"Asia", + Population = 7191503, + GdpTotal = 427400, + Economy = @"Developing", + Region = @"Eastern Asia", + Status = @"Dependency", + Longitude = 114.08, + Latitude = 22.38, + GdpPerPerson = 59431, + Rank = 100, + Unemployment = 3, + OilProduction = 0, + BirthRate = 8, + MedianAge = 55, + Electricity = 86792, + Televisions = 4084025, + PublicDebt = 35, + Internet = 3907543 + }); + this.Add(new WorldStatsItem() + { + Code = @"LAO", + Name = @"Laos", + Continent = @"Asia", + Population = 7126706, + GdpTotal = 40960, + Economy = @"Least developed", + Region = @"Eastern Asia", + Status = @"Country", + Longitude = 102.36, + Latitude = 20.171, + GdpPerPerson = 5747, + Rank = 101, + Unemployment = 8, + OilProduction = 0, + BirthRate = 6, + MedianAge = 34, + Electricity = 7093, + Televisions = 4503172, + PublicDebt = 19, + Internet = 5426041 + }); + this.Add(new WorldStatsItem() + { + Code = @"SRB", + Name = @"Serbia", + Continent = @"Europe", + Population = 7111024, + GdpTotal = 101800, + Economy = @"Developing", + Region = @"Southern Europe", + Status = @"Country", + Longitude = 20.908, + Latitude = 44.206, + GdpPerPerson = 14316, + Rank = 102, + Unemployment = 5, + OilProduction = 4, + BirthRate = 13, + MedianAge = 48, + Electricity = 30150, + Televisions = 1316607, + PublicDebt = 17, + Internet = 4104775 + }); + this.Add(new WorldStatsItem() + { + Code = @"BGR", + Name = @"Bulgaria", + Continent = @"Europe", + Population = 7101510, + GdpTotal = 143100, + Economy = @"Developed", + Region = @"Eastern Europe", + Status = @"Country", + Longitude = 25.465, + Latitude = 42.741, + GdpPerPerson = 20151, + Rank = 103, + Unemployment = 8, + OilProduction = 3661, + BirthRate = 10, + MedianAge = 41, + Electricity = 45700, + Televisions = 3310000, + PublicDebt = 11, + Internet = 1899000 + }); + this.Add(new WorldStatsItem() + { + Code = @"PRY", + Name = @"Paraguay", + Continent = @"South America", + Population = 6943739, + GdpTotal = 64670, + Economy = @"Emerging", + Region = @"South America", + Status = @"Country", + Longitude = -58.44, + Latitude = -23.42, + GdpPerPerson = 9313, + Rank = 104, + Unemployment = 6, + OilProduction = 0, + BirthRate = 28, + MedianAge = 22, + Electricity = 70000, + Televisions = 990000, + PublicDebt = 27, + Internet = 280000 + }); + this.Add(new WorldStatsItem() + { + Code = @"PNG", + Name = @"Papua New Guinea", + Continent = @"Oceania", + Population = 6909701, + GdpTotal = 28020, + Economy = @"Developing", + Region = @"Melanesia", + Status = @"Country", + Longitude = 143.62, + Latitude = -5.836, + GdpPerPerson = 4055, + Rank = 105, + Unemployment = 2, + OilProduction = 47800, + BirthRate = 28, + MedianAge = 22, + Electricity = 3698, + Televisions = 59841, + PublicDebt = 40, + Internet = 110000 + }); + this.Add(new WorldStatsItem() + { + Code = @"LBY", + Name = @"Libya", + Continent = @"Africa", + Population = 6653210, + GdpTotal = 90890, + Economy = @"Developing", + Region = @"Northern Africa", + Status = @"Country", + Longitude = 17.23, + Latitude = 26.339, + GdpPerPerson = 13661, + Rank = 106, + Unemployment = 30, + OilProduction = 1712000, + BirthRate = 26, + MedianAge = 24, + Electricity = 21150, + Televisions = 730000, + PublicDebt = 5, + Internet = 260000 + }); + this.Add(new WorldStatsItem() + { + Code = @"LBN", + Name = @"Lebanon", + Continent = @"Asia", + Population = 6229794, + GdpTotal = 85160, + Economy = @"Developing", + Region = @"Middle East", + Status = @"Country", + Longitude = 36.042, + Latitude = 34.168, + GdpPerPerson = 13670, + Rank = 107, + Unemployment = 20, + OilProduction = 0, + BirthRate = 18, + MedianAge = 29, + Electricity = 9183, + Televisions = 1180000, + PublicDebt = 187, + Internet = 950000 + }); + this.Add(new WorldStatsItem() + { + Code = @"SLV", + Name = @"El Salvador", + Continent = @"North America", + Population = 6172011, + GdpTotal = 54790, + Economy = @"Developing", + Region = @"Central America", + Status = @"Country", + Longitude = -88.91, + Latitude = 13.798, + GdpPerPerson = 8877, + Rank = 108, + Unemployment = 6, + OilProduction = 0, + BirthRate = 26, + MedianAge = 22, + Electricity = 5316, + Televisions = 600000, + PublicDebt = 37, + Internet = 700000 + }); + this.Add(new WorldStatsItem() + { + Code = @"SLE", + Name = @"Sierra Leone", + Continent = @"Africa", + Population = 6163195, + GdpTotal = 10640, + Economy = @"Least developed", + Region = @"Western Africa", + Status = @"Country", + Longitude = -11.78, + Latitude = 8.452, + GdpPerPerson = 1726, + Rank = 109, + Unemployment = 14, + OilProduction = 4, + BirthRate = 6, + MedianAge = 37, + Electricity = 37412, + Televisions = 2727270, + PublicDebt = 6, + Internet = 223239 + }); + this.Add(new WorldStatsItem() + { + Code = @"ARE", + Name = @"United Arab Emirates", + Continent = @"Asia", + Population = 6072475, + GdpTotal = 667200, + Economy = @"Developing", + Region = @"Middle East", + Status = @"Country", + Longitude = 54.192, + Latitude = 23.795, + GdpPerPerson = 109873, + Rank = 110, + Unemployment = 2, + OilProduction = 2510000, + BirthRate = 16, + MedianAge = 30, + Electricity = 57060, + Televisions = 310000, + PublicDebt = 21, + Internet = 2300000 + }); + this.Add(new WorldStatsItem() + { + Code = @"NIC", + Name = @"Nicaragua", + Continent = @"North America", + Population = 6025951, + GdpTotal = 33550, + Economy = @"Developing", + Region = @"Central America", + Status = @"Country", + Longitude = -85.09, + Latitude = 12.523, + GdpPerPerson = 5568, + Rank = 111, + Unemployment = 5, + OilProduction = 0, + BirthRate = 24, + MedianAge = 22, + Electricity = 2778, + Televisions = 320000, + PublicDebt = 63, + Internet = 155000 + }); + this.Add(new WorldStatsItem() + { + Code = @"ERI", + Name = @"Eritrea", + Continent = @"Africa", + Population = 5918919, + GdpTotal = 9169, + Economy = @"Least developed", + Region = @"Eastern Africa", + Status = @"Country", + Longitude = 39.772, + Latitude = 15.191, + GdpPerPerson = 1549, + Rank = 112, + Unemployment = 9, + OilProduction = 5, + BirthRate = 17, + MedianAge = 54, + Electricity = 67474, + Televisions = 2078077, + PublicDebt = 41, + Internet = 1067843 + }); + this.Add(new WorldStatsItem() + { + Code = @"SGP", + Name = @"Singapore", + Continent = @"Asia", + Population = 5888926, + GdpTotal = 487900, + Economy = @"Developing", + Region = @"Eastern Asia", + Status = @"Country", + Longitude = 103.82, + Latitude = 1.356, + GdpPerPerson = 82850, + Rank = 113, + Unemployment = 2, + OilProduction = 9836, + BirthRate = 9, + MedianAge = 38, + Electricity = 39440, + Televisions = 1330000, + PublicDebt = 96, + Internet = 3105000 + }); + this.Add(new WorldStatsItem() + { + Code = @"KGZ", + Name = @"Kyrgyzstan", + Continent = @"Asia", + Population = 5789122, + GdpTotal = 21010, + Economy = @"Developing", + Region = @"Central Asia", + Status = @"Country", + Longitude = 74.738, + Latitude = 41.224, + GdpPerPerson = 3629, + Rank = 114, + Unemployment = 12, + OilProduction = 1, + BirthRate = 21, + MedianAge = 42, + Electricity = 16640, + Televisions = 2101152, + PublicDebt = 15, + Internet = 738896 + }); + this.Add(new WorldStatsItem() + { + Code = @"CAF", + Name = @"Central African Republic", + Continent = @"Africa", + Population = 5625118, + GdpTotal = 3206, + Economy = @"Least developed", + Region = @"Middle Africa", + Status = @"Country", + Longitude = 20.917, + Latitude = 6.633, + GdpPerPerson = 570, + Rank = 115, + Unemployment = 8, + OilProduction = 5, + BirthRate = 13, + MedianAge = 32, + Electricity = 71424, + Televisions = 635931, + PublicDebt = 29, + Internet = 1933873 + }); + this.Add(new WorldStatsItem() + { + Code = @"DNK", + Name = @"Denmark", + Continent = @"Europe", + Population = 5605948, + GdpTotal = 264800, + Economy = @"Developed", + Region = @"Northern Europe", + Status = @"Country", + Longitude = 9.348, + Latitude = 56.13, + GdpPerPerson = 47236, + Rank = 116, + Unemployment = 3, + OilProduction = 342000, + BirthRate = 11, + MedianAge = 40, + Electricity = 43350, + Televisions = 3121000, + PublicDebt = 26, + Internet = 3500000 + }); + this.Add(new WorldStatsItem() + { + Code = @"FIN", + Name = @"Finland", + Continent = @"Europe", + Population = 5491218, + GdpTotal = 224137, + Economy = @"Developed", + Region = @"Northern Europe", + Status = @"Country", + Longitude = 25.988, + Latitude = 61.841, + GdpPerPerson = 40817, + Rank = 117, + Unemployment = 7, + OilProduction = 8951, + BirthRate = 10, + MedianAge = 42, + Electricity = 73470, + Televisions = 3200000, + PublicDebt = 36, + Internet = 3600000 + }); + this.Add(new WorldStatsItem() + { + Code = @"SVK", + Name = @"Slovakia", + Continent = @"Europe", + Population = 5445829, + GdpTotal = 168800, + Economy = @"Developed", + Region = @"Eastern Europe", + Status = @"Country", + Longitude = 18.877, + Latitude = 48.702, + GdpPerPerson = 30996, + Rank = 118, + Unemployment = 8, + OilProduction = 12840, + BirthRate = 11, + MedianAge = 37, + Electricity = 29890, + Televisions = 2620000, + PublicDebt = 36, + Internet = 2350000 + }); + this.Add(new WorldStatsItem() + { + Code = @"TKM", + Name = @"Turkmenistan", + Continent = @"Asia", + Population = 5351277, + GdpTotal = 94720, + Economy = @"Developing", + Region = @"Central Asia", + Status = @"Country", + Longitude = 59.562, + Latitude = 38.975, + GdpPerPerson = 17700, + Rank = 119, + Unemployment = 11, + OilProduction = 4, + BirthRate = 11, + MedianAge = 43, + Electricity = 91281, + Televisions = 2935468, + PublicDebt = 17, + Internet = 3203210 + }); + this.Add(new WorldStatsItem() + { + Code = @"NOR", + Name = @"Norway", + Continent = @"Europe", + Population = 5320045, + GdpTotal = 364700, + Economy = @"Developed", + Region = @"Northern Europe", + Status = @"Country", + Longitude = 9.66, + Latitude = 60.712, + GdpPerPerson = 68552, + Rank = 120, + Unemployment = 3, + OilProduction = 2560000, + BirthRate = 11, + MedianAge = 39, + Electricity = 135800, + Televisions = 2030000, + PublicDebt = 83, + Internet = 3800000 + }); + this.Add(new WorldStatsItem() + { + Code = @"IRL", + Name = @"Ireland", + Continent = @"Europe", + Population = 5011102, + GdpTotal = 322000, + Economy = @"Developed", + Region = @"Northern Europe", + Status = @"Country", + Longitude = -8.209, + Latitude = 53.42, + GdpPerPerson = 64257, + Rank = 121, + Unemployment = 5, + OilProduction = 0, + BirthRate = 14, + MedianAge = 35, + Electricity = 24130, + Televisions = 1820000, + PublicDebt = 25, + Internet = 1708000 + }); + this.Add(new WorldStatsItem() + { + Code = @"COG", + Name = @"Congo", + Continent = @"Africa", + Population = 4954674, + GdpTotal = 30270, + Economy = @"Developing", + Region = @"Middle Africa", + Status = @"Country", + Longitude = 16.264, + Latitude = -0.07, + GdpPerPerson = 6109, + Rank = 122, + Unemployment = 13, + OilProduction = 4, + BirthRate = 11, + MedianAge = 52, + Electricity = 83556, + Televisions = 1560800, + PublicDebt = 6, + Internet = 2650237 + }); + this.Add(new WorldStatsItem() + { + Code = @"CRI", + Name = @"Costa Rica", + Continent = @"North America", + Population = 4930258, + GdpTotal = 79260, + Economy = @"Emerging", + Region = @"Central America", + Status = @"Country", + Longitude = -83.91, + Latitude = 9.92, + GdpPerPerson = 16076, + Rank = 123, + Unemployment = 5, + OilProduction = 0, + BirthRate = 18, + MedianAge = 27, + Electricity = 8349, + Televisions = 525000, + PublicDebt = 47, + Internet = 1500000 + }); + this.Add(new WorldStatsItem() + { + Code = @"GEO", + Name = @"Georgia", + Continent = @"Asia", + Population = 4926330, + GdpTotal = 37270, + Economy = @"Developing", + Region = @"Middle East", + Status = @"Country", + Longitude = 43.257, + Latitude = 42.162, + GdpPerPerson = 7565, + Rank = 124, + Unemployment = 15, + OilProduction = 5, + BirthRate = 10, + MedianAge = 43, + Electricity = 44936, + Televisions = 2728128, + PublicDebt = 29, + Internet = 3844448 + }); + this.Add(new WorldStatsItem() + { + Code = @"LBR", + Name = @"Liberia", + Continent = @"Africa", + Population = 4689021, + GdpTotal = 3881, + Economy = @"Least developed", + Region = @"Western Africa", + Status = @"Country", + Longitude = -9.454, + Latitude = 6.445, + GdpPerPerson = 828, + Rank = 125, + Unemployment = 4, + OilProduction = 0, + BirthRate = 8, + MedianAge = 35, + Electricity = 89626, + Televisions = 3065112, + PublicDebt = 38, + Internet = 1475304 + }); + this.Add(new WorldStatsItem() + { + Code = @"PSE", + Name = @"Palestine", + Continent = @"Asia", + Population = 4543126, + GdpTotal = 21221, + Economy = @"Developing", + Region = @"Middle East", + Status = @"Disputed", + Longitude = 35.347, + Latitude = 32.031, + GdpPerPerson = 4671, + Rank = 126, + Unemployment = 9, + OilProduction = 1, + BirthRate = 10, + MedianAge = 48, + Electricity = 45973, + Televisions = 2774033, + PublicDebt = 16, + Internet = 1718915 + }); + this.Add(new WorldStatsItem() + { + Code = @"NZL", + Name = @"New Zealand", + Continent = @"Oceania", + Population = 4510327, + GdpTotal = 174800, + Economy = @"Developed", + Region = @"Australia", + Status = @"Country", + Longitude = 169.42, + Latitude = -44.86, + GdpPerPerson = 38756, + Rank = 127, + Unemployment = 4, + OilProduction = 25880, + BirthRate = 14, + MedianAge = 36, + Electricity = 42060, + Televisions = 1926000, + PublicDebt = 21, + Internet = 3360000 + }); + this.Add(new WorldStatsItem() + { + Code = @"HRV", + Name = @"Croatia", + Continent = @"Europe", + Population = 4292095, + GdpTotal = 94240, + Economy = @"Developed", + Region = @"Southern Europe", + Status = @"Country", + Longitude = 16.847, + Latitude = 45.674, + GdpPerPerson = 21957, + Rank = 128, + Unemployment = 12, + OilProduction = 17100, + BirthRate = 10, + MedianAge = 41, + Electricity = 11990, + Televisions = 1220000, + PublicDebt = 48, + Internet = 1995000 + }); + this.Add(new WorldStatsItem() + { + Code = @"BIH", + Name = @"Bosnia", + Continent = @"Europe", + Population = 3856181, + GdpTotal = 42530, + Economy = @"Developing", + Region = @"Southern Europe", + Status = @"Country", + Longitude = 17.66, + Latitude = 43.918, + GdpPerPerson = 11029, + Rank = 129, + Unemployment = 46, + OilProduction = 0, + BirthRate = 9, + MedianAge = 39, + Electricity = 12220, + Televisions = 0, + PublicDebt = 34, + Internet = 1055000 + }); + this.Add(new WorldStatsItem() + { + Code = @"MRT", + Name = @"Mauritania", + Continent = @"Africa", + Population = 3758571, + GdpTotal = 16710, + Economy = @"Least developed", + Region = @"Western Africa", + Status = @"Country", + Longitude = -8.89, + Latitude = 20.387, + GdpPerPerson = 4446, + Rank = 130, + Unemployment = 9, + OilProduction = 5, + BirthRate = 25, + MedianAge = 50, + Electricity = 15176, + Televisions = 2558125, + PublicDebt = 29, + Internet = 2098221 + }); + this.Add(new WorldStatsItem() + { + Code = @"PAN", + Name = @"Panama", + Continent = @"North America", + Population = 3753142, + GdpTotal = 93120, + Economy = @"Developing", + Region = @"Central America", + Status = @"Country", + Longitude = -81.17, + Latitude = 8.457, + GdpPerPerson = 24811, + Rank = 131, + Unemployment = 6, + OilProduction = 0, + BirthRate = 21, + MedianAge = 27, + Electricity = 5661, + Televisions = 510000, + PublicDebt = 53, + Internet = 525200 + }); + this.Add(new WorldStatsItem() + { + Code = @"SOL", + Name = @"Somaliland", + Continent = @"Africa", + Population = 3500000, + GdpTotal = 12250, + Economy = @"Developing", + Region = @"Eastern Africa", + Status = @"Indeterminate", + Longitude = 45.798, + Latitude = 9.748, + GdpPerPerson = 3500, + Rank = 132, + Unemployment = 1, + OilProduction = 4, + BirthRate = 13, + MedianAge = 43, + Electricity = 73247, + Televisions = 2235408, + PublicDebt = 21, + Internet = 1300238 + }); + this.Add(new WorldStatsItem() + { + Code = @"MDA", + Name = @"Moldova", + Continent = @"Europe", + Population = 3474121, + GdpTotal = 18540, + Economy = @"Developing", + Region = @"Eastern Europe", + Status = @"Country", + Longitude = 28.552, + Latitude = 47.515, + GdpPerPerson = 5337, + Rank = 133, + Unemployment = 2, + OilProduction = 0, + BirthRate = 11, + MedianAge = 34, + Electricity = 3881, + Televisions = 1260000, + PublicDebt = 23, + Internet = 700000 + }); + this.Add(new WorldStatsItem() + { + Code = @"OMN", + Name = @"Oman", + Continent = @"Asia", + Population = 3424386, + GdpTotal = 173100, + Economy = @"Developing", + Region = @"Middle East", + Status = @"Country", + Longitude = 57.563, + Latitude = 22.014, + GdpPerPerson = 50549, + Rank = 134, + Unemployment = 15, + OilProduction = 710800, + BirthRate = 35, + MedianAge = 19, + Electricity = 11890, + Televisions = 1600000, + PublicDebt = 4, + Internet = 340000 + }); + this.Add(new WorldStatsItem() + { + Code = @"URY", + Name = @"Uruguay", + Continent = @"South America", + Population = 3360148, + GdpTotal = 73250, + Economy = @"Emerging", + Region = @"South America", + Status = @"Country", + Longitude = -55.78, + Latitude = -32.51, + GdpPerPerson = 21800, + Rank = 135, + Unemployment = 9, + OilProduction = 27830, + BirthRate = 14, + MedianAge = 33, + Electricity = 9200, + Televisions = 782000, + PublicDebt = 65, + Internet = 968000 + }); + this.Add(new WorldStatsItem() + { + Code = @"PRI", + Name = @"Puerto Rico", + Continent = @"North America", + Population = 3351827, + GdpTotal = 131000, + Economy = @"Developing", + Region = @"Central America", + Status = @"Dependency", + Longitude = -66.61, + Latitude = 18.235, + GdpPerPerson = 39083, + Rank = 136, + Unemployment = 5, + OilProduction = 3, + BirthRate = 11, + MedianAge = 32, + Electricity = 19677, + Televisions = 1917997, + PublicDebt = 25, + Internet = 608062 + }); + this.Add(new WorldStatsItem() + { + Code = @"MNG", + Name = @"Mongolia", + Continent = @"Asia", + Population = 3068243, + GdpTotal = 37000, + Economy = @"Developing", + Region = @"Eastern Asia", + Status = @"Country", + Longitude = 103.82, + Latitude = 46.856, + GdpPerPerson = 12059, + Rank = 137, + Unemployment = 4, + OilProduction = 1, + BirthRate = 7, + MedianAge = 35, + Electricity = 3875, + Televisions = 1726758, + PublicDebt = 17, + Internet = 562546 + }); + this.Add(new WorldStatsItem() + { + Code = @"ALB", + Name = @"Albania", + Continent = @"Europe", + Population = 3047987, + GdpTotal = 33900, + Economy = @"Developing", + Region = @"Southern Europe", + Status = @"Country", + Longitude = 19.964, + Latitude = 40.759, + GdpPerPerson = 11122, + Rank = 138, + Unemployment = 13, + OilProduction = 7006, + BirthRate = 15, + MedianAge = 30, + Electricity = 5385, + Televisions = 700000, + PublicDebt = 51, + Internet = 471200 + }); + this.Add(new WorldStatsItem() + { + Code = @"ARM", + Name = @"Armenia", + Continent = @"Asia", + Population = 3045191, + GdpTotal = 26300, + Economy = @"Developing", + Region = @"Middle East", + Status = @"Country", + Longitude = 44.646, + Latitude = 40.618, + GdpPerPerson = 8637, + Rank = 139, + Unemployment = 4, + OilProduction = 4, + BirthRate = 14, + MedianAge = 39, + Electricity = 71042, + Televisions = 2390201, + PublicDebt = 9, + Internet = 488333 + }); + this.Add(new WorldStatsItem() + { + Code = @"JAM", + Name = @"Jamaica", + Continent = @"North America", + Population = 2990561, + GdpTotal = 25390, + Economy = @"Developing", + Region = @"Central America", + Status = @"Country", + Longitude = -77.27, + Latitude = 18.119, + GdpPerPerson = 8490, + Rank = 140, + Unemployment = 10, + OilProduction = 0, + BirthRate = 20, + MedianAge = 23, + Electricity = 6985, + Televisions = 460000, + PublicDebt = 127, + Internet = 1500000 + }); + this.Add(new WorldStatsItem() + { + Code = @"KWT", + Name = @"Kuwait", + Continent = @"Asia", + Population = 2875422, + GdpTotal = 301100, + Economy = @"Developing", + Region = @"Middle East", + Status = @"Country", + Longitude = 47.487, + Latitude = 29.315, + GdpPerPerson = 104715, + Rank = 141, + Unemployment = 2, + OilProduction = 2440000, + BirthRate = 22, + MedianAge = 26, + Electricity = 41110, + Televisions = 875000, + PublicDebt = 10, + Internet = 900000 + }); + this.Add(new WorldStatsItem() + { + Code = @"LTU", + Name = @"Lithuania", + Continent = @"Europe", + Population = 2823859, + GdpTotal = 85620, + Economy = @"Developed", + Region = @"Northern Europe", + Status = @"Country", + Longitude = 23.838, + Latitude = 55.152, + GdpPerPerson = 30320, + Rank = 142, + Unemployment = 4, + OilProduction = 13160, + BirthRate = 9, + MedianAge = 39, + Electricity = 13480, + Televisions = 1700000, + PublicDebt = 17, + Internet = 1330000 + }); + this.Add(new WorldStatsItem() + { + Code = @"NAM", + Name = @"Namibia", + Continent = @"Africa", + Population = 2484780, + GdpTotal = 25990, + Economy = @"Developing", + Region = @"Southern Africa", + Status = @"Country", + Longitude = 16.944, + Latitude = -20.52, + GdpPerPerson = 10460, + Rank = 143, + Unemployment = 5, + OilProduction = 0, + BirthRate = 23, + MedianAge = 21, + Electricity = 1688, + Televisions = 60000, + PublicDebt = 22, + Internet = 101000 + }); + this.Add(new WorldStatsItem() + { + Code = @"QAT", + Name = @"Qatar", + Continent = @"Asia", + Population = 2314307, + GdpTotal = 334500, + Economy = @"Developing", + Region = @"Middle East", + Status = @"Country", + Longitude = 51.182, + Latitude = 25.359, + GdpPerPerson = 144536, + Rank = 144, + Unemployment = 1, + OilProduction = 797500, + BirthRate = 16, + MedianAge = 31, + Electricity = 13540, + Televisions = 230000, + PublicDebt = 11, + Internet = 351000 + }); + this.Add(new WorldStatsItem() + { + Code = @"BWA", + Name = @"Botswana", + Continent = @"Africa", + Population = 2214858, + GdpTotal = 35900, + Economy = @"Developing", + Region = @"Southern Africa", + Status = @"Country", + Longitude = 24.671, + Latitude = -22.32, + GdpPerPerson = 16209, + Rank = 145, + Unemployment = 8, + OilProduction = 0, + BirthRate = 23, + MedianAge = 21, + Electricity = 912, + Televisions = 31000, + PublicDebt = 5, + Internet = 80000 + }); + this.Add(new WorldStatsItem() + { + Code = @"MKD", + Name = @"North Macedonia", + Continent = @"Europe", + Population = 2103721, + GdpTotal = 29520, + Economy = @"Developing", + Region = @"Southern Europe", + Status = @"Country", + Longitude = 21.727, + Latitude = 41.604, + GdpPerPerson = 14032, + Rank = 146, + Unemployment = 35, + OilProduction = 0, + BirthRate = 12, + MedianAge = 35, + Electricity = 6051, + Televisions = 510000, + PublicDebt = 31, + Internet = 685000 + }); + this.Add(new WorldStatsItem() + { + Code = @"GMB", + Name = @"Gambia", + Continent = @"Africa", + Population = 2051363, + GdpTotal = 3387, + Economy = @"Least developed", + Region = @"Western Africa", + Status = @"Country", + Longitude = -15.32, + Latitude = 13.438, + GdpPerPerson = 1651, + Rank = 147, + Unemployment = 7, + OilProduction = 1, + BirthRate = 11, + MedianAge = 37, + Electricity = 9769, + Televisions = 1486289, + PublicDebt = 30, + Internet = 187890 + }); + this.Add(new WorldStatsItem() + { + Code = @"SVN", + Name = @"Slovenia", + Continent = @"Europe", + Population = 1972126, + GdpTotal = 68350, + Economy = @"Developed", + Region = @"Southern Europe", + Status = @"Country", + Longitude = 14.947, + Latitude = 46.146, + GdpPerPerson = 34658, + Rank = 148, + Unemployment = 8, + OilProduction = 5, + BirthRate = 9, + MedianAge = 41, + Electricity = 14900, + Televisions = 710000, + PublicDebt = 24, + Internet = 1300000 + }); + this.Add(new WorldStatsItem() + { + Code = @"LSO", + Name = @"Lesotho", + Continent = @"Africa", + Population = 1958042, + GdpTotal = 6019, + Economy = @"Least developed", + Region = @"Southern Africa", + Status = @"Country", + Longitude = 28.221, + Latitude = -29.61, + GdpPerPerson = 3074, + Rank = 149, + Unemployment = 12, + OilProduction = 2, + BirthRate = 8, + MedianAge = 32, + Electricity = 20229, + Televisions = 1457517, + PublicDebt = 14, + Internet = 1375222 + }); + this.Add(new WorldStatsItem() + { + Code = @"LVA", + Name = @"Latvia", + Continent = @"Europe", + Population = 1944643, + GdpTotal = 50650, + Economy = @"Developed", + Region = @"Northern Europe", + Status = @"Country", + Longitude = 26.505, + Latitude = 56.755, + GdpPerPerson = 26046, + Rank = 150, + Unemployment = 6, + OilProduction = 0, + BirthRate = 10, + MedianAge = 40, + Electricity = 4778, + Televisions = 1220000, + PublicDebt = 7, + Internet = 1770000 + }); + this.Add(new WorldStatsItem() + { + Code = @"RKS", + Name = @"Kosovo", + Continent = @"Europe", + Population = 1895250, + GdpTotal = 18490, + Economy = @"Developing", + Region = @"Southern Europe", + Status = @"Country", + Longitude = 20.891, + Latitude = 42.557, + GdpPerPerson = 9756, + Rank = 151, + Unemployment = 12, + OilProduction = 0, + BirthRate = 8, + MedianAge = 55, + Electricity = 14878, + Televisions = 1287863, + PublicDebt = 20, + Internet = 1422193 + }); + this.Add(new WorldStatsItem() + { + Code = @"GNB", + Name = @"Guinea-Bissau", + Continent = @"Africa", + Population = 1792338, + GdpTotal = 2851, + Economy = @"Least developed", + Region = @"Western Africa", + Status = @"Country", + Longitude = -14.59, + Latitude = 11.942, + GdpPerPerson = 1591, + Rank = 152, + Unemployment = 5, + OilProduction = 5, + BirthRate = 5, + MedianAge = 55, + Electricity = 74684, + Televisions = 1427462, + PublicDebt = 8, + Internet = 365000 + }); + this.Add(new WorldStatsItem() + { + Code = @"GAB", + Name = @"Gabon", + Continent = @"Africa", + Population = 1772255, + GdpTotal = 35980, + Economy = @"Developing", + Region = @"Middle Africa", + Status = @"Country", + Longitude = 11.592, + Latitude = -0.807, + GdpPerPerson = 20302, + Rank = 153, + Unemployment = 21, + OilProduction = 240000, + BirthRate = 36, + MedianAge = 19, + Electricity = 1520, + Televisions = 63000, + PublicDebt = 53, + Internet = 145000 + }); + this.Add(new WorldStatsItem() + { + Code = @"SWZ", + Name = @"Eswatini", + Continent = @"Africa", + Population = 1467152, + GdpTotal = 11060, + Economy = @"Developing", + Region = @"Southern Africa", + Status = @"Country", + Longitude = 31.45, + Latitude = -26.52, + GdpPerPerson = 7538, + Rank = 154, + Unemployment = 6, + OilProduction = 3, + BirthRate = 17, + MedianAge = 39, + Electricity = 72804, + Televisions = 229393, + PublicDebt = 5, + Internet = 427760 + }); + this.Add(new WorldStatsItem() + { + Code = @"BHR", + Name = @"Bahrain", + Continent = @"Asia", + Population = 1410942, + GdpTotal = 66370, + Economy = @"Developing", + Region = @"Middle East", + Status = @"Country", + Longitude = 50.535, + Latitude = 26.027, + GdpPerPerson = 47039, + Rank = 155, + Unemployment = 15, + OilProduction = 184300, + BirthRate = 17, + MedianAge = 30, + Electricity = 8187, + Televisions = 275000, + PublicDebt = 31, + Internet = 250000 + }); + this.Add(new WorldStatsItem() + { + Code = @"MUS", + Name = @"Mauritius", + Continent = @"Africa", + Population = 1356388, + GdpTotal = 25850, + Economy = @"Developing", + Region = @"Eastern Africa", + Status = @"Country", + Longitude = 57.555, + Latitude = -20.25, + GdpPerPerson = 19058, + Rank = 156, + Unemployment = 9, + OilProduction = 0, + BirthRate = 15, + MedianAge = 32, + Electricity = 2350, + Televisions = 258000, + PublicDebt = 63, + Internet = 340000 + }); + this.Add(new WorldStatsItem() + { + Code = @"TLS", + Name = @"Timor-Leste", + Continent = @"Asia", + Population = 1291358, + GdpTotal = 4975, + Economy = @"Least developed", + Region = @"Eastern Asia", + Status = @"Country", + Longitude = 125.66, + Latitude = -8.826, + GdpPerPerson = 3853, + Rank = 157, + Unemployment = 8, + OilProduction = 5, + BirthRate = 18, + MedianAge = 48, + Electricity = 84061, + Televisions = 416260, + PublicDebt = 25, + Internet = 267437 + }); + this.Add(new WorldStatsItem() + { + Code = @"EST", + Name = @"Estonia", + Continent = @"Europe", + Population = 1251581, + GdpTotal = 38700, + Economy = @"Developed", + Region = @"Northern Europe", + Status = @"Country", + Longitude = 25.441, + Latitude = 58.845, + GdpPerPerson = 30921, + Rank = 158, + Unemployment = 5, + OilProduction = 6930, + BirthRate = 10, + MedianAge = 40, + Electricity = 9599, + Televisions = 605000, + PublicDebt = 3, + Internet = 780000 + }); + this.Add(new WorldStatsItem() + { + Code = @"CYP", + Name = @"Cyprus", + Continent = @"Asia", + Population = 1221549, + GdpTotal = 29260, + Economy = @"Developing", + Region = @"Middle East", + Status = @"Country", + Longitude = 33.176, + Latitude = 34.876, + GdpPerPerson = 23953, + Rank = 159, + Unemployment = 4, + OilProduction = 0, + BirthRate = 13, + MedianAge = 35, + Electricity = 4618, + Televisions = 0, + PublicDebt = 60, + Internet = 380000 + }); + this.Add(new WorldStatsItem() + { + Code = @"TTO", + Name = @"Trinidad and Tobago", + Continent = @"North America", + Population = 1218208, + GdpTotal = 43570, + Economy = @"Developing", + Region = @"Central America", + Status = @"Country", + Longitude = -61.21, + Latitude = 10.352, + GdpPerPerson = 35766, + Rank = 160, + Unemployment = 4, + OilProduction = 5, + BirthRate = 15, + MedianAge = 47, + Electricity = 58959, + Televisions = 359389, + PublicDebt = 29, + Internet = 152416 + }); + this.Add(new WorldStatsItem() + { + Code = @"FJI", + Name = @"Fiji", + Continent = @"Oceania", + Population = 920938, + GdpTotal = 8374, + Economy = @"Developing", + Region = @"Melanesia", + Status = @"Country", + Longitude = 177.85, + Latitude = -17.75, + GdpPerPerson = 9093, + Rank = 161, + Unemployment = 11, + OilProduction = 5, + BirthRate = 5, + MedianAge = 41, + Electricity = 88931, + Televisions = 517580, + PublicDebt = 17, + Internet = 539400 + }); + this.Add(new WorldStatsItem() + { + Code = @"DJI", + Name = @"Djibouti", + Continent = @"Africa", + Population = 865267, + GdpTotal = 3345, + Economy = @"Least developed", + Region = @"Eastern Africa", + Status = @"Country", + Longitude = 42.587, + Latitude = 11.825, + GdpPerPerson = 3866, + Rank = 162, + Unemployment = 5, + OilProduction = 3, + BirthRate = 17, + MedianAge = 44, + Electricity = 91593, + Televisions = 209004, + PublicDebt = 43, + Internet = 476114 + }); + this.Add(new WorldStatsItem() + { + Code = @"COM", + Name = @"Comoros", + Continent = @"Africa", + Population = 808080, + GdpTotal = 1259, + Economy = @"Least developed", + Region = @"Eastern Africa", + Status = @"Country", + Longitude = 43.877, + Latitude = -11.86, + GdpPerPerson = 1558, + Rank = 163, + Unemployment = 11, + OilProduction = 3, + BirthRate = 14, + MedianAge = 46, + Electricity = 6146, + Televisions = 495921, + PublicDebt = 10, + Internet = 459977 + }); + this.Add(new WorldStatsItem() + { + Code = @"GNQ", + Name = @"Equatorial Guinea", + Continent = @"Africa", + Population = 778358, + GdpTotal = 31770, + Economy = @"Least developed", + Region = @"Middle Africa", + Status = @"Country", + Longitude = 10.521, + Latitude = 1.763, + GdpPerPerson = 40817, + Rank = 164, + Unemployment = 30, + OilProduction = 385500, + BirthRate = 37, + MedianAge = 19, + Electricity = 28, + Televisions = 4000, + PublicDebt = 2, + Internet = 8000 + }); + this.Add(new WorldStatsItem() + { + Code = @"BTN", + Name = @"Bhutan", + Continent = @"Asia", + Population = 758288, + GdpTotal = 6432, + Economy = @"Least developed", + Region = @"Southern Asia", + Status = @"Country", + Longitude = 90.411, + Latitude = 27.506, + GdpPerPerson = 8482, + Rank = 165, + Unemployment = 3, + OilProduction = 0, + BirthRate = 21, + MedianAge = 24, + Electricity = 2000, + Televisions = 11000, + PublicDebt = 81, + Internet = 40000 + }); + this.Add(new WorldStatsItem() + { + Code = @"GUY", + Name = @"Guyana", + Continent = @"South America", + Population = 737718, + GdpTotal = 6093, + Economy = @"Developing", + Region = @"South America", + Status = @"Country", + Longitude = -58.96, + Latitude = 5.607, + GdpPerPerson = 8259, + Rank = 166, + Unemployment = 2, + OilProduction = 3, + BirthRate = 9, + MedianAge = 37, + Electricity = 84988, + Televisions = 149848, + PublicDebt = 12, + Internet = 134377 + }); + this.Add(new WorldStatsItem() + { + Code = @"SLB", + Name = @"Solomon Islands", + Continent = @"Oceania", + Population = 647581, + GdpTotal = 1198, + Economy = @"Least developed", + Region = @"Melanesia", + Status = @"Country", + Longitude = 161.3, + Latitude = -9.221, + GdpPerPerson = 1850, + Rank = 167, + Unemployment = 4, + OilProduction = 3, + BirthRate = 18, + MedianAge = 30, + Electricity = 3432, + Televisions = 177555, + PublicDebt = 43, + Internet = 478635 + }); + this.Add(new WorldStatsItem() + { + Code = @"MNE", + Name = @"Montenegro", + Continent = @"Europe", + Population = 642550, + GdpTotal = 10610, + Economy = @"Developing", + Region = @"Southern Europe", + Status = @"Country", + Longitude = 19.191, + Latitude = 42.814, + GdpPerPerson = 16512, + Rank = 168, + Unemployment = 10, + OilProduction = 2, + BirthRate = 24, + MedianAge = 46, + Electricity = 24709, + Televisions = 126756, + PublicDebt = 29, + Internet = 336628 + }); + this.Add(new WorldStatsItem() + { + Code = @"ESH", + Name = @"Western Sahara", + Continent = @"Africa", + Population = 603253, + GdpTotal = 907, + Economy = @"Least developed", + Region = @"Northern Africa", + Status = @"Dependency", + Longitude = -12.89, + Latitude = 24.231, + GdpPerPerson = 1504, + Rank = 169, + Unemployment = 6, + OilProduction = 1, + BirthRate = 23, + MedianAge = 30, + Electricity = 11081, + Televisions = 237857, + PublicDebt = 30, + Internet = 306624 + }); + this.Add(new WorldStatsItem() + { + Code = @"MAC", + Name = @"Macao", + Continent = @"Asia", + Population = 601969, + GdpTotal = 63220, + Economy = @"Developing", + Region = @"Eastern Asia", + Status = @"Dependency", + Longitude = 113.51, + Latitude = 22.221, + GdpPerPerson = 105022, + Rank = 170, + Unemployment = 10, + OilProduction = 2, + BirthRate = 10, + MedianAge = 47, + Electricity = 77896, + Televisions = 163859, + PublicDebt = 18, + Internet = 62728 + }); + this.Add(new WorldStatsItem() + { + Code = @"LUX", + Name = @"Luxembourg", + Continent = @"Europe", + Population = 594130, + GdpTotal = 58740, + Economy = @"Developed", + Region = @"Western Europe", + Status = @"Country", + Longitude = 6.109, + Latitude = 49.806, + GdpPerPerson = 98867, + Rank = 171, + Unemployment = 4, + OilProduction = 0, + BirthRate = 12, + MedianAge = 39, + Electricity = 3156, + Televisions = 285000, + PublicDebt = 6, + Internet = 345000 + }); + this.Add(new WorldStatsItem() + { + Code = @"SUR", + Name = @"Suriname", + Continent = @"South America", + Population = 591919, + GdpTotal = 8547, + Economy = @"Developing", + Region = @"South America", + Status = @"Country", + Longitude = -56.02, + Latitude = 4.506, + GdpPerPerson = 14439, + Rank = 172, + Unemployment = 5, + OilProduction = 1, + BirthRate = 16, + MedianAge = 44, + Electricity = 82658, + Televisions = 69068, + PublicDebt = 31, + Internet = 367104 + }); + this.Add(new WorldStatsItem() + { + Code = @"CPV", + Name = @"Cabo Verde", + Continent = @"Africa", + Population = 560899, + GdpTotal = 3583, + Economy = @"Developing", + Region = @"Western Africa", + Status = @"Country", + Longitude = -25.16, + Latitude = 17.102, + GdpPerPerson = 6388, + Rank = 173, + Unemployment = 12, + OilProduction = 1, + BirthRate = 12, + MedianAge = 54, + Electricity = 60647, + Televisions = 101289, + PublicDebt = 34, + Internet = 40105 + }); + this.Add(new WorldStatsItem() + { + Code = @"BRN", + Name = @"Brunei", + Continent = @"Asia", + Population = 443593, + GdpTotal = 33730, + Economy = @"Developing", + Region = @"Eastern Asia", + Status = @"Country", + Longitude = 114.69, + Latitude = 4.523, + GdpPerPerson = 76038, + Rank = 174, + Unemployment = 4, + OilProduction = 0, + BirthRate = 17, + MedianAge = 32, + Electricity = 50701, + Televisions = 235042, + PublicDebt = 16, + Internet = 188751 + }); + this.Add(new WorldStatsItem() + { + Code = @"MLT", + Name = @"Malta", + Continent = @"Europe", + Population = 416338, + GdpTotal = 16320, + Economy = @"Developed", + Region = @"Southern Europe", + Status = @"Country", + Longitude = 14.373, + Latitude = 35.948, + GdpPerPerson = 39199, + Rank = 175, + Unemployment = 7, + OilProduction = 4, + BirthRate = 6, + MedianAge = 52, + Electricity = 77444, + Televisions = 282390, + PublicDebt = 41, + Internet = 317612 + }); + this.Add(new WorldStatsItem() + { + Code = @"MDV", + Name = @"Maldives", + Continent = @"Asia", + Population = 392709, + GdpTotal = 5407, + Economy = @"Developing", + Region = @"Southern Asia", + Status = @"Country", + Longitude = 73.455, + Latitude = 3.739, + GdpPerPerson = 13768, + Rank = 176, + Unemployment = 13, + OilProduction = 4, + BirthRate = 10, + MedianAge = 43, + Electricity = 26004, + Televisions = 156412, + PublicDebt = 28, + Internet = 45331 + }); + this.Add(new WorldStatsItem() + { + Code = @"BLZ", + Name = @"Belize", + Continent = @"North America", + Population = 360346, + GdpTotal = 3088, + Economy = @"Developing", + Region = @"Central America", + Status = @"Country", + Longitude = -88.51, + Latitude = 17.185, + GdpPerPerson = 8570, + Rank = 177, + Unemployment = 4, + OilProduction = 2, + BirthRate = 7, + MedianAge = 36, + Electricity = 57433, + Televisions = 127478, + PublicDebt = 36, + Internet = 223855 + }); + this.Add(new WorldStatsItem() + { + Code = @"ISL", + Name = @"Iceland", + Continent = @"Europe", + Population = 339747, + GdpTotal = 16150, + Economy = @"Developed", + Region = @"Northern Europe", + Status = @"Country", + Longitude = -19.01, + Latitude = 64.966, + GdpPerPerson = 47535, + Rank = 178, + Unemployment = 1, + OilProduction = 0, + BirthRate = 14, + MedianAge = 35, + Electricity = 8533, + Televisions = 98000, + PublicDebt = 28, + Internet = 202300 + }); + this.Add(new WorldStatsItem() + { + Code = @"BHS", + Name = @"Bahamas", + Continent = @"North America", + Population = 329988, + GdpTotal = 9066, + Economy = @"Developing", + Region = @"Central America", + Status = @"Country", + Longitude = -78.01, + Latitude = 24.761, + GdpPerPerson = 27474, + Rank = 179, + Unemployment = 5, + OilProduction = 2, + BirthRate = 17, + MedianAge = 47, + Electricity = 38395, + Televisions = 203588, + PublicDebt = 6, + Internet = 91807 + }); + this.Add(new WorldStatsItem() + { + Code = @"FRG", + Name = @"French Guiana", + Continent = @"South America", + Population = 296161, + GdpTotal = 1299000, + Economy = @"Developed", + Region = @"South America", + Status = @"Dependency", + Longitude = -53.13, + Latitude = 3.893, + GdpPerPerson = 4386, + Rank = 180, + Unemployment = 3, + OilProduction = 0, + BirthRate = 15, + MedianAge = 55, + Electricity = 73845, + Televisions = 147489, + PublicDebt = 35, + Internet = 209593 + }); + this.Add(new WorldStatsItem() + { + Code = @"BRB", + Name = @"Barbados", + Continent = @"North America", + Population = 292336, + GdpTotal = 4804, + Economy = @"Developing", + Region = @"Central America", + Status = @"Country", + Longitude = -59.53, + Latitude = 13.19, + GdpPerPerson = 16433, + Rank = 181, + Unemployment = 8, + OilProduction = 3, + BirthRate = 21, + MedianAge = 51, + Electricity = 28728, + Televisions = 173392, + PublicDebt = 12, + Internet = 73593 + }); + this.Add(new WorldStatsItem() + { + Code = @"PYF", + Name = @"Fr. Polynesia", + Continent = @"Oceania", + Population = 287881, + GdpTotal = 5490, + Economy = @"Developing", + Region = @"Polynesia", + Status = @"Dependency", + Longitude = -143.9, + Latitude = -14.82, + GdpPerPerson = 19070, + Rank = 182, + Unemployment = 1, + OilProduction = 4, + BirthRate = 6, + MedianAge = 45, + Electricity = 46206, + Televisions = 43757, + PublicDebt = 12, + Internet = 172560 + }); + this.Add(new WorldStatsItem() + { + Code = @"VUT", + Name = @"Vanuatu", + Continent = @"Oceania", + Population = 282814, + GdpTotal = 723, + Economy = @"Least developed", + Region = @"Melanesia", + Status = @"Country", + Longitude = 168.21, + Latitude = -16.97, + GdpPerPerson = 2556, + Rank = 183, + Unemployment = 11, + OilProduction = 4, + BirthRate = 17, + MedianAge = 39, + Electricity = 50581, + Televisions = 187584, + PublicDebt = 42, + Internet = 223352 + }); + this.Add(new WorldStatsItem() + { + Code = @"NCL", + Name = @"New Caledonia", + Continent = @"Oceania", + Population = 279070, + GdpTotal = 10770, + Economy = @"Developing", + Region = @"Melanesia", + Status = @"Dependency", + Longitude = 165.26, + Latitude = -21.09, + GdpPerPerson = 38592, + Rank = 184, + Unemployment = 10, + OilProduction = 3, + BirthRate = 6, + MedianAge = 49, + Electricity = 18361, + Televisions = 79923, + PublicDebt = 45, + Internet = 149003 + }); + this.Add(new WorldStatsItem() + { + Code = @"NCP", + Name = @"Northern Cyprus", + Continent = @"Asia", + Population = 265100, + GdpTotal = 3600, + Economy = @"Developing", + Region = @"Middle East", + Status = @"Country", + Longitude = 33.714, + Latitude = 35.257, + GdpPerPerson = 13580, + Rank = 185, + Unemployment = 4, + OilProduction = 5, + BirthRate = 25, + MedianAge = 51, + Electricity = 84000, + Televisions = 135551, + PublicDebt = 30, + Internet = 167480 + }); + this.Add(new WorldStatsItem() + { + Code = @"STP", + Name = @"Sao Tome and Principe", + Continent = @"Africa", + Population = 201025, + GdpTotal = 694, + Economy = @"Least developed", + Region = @"Middle Africa", + Status = @"Country", + Longitude = 6.598, + Latitude = 0.248, + GdpPerPerson = 3452, + Rank = 186, + Unemployment = 1, + OilProduction = 3, + BirthRate = 24, + MedianAge = 30, + Electricity = 6691, + Televisions = 65480, + PublicDebt = 12, + Internet = 121162 + }); + this.Add(new WorldStatsItem() + { + Code = @"WSM", + Name = @"Samoa", + Continent = @"Oceania", + Population = 200108, + GdpTotal = 1046, + Economy = @"Least developed", + Region = @"Polynesia", + Status = @"Country", + Longitude = -172.1, + Latitude = -13.75, + GdpPerPerson = 5227, + Rank = 187, + Unemployment = 3, + OilProduction = 2, + BirthRate = 7, + MedianAge = 46, + Electricity = 50118, + Televisions = 54930, + PublicDebt = 42, + Internet = 84739 + }); + this.Add(new WorldStatsItem() + { + Code = @"GUM", + Name = @"Guam", + Continent = @"Oceania", + Population = 167358, + GdpTotal = 4882, + Economy = @"Developing", + Region = @"Micronesia", + Status = @"Dependency", + Longitude = 144.79, + Latitude = 13.44, + GdpPerPerson = 29171, + Rank = 188, + Unemployment = 15, + OilProduction = 2, + BirthRate = 24, + MedianAge = 42, + Electricity = 64229, + Televisions = 43567, + PublicDebt = 37, + Internet = 121131 + }); + this.Add(new WorldStatsItem() + { + Code = @"LCA", + Name = @"Saint Lucia", + Continent = @"North America", + Population = 164994, + GdpTotal = 2083, + Economy = @"Developing", + Region = @"Central America", + Status = @"Country", + Longitude = -60.98, + Latitude = 13.905, + GdpPerPerson = 12625, + Rank = 189, + Unemployment = 3, + OilProduction = 2, + BirthRate = 14, + MedianAge = 32, + Electricity = 75473, + Televisions = 87743, + PublicDebt = 7, + Internet = 64498 + }); + this.Add(new WorldStatsItem() + { + Code = @"CUW", + Name = @"Curacao", + Continent = @"North America", + Population = 149648, + GdpTotal = 3128, + Economy = @"Developing", + Region = @"Central America", + Status = @"Dependency", + Longitude = -68.95, + Latitude = 12.213, + GdpPerPerson = 20902, + Rank = 190, + Unemployment = 6, + OilProduction = 1, + BirthRate = 7, + MedianAge = 35, + Electricity = 74665, + Televisions = 89830, + PublicDebt = 36, + Internet = 55905 + }); + this.Add(new WorldStatsItem() + { + Code = @"ABW", + Name = @"Aruba", + Continent = @"North America", + Population = 115120, + GdpTotal = 2516, + Economy = @"Developing", + Region = @"Central America", + Status = @"Dependency", + Longitude = -69.98, + Latitude = 12.519, + GdpPerPerson = 21855, + Rank = 191, + Unemployment = 7, + OilProduction = 2356, + BirthRate = 13, + MedianAge = 38, + Electricity = 770, + Televisions = 20000, + PublicDebt = 46, + Internet = 24000 + }); + this.Add(new WorldStatsItem() + { + Code = @"GRD", + Name = @"Grenada", + Continent = @"North America", + Population = 111724, + GdpTotal = 1511, + Economy = @"Developing", + Region = @"Central America", + Status = @"Country", + Longitude = -61.69, + Latitude = 12.123, + GdpPerPerson = 13524, + Rank = 192, + Unemployment = 10, + OilProduction = 0, + BirthRate = 10, + MedianAge = 50, + Electricity = 4992, + Televisions = 58674, + PublicDebt = 42, + Internet = 33132 + }); + this.Add(new WorldStatsItem() + { + Code = @"KIR", + Name = @"Kiribati", + Continent = @"Oceania", + Population = 108145, + GdpTotal = 211, + Economy = @"Least developed", + Region = @"Micronesia", + Status = @"Country", + Longitude = -157.333, + Latitude = 1.884, + GdpPerPerson = 1951, + Rank = 193, + Unemployment = 13, + OilProduction = 4, + BirthRate = 9, + MedianAge = 52, + Electricity = 37081, + Televisions = 52395, + PublicDebt = 40, + Internet = 36620 + }); + this.Add(new WorldStatsItem() + { + Code = @"VIR", + Name = @"U.S. Virgin Island", + Continent = @"North America", + Population = 107268, + GdpTotal = 3792, + Economy = @"Developing", + Region = @"Central America", + Status = @"Dependency", + Longitude = -64.77, + Latitude = 17.77, + GdpPerPerson = 35351, + Rank = 194, + Unemployment = 11, + OilProduction = 2, + BirthRate = 12, + MedianAge = 38, + Electricity = 13387, + Televisions = 77187, + PublicDebt = 43, + Internet = 40836 + }); + this.Add(new WorldStatsItem() + { + Code = @"TON", + Name = @"Tonga", + Continent = @"Oceania", + Population = 106479, + GdpTotal = 557, + Economy = @"Developing", + Region = @"Polynesia", + Status = @"Country", + Longitude = -173.9, + Latitude = -18.62, + GdpPerPerson = 5231, + Rank = 195, + Unemployment = 4, + OilProduction = 4, + BirthRate = 5, + MedianAge = 33, + Electricity = 88735, + Televisions = 30257, + PublicDebt = 25, + Internet = 71756 + }); + this.Add(new WorldStatsItem() + { + Code = @"FSM", + Name = @"Micronesia", + Continent = @"Oceania", + Population = 104196, + GdpTotal = 314, + Economy = @"Developing", + Region = @"Micronesia", + Status = @"Country", + Longitude = 150.52, + Latitude = 7.435, + GdpPerPerson = 3014, + Rank = 196, + Unemployment = 9, + OilProduction = 5, + BirthRate = 5, + MedianAge = 38, + Electricity = 39068, + Televisions = 45396, + PublicDebt = 40, + Internet = 29169 + }); + this.Add(new WorldStatsItem() + { + Code = @"VCT", + Name = @"St. Vin. and Gren.", + Continent = @"North America", + Population = 102089, + GdpTotal = 1241, + Economy = @"Developing", + Region = @"Central America", + Status = @"Country", + Longitude = -61.17, + Latitude = 13.239, + GdpPerPerson = 12156, + Rank = 197, + Unemployment = 10, + OilProduction = 5, + BirthRate = 7, + MedianAge = 30, + Electricity = 39467, + Televisions = 42804, + PublicDebt = 9, + Internet = 66754 + }); + this.Add(new WorldStatsItem() + { + Code = @"JEY", + Name = @"Jersey", + Continent = @"Europe", + Population = 98840, + GdpTotal = 5080, + Economy = @"Developed", + Region = @"Northern Europe", + Status = @"Territory", + Longitude = -2.123, + Latitude = 49.218, + GdpPerPerson = 51396, + Rank = 198, + Unemployment = 4, + OilProduction = 1, + BirthRate = 18, + MedianAge = 30, + Electricity = 64261, + Televisions = 52453, + PublicDebt = 34, + Internet = 3026 + }); + this.Add(new WorldStatsItem() + { + Code = @"ATG", + Name = @"Antigua and Barbuda", + Continent = @"North America", + Population = 94731, + GdpTotal = 2171, + Economy = @"Developing", + Region = @"Central America", + Status = @"Country", + Longitude = -61.79, + Latitude = 17.096, + GdpPerPerson = 22918, + Rank = 199, + Unemployment = 3, + OilProduction = 1, + BirthRate = 5, + MedianAge = 36, + Electricity = 35849, + Televisions = 75384, + PublicDebt = 32, + Internet = 6170 + }); + this.Add(new WorldStatsItem() + { + Code = @"SYC", + Name = @"Seychelles", + Continent = @"Africa", + Population = 93920, + GdpTotal = 2608, + Economy = @"Developing", + Region = @"Eastern Africa", + Status = @"Country", + Longitude = 55.463, + Latitude = -4.672, + GdpPerPerson = 27768, + Rank = 200, + Unemployment = 2, + OilProduction = 0, + BirthRate = 16, + MedianAge = 29, + Electricity = 252, + Televisions = 11000, + PublicDebt = 92, + Internet = 32000 + }); + this.Add(new WorldStatsItem() + { + Code = @"IMN", + Name = @"Isle of Man", + Continent = @"Europe", + Population = 88815, + GdpTotal = 7428, + Economy = @"Developed", + Region = @"Northern Europe", + Status = @"Territory", + Longitude = -4.562, + Latitude = 54.233, + GdpPerPerson = 83635, + Rank = 201, + Unemployment = 4, + OilProduction = 4, + BirthRate = 14, + MedianAge = 36, + Electricity = 15745, + Televisions = 25734, + PublicDebt = 13, + Internet = 2650 + }); + this.Add(new WorldStatsItem() + { + Code = @"AND", + Name = @"Andorra", + Continent = @"Europe", + Population = 85702, + GdpTotal = 3327, + Economy = @"Developed", + Region = @"Southern Europe", + Status = @"Country", + Longitude = 1.578, + Latitude = 42.539, + GdpPerPerson = 38821, + Rank = 202, + Unemployment = 11, + OilProduction = 3, + BirthRate = 20, + MedianAge = 50, + Electricity = 56209, + Televisions = 42797, + PublicDebt = 33, + Internet = 42006 + }); + this.Add(new WorldStatsItem() + { + Code = @"MHL", + Name = @"Marshall Islands", + Continent = @"Oceania", + Population = 74539, + GdpTotal = 180, + Economy = @"Developing", + Region = @"Micronesia", + Status = @"Country", + Longitude = 169.3, + Latitude = 8.484, + GdpPerPerson = 2415, + Rank = 203, + Unemployment = 3, + OilProduction = 3, + BirthRate = 23, + MedianAge = 42, + Electricity = 78832, + Televisions = 15193, + PublicDebt = 44, + Internet = 8536 + }); + this.Add(new WorldStatsItem() + { + Code = @"DMA", + Name = @"Dominica", + Continent = @"North America", + Population = 73897, + GdpTotal = 812, + Economy = @"Developing", + Region = @"Central America", + Status = @"Country", + Longitude = -61.36, + Latitude = 15.43, + GdpPerPerson = 10988, + Rank = 204, + Unemployment = 6, + OilProduction = 1, + BirthRate = 13, + MedianAge = 35, + Electricity = 49809, + Televisions = 17676, + PublicDebt = 37, + Internet = 2616 + }); + this.Add(new WorldStatsItem() + { + Code = @"BMU", + Name = @"Bermuda", + Continent = @"North America", + Population = 70864, + GdpTotal = 5198, + Economy = @"Developed", + Region = @"Northern America", + Status = @"Dependency", + Longitude = -64.76, + Latitude = 32.323, + GdpPerPerson = 73352, + Rank = 205, + Unemployment = 15, + OilProduction = 1, + BirthRate = 21, + MedianAge = 43, + Electricity = 54728, + Televisions = 16336, + PublicDebt = 27, + Internet = 41606 + }); + this.Add(new WorldStatsItem() + { + Code = @"GGY", + Name = @"Guernsey", + Continent = @"Europe", + Population = 66502, + GdpTotal = 3465, + Economy = @"Developed", + Region = @"Northern Europe", + Status = @"Territory", + Longitude = -2.579, + Latitude = 49.468, + GdpPerPerson = 52104, + Rank = 206, + Unemployment = 2, + OilProduction = 1, + BirthRate = 25, + MedianAge = 33, + Electricity = 9806, + Televisions = 24638, + PublicDebt = 34, + Internet = 29222 + }); + this.Add(new WorldStatsItem() + { + Code = @"CYM", + Name = @"Cayman Island", + Continent = @"North America", + Population = 58441, + GdpTotal = 2507, + Economy = @"Emerging", + Region = @"Central America", + Status = @"Dependency", + Longitude = -81.25, + Latitude = 19.343, + GdpPerPerson = 42898, + Rank = 207, + Unemployment = 12, + OilProduction = 3, + BirthRate = 7, + MedianAge = 35, + Electricity = 70206, + Televisions = 28885, + PublicDebt = 21, + Internet = 9332 + }); + this.Add(new WorldStatsItem() + { + Code = @"GRL", + Name = @"Greenland", + Continent = @"North America", + Population = 57713, + GdpTotal = 2173, + Economy = @"Developed", + Region = @"Northern America", + Status = @"Dependency", + Longitude = -42.12, + Latitude = 69.547, + GdpPerPerson = 37652, + Rank = 208, + Unemployment = 7, + OilProduction = 5, + BirthRate = 19, + MedianAge = 42, + Electricity = 86090, + Televisions = 43741, + PublicDebt = 42, + Internet = 11423 + }); + this.Add(new WorldStatsItem() + { + Code = @"KNA", + Name = @"St. Kitts and Nevis", + Continent = @"North America", + Population = 52715, + GdpTotal = 1427, + Economy = @"Developing", + Region = @"Central America", + Status = @"Country", + Longitude = -62.77, + Latitude = 17.351, + GdpPerPerson = 27070, + Rank = 209, + Unemployment = 5, + OilProduction = 2, + BirthRate = 18, + MedianAge = 40, + Electricity = 65438, + Televisions = 17719, + PublicDebt = 11, + Internet = 8543 + }); + this.Add(new WorldStatsItem() + { + Code = @"TCA", + Name = @"Turks and Caicos Is.", + Continent = @"North America", + Population = 52570, + GdpTotal = 632, + Economy = @"Developing", + Region = @"Central America", + Status = @"Dependency", + Longitude = -71.96, + Latitude = 21.913, + GdpPerPerson = 12022, + Rank = 210, + Unemployment = 6, + OilProduction = 0, + BirthRate = 13, + MedianAge = 42, + Electricity = 51325, + Televisions = 13109, + PublicDebt = 13, + Internet = 24564 + }); + this.Add(new WorldStatsItem() + { + Code = @"MNP", + Name = @"N. Mariana Island", + Continent = @"Oceania", + Population = 52263, + GdpTotal = 682, + Economy = @"Developing", + Region = @"Micronesia", + Status = @"Dependency", + Longitude = 145.49, + Latitude = 16.459, + GdpPerPerson = 13049, + Rank = 211, + Unemployment = 10, + OilProduction = 1, + BirthRate = 9, + MedianAge = 46, + Electricity = 87386, + Televisions = 13049, + PublicDebt = 20, + Internet = 5484 + }); + this.Add(new WorldStatsItem() + { + Code = @"ASM", + Name = @"American Samoa", + Continent = @"Oceania", + Population = 51504, + GdpTotal = 711, + Economy = @"Developing", + Region = @"Polynesia", + Status = @"Dependency", + Longitude = -170.6, + Latitude = -14.3, + GdpPerPerson = 13805, + Rank = 212, + Unemployment = 3, + OilProduction = 4, + BirthRate = 13, + MedianAge = 42, + Electricity = 65918, + Televisions = 18802, + PublicDebt = 23, + Internet = 14691 + }); + this.Add(new WorldStatsItem() + { + Code = @"FRO", + Name = @"Faeroe Island", + Continent = @"Europe", + Population = 50730, + GdpTotal = 2001, + Economy = @"Developed", + Region = @"Northern Europe", + Status = @"Dependency", + Longitude = -6.857, + Latitude = 62.178, + GdpPerPerson = 39444, + Rank = 213, + Unemployment = 15, + OilProduction = 2, + BirthRate = 11, + MedianAge = 46, + Electricity = 55029, + Televisions = 11762, + PublicDebt = 13, + Internet = 2412 + }); + this.Add(new WorldStatsItem() + { + Code = @"SXM", + Name = @"Sint Maarten", + Continent = @"North America", + Population = 42083, + GdpTotal = 366, + Economy = @"Developing", + Region = @"Central America", + Status = @"Dependency", + Longitude = -63.06, + Latitude = 18.044, + GdpPerPerson = 8697, + Rank = 214, + Unemployment = 14, + OilProduction = 4, + BirthRate = 19, + MedianAge = 50, + Electricity = 17166, + Televisions = 8474, + PublicDebt = 33, + Internet = 14309 + }); + this.Add(new WorldStatsItem() + { + Code = @"LIE", + Name = @"Liechtenstein", + Continent = @"Europe", + Population = 38244, + GdpTotal = 4978, + Economy = @"Developed", + Region = @"Western Europe", + Status = @"Country", + Longitude = 9.545, + Latitude = 47.164, + GdpPerPerson = 130164, + Rank = 215, + Unemployment = 11, + OilProduction = 3, + BirthRate = 10, + MedianAge = 55, + Electricity = 80781, + Televisions = 23104, + PublicDebt = 21, + Internet = 8159 + }); + this.Add(new WorldStatsItem() + { + Code = @"VGB", + Name = @"British Virgin Island", + Continent = @"North America", + Population = 35015, + GdpTotal = 500, + Economy = @"Developed", + Region = @"Central America", + Status = @"Dependency", + Longitude = -64.6, + Latitude = 18.44, + GdpPerPerson = 14280, + Rank = 216, + Unemployment = 13, + OilProduction = 2, + BirthRate = 6, + MedianAge = 51, + Electricity = 47732, + Televisions = 17777, + PublicDebt = 7, + Internet = 6238 + }); + this.Add(new WorldStatsItem() + { + Code = @"SMR", + Name = @"San Marino", + Continent = @"Europe", + Population = 33537, + GdpTotal = 2023, + Economy = @"Developed", + Region = @"Southern Europe", + Status = @"Country", + Longitude = 12.456, + Latitude = 43.942, + GdpPerPerson = 60321, + Rank = 217, + Unemployment = 10, + OilProduction = 0, + BirthRate = 15, + MedianAge = 48, + Electricity = 21943, + Televisions = 22355, + PublicDebt = 34, + Internet = 23505 + }); + this.Add(new WorldStatsItem() + { + Code = @"MAF", + Name = @"St. Martin", + Continent = @"North America", + Population = 32125, + GdpTotal = 562, + Economy = @"Developing", + Region = @"Central America", + Status = @"Dependency", + Longitude = -63.06, + Latitude = 18.092, + GdpPerPerson = 17494, + Rank = 218, + Unemployment = 15, + OilProduction = 5, + BirthRate = 10, + MedianAge = 34, + Electricity = 76791, + Televisions = 17592, + PublicDebt = 43, + Internet = 25032 + }); + this.Add(new WorldStatsItem() + { + Code = @"MCO", + Name = @"Monaco", + Continent = @"Europe", + Population = 30645, + GdpTotal = 7672, + Economy = @"Developed", + Region = @"Western Europe", + Status = @"Country", + Longitude = 7.408, + Latitude = 43.751, + GdpPerPerson = 250351, + Rank = 219, + Unemployment = 15, + OilProduction = 5, + BirthRate = 18, + MedianAge = 31, + Electricity = 73517, + Televisions = 10057, + PublicDebt = 10, + Internet = 18394 + }); + this.Add(new WorldStatsItem() + { + Code = @"ALA", + Name = @"Aland Islands", + Continent = @"Europe", + Population = 27153, + GdpTotal = 1563, + Economy = @"Developed", + Region = @"Northern Europe", + Status = @"Territory", + Longitude = 20.065, + Latitude = 60.209, + GdpPerPerson = 57563, + Rank = 220, + Unemployment = 14, + OilProduction = 3, + BirthRate = 15, + MedianAge = 54, + Electricity = 69394, + Televisions = 14696, + PublicDebt = 19, + Internet = 2736 + }); + this.Add(new WorldStatsItem() + { + Code = @"PLW", + Name = @"Palau", + Continent = @"Oceania", + Population = 21431, + GdpTotal = 276, + Economy = @"Developing", + Region = @"Micronesia", + Status = @"Country", + Longitude = 134.63, + Latitude = 7.532, + GdpPerPerson = 12879, + Rank = 221, + Unemployment = 8, + OilProduction = 1, + BirthRate = 7, + MedianAge = 39, + Electricity = 88599, + Televisions = 3019, + PublicDebt = 8, + Internet = 17075 + }); + this.Add(new WorldStatsItem() + { + Code = @"AIA", + Name = @"Anguilla", + Continent = @"North America", + Population = 17087, + GdpTotal = 175, + Economy = @"Developing", + Region = @"Central America", + Status = @"Dependency", + Longitude = -63.07, + Latitude = 18.221, + GdpPerPerson = 10242, + Rank = 222, + Unemployment = 9, + OilProduction = 1, + BirthRate = 10, + MedianAge = 49, + Electricity = 68590, + Televisions = 10632, + PublicDebt = 40, + Internet = 8703 + }); + this.Add(new WorldStatsItem() + { + Code = @"WLF", + Name = @"Wallis Island", + Continent = @"Oceania", + Population = 15714, + GdpTotal = 60, + Economy = @"Developing", + Region = @"Polynesia", + Status = @"Dependency", + Longitude = -177.1, + Latitude = -13.77, + GdpPerPerson = 3818, + Rank = 223, + Unemployment = 15, + OilProduction = 0, + BirthRate = 0, + MedianAge = 0, + Electricity = 0, + Televisions = 0, + PublicDebt = 6, + Internet = 900 + }); + this.Add(new WorldStatsItem() + { + Code = @"NRU", + Name = @"Nauru", + Continent = @"Oceania", + Population = 9642, + GdpTotal = 151, + Economy = @"Developing", + Region = @"Micronesia", + Status = @"Country", + Longitude = 166.93, + Latitude = -0.52, + GdpPerPerson = 15661, + Rank = 224, + Unemployment = 5, + OilProduction = 3, + BirthRate = 17, + MedianAge = 32, + Electricity = 84092, + Televisions = 1777, + PublicDebt = 34, + Internet = 4585 + }); + this.Add(new WorldStatsItem() + { + Code = @"COK", + Name = @"Cook Island", + Continent = @"Oceania", + Population = 9290, + GdpTotal = 244, + Economy = @"Developing", + Region = @"Polynesia", + Status = @"Dependency", + Longitude = -159.7, + Latitude = -21.21, + GdpPerPerson = 26265, + Rank = 225, + Unemployment = 15, + OilProduction = 1, + BirthRate = 6, + MedianAge = 45, + Electricity = 41320, + Televisions = 3712, + PublicDebt = 24, + Internet = 3555 + }); + this.Add(new WorldStatsItem() + { + Code = @"SHN", + Name = @"Saint Helena", + Continent = @"Africa", + Population = 7828, + GdpTotal = 31, + Economy = @"Developing", + Region = @"Western Africa", + Status = @"Dependency", + Longitude = -10.03, + Latitude = -11.94, + GdpPerPerson = 3960, + Rank = 226, + Unemployment = 13, + OilProduction = 1, + BirthRate = 17, + MedianAge = 48, + Electricity = 84435, + Televisions = 3812, + PublicDebt = 15, + Internet = 5530 + }); + this.Add(new WorldStatsItem() + { + Code = @"BLM", + Name = @"St. Barthalemy", + Continent = @"North America", + Population = 7184, + GdpTotal = 255, + Economy = @"Developed", + Region = @"Central America", + Status = @"Dependency", + Longitude = -62.83, + Latitude = 17.899, + GdpPerPerson = 35496, + Rank = 227, + Unemployment = 14, + OilProduction = 0, + BirthRate = 23, + MedianAge = 46, + Electricity = 36112, + Televisions = 4072, + PublicDebt = 27, + Internet = 5097 + }); + this.Add(new WorldStatsItem() + { + Code = @"KAS", + Name = @"Siachen Glacier", + Continent = @"Asia", + Population = 6000, + GdpTotal = 15, + Economy = @"Developing", + Region = @"Southern Asia", + Status = @"Territory", + Longitude = 77.283, + Latitude = 35.386, + GdpPerPerson = 2500, + Rank = 228, + Unemployment = 7, + OilProduction = 0, + BirthRate = 9, + MedianAge = 55, + Electricity = 62932, + Televisions = 936, + PublicDebt = 14, + Internet = 1303 + }); + this.Add(new WorldStatsItem() + { + Code = @"SPM", + Name = @"St. Pierre and Miquelon", + Continent = @"North America", + Population = 5533, + GdpTotal = 215, + Economy = @"Developed", + Region = @"Northern America", + Status = @"Territory", + Longitude = -56.26, + Latitude = 46.926, + GdpPerPerson = 38858, + Rank = 229, + Unemployment = 13, + OilProduction = 0, + BirthRate = 13, + MedianAge = 42, + Electricity = 61277, + Televisions = 2067, + PublicDebt = 18, + Internet = 2924 + }); + this.Add(new WorldStatsItem() + { + Code = @"MSR", + Name = @"Montserrat", + Continent = @"North America", + Population = 5292, + GdpTotal = 44, + Economy = @"Developing", + Region = @"Central America", + Status = @"Dependency", + Longitude = -62.18, + Latitude = 16.745, + GdpPerPerson = 8314, + Rank = 230, + Unemployment = 13, + OilProduction = 1, + BirthRate = 12, + MedianAge = 50, + Electricity = 19088, + Televisions = 1964, + PublicDebt = 44, + Internet = 4009 + }); + this.Add(new WorldStatsItem() + { + Code = @"IOT", + Name = @"British Indian Territory", + Continent = @"Asia", + Population = 4000, + GdpTotal = 160, + Economy = @"Developed", + Region = @"Southern Asia", + Status = @"Dependency", + Longitude = 72.424, + Latitude = -7.328, + GdpPerPerson = 40000, + Rank = 232, + Unemployment = 13, + OilProduction = 0, + BirthRate = 6, + MedianAge = 47, + Electricity = 91829, + Televisions = 1510, + PublicDebt = 14, + Internet = 1656 + }); + this.Add(new WorldStatsItem() + { + Code = @"FLK", + Name = @"Falkland Island", + Continent = @"South America", + Population = 2931, + GdpTotal = 282, + Economy = @"Developed", + Region = @"South America", + Status = @"Dependency", + Longitude = -59.46, + Latitude = -51.78, + GdpPerPerson = 96213, + Rank = 233, + Unemployment = 3, + OilProduction = 5, + BirthRate = 9, + MedianAge = 36, + Electricity = 68007, + Televisions = 1489, + PublicDebt = 22, + Internet = 1335 + }); + this.Add(new WorldStatsItem() + { + Code = @"NFK", + Name = @"Norfolk Island", + Continent = @"Oceania", + Population = 2210, + GdpTotal = 33, + Economy = @"Developing", + Region = @"Australia", + Status = @"Dependency", + Longitude = 167.94, + Latitude = -29.05, + GdpPerPerson = 14932, + Rank = 234, + Unemployment = 1, + OilProduction = 0, + BirthRate = 15, + MedianAge = 46, + Electricity = 91943, + Televisions = 583, + PublicDebt = 41, + Internet = 1183 + }); + this.Add(new WorldStatsItem() + { + Code = @"NIU", + Name = @"Niue", + Continent = @"Oceania", + Population = 1626, + GdpTotal = 10, + Economy = @"Developing", + Region = @"Polynesia", + Status = @"Dependency", + Longitude = -169.8, + Latitude = -19.05, + GdpPerPerson = 6150, + Rank = 235, + Unemployment = 15, + OilProduction = 4, + BirthRate = 17, + MedianAge = 51, + Electricity = 16785, + Televisions = 585, + PublicDebt = 31, + Internet = 1247 + }); + } +} diff --git a/samples/charts/data-chart/scatter-bubble-chart-tooltip/App.razor b/samples/charts/data-chart/scatter-bubble-chart-tooltip/App.razor new file mode 100644 index 0000000000..c4b86ed3b8 --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-tooltip/App.razor @@ -0,0 +1,115 @@ +@using IgniteUI.Blazor.Controls + +
+
+ + + + + + + + + + + + +
+
+ +@code { + + protected override async Task OnAfterRenderAsync(bool firstRender) + { + var chart = this.chart; + var xAxis = this.xAxis; + var yAxis = this.yAxis; + var bubbleSeries1 = this.bubbleSeries1; + + } + + private IgbDataChart chart; + private IgbNumericXAxis xAxis; + private IgbNumericYAxis yAxis; + private IgbBubbleSeries bubbleSeries1; + private IgbSizeScale _sizeScale1 = null; + public IgbSizeScale SizeScale1 + { + get + { + if (this._sizeScale1 == null) + { + var sizeScale1 = new IgbSizeScale(); + sizeScale1.IsLogarithmic = false; + sizeScale1.MinimumValue = 10; + sizeScale1.MaximumValue = 120; + this._sizeScale1 = sizeScale1; + } + return this._sizeScale1; + } + } + private IgbValueBrushScale _valueBrushScale1 = null; + public IgbValueBrushScale ValueBrushScale1 + { + get + { + if (this._valueBrushScale1 == null) + { + var valueBrushScale1 = new IgbValueBrushScale(); + valueBrushScale1.IsLogarithmic = false; + valueBrushScale1.MinimumValue = 1; + valueBrushScale1.MaximumValue = 260000; + valueBrushScale1.Brushes = "#89b5fa #146cf7 #5290f2"; + this._valueBrushScale1 = valueBrushScale1; + } + return this._valueBrushScale1; + } + } + + private WorldStats _worldStats = null; + public WorldStats WorldStats + { + get + { + if (_worldStats == null) + { + _worldStats = new WorldStats(); + } + return _worldStats; + } + } + +} \ No newline at end of file diff --git a/samples/charts/data-chart/scatter-bubble-chart-tooltip/BlazorClientApp.csproj b/samples/charts/data-chart/scatter-bubble-chart-tooltip/BlazorClientApp.csproj new file mode 100644 index 0000000000..5ad0404ecd --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-tooltip/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/scatter-bubble-chart-tooltip/BlazorClientApp.sln b/samples/charts/data-chart/scatter-bubble-chart-tooltip/BlazorClientApp.sln new file mode 100644 index 0000000000..1e2eda208a --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-tooltip/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/scatter-bubble-chart-tooltip/Program.cs b/samples/charts/data-chart/scatter-bubble-chart-tooltip/Program.cs new file mode 100644 index 0000000000..d536c926a8 --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-tooltip/Program.cs @@ -0,0 +1,34 @@ +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(IgbInputModule), + typeof(IgbNumberAbbreviatorModule), + typeof(IgbDataChartCoreModule), + typeof(IgbDataChartScatterModule), + typeof(IgbDataChartScatterCoreModule), + typeof(IgbDataChartInteractivityModule), + typeof(IgbDataChartAnnotationModule) + ); + await builder.Build().RunAsync(); + } + } +} diff --git a/samples/charts/data-chart/scatter-bubble-chart-tooltip/Properties/launchSettings.json b/samples/charts/data-chart/scatter-bubble-chart-tooltip/Properties/launchSettings.json new file mode 100644 index 0000000000..18bd6fb5bc --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-tooltip/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/scatter-bubble-chart-tooltip/ReadMe.md b/samples/charts/data-chart/scatter-bubble-chart-tooltip/ReadMe.md new file mode 100644 index 0000000000..9112ebf64a --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-tooltip/ReadMe.md @@ -0,0 +1,70 @@ + + + +This folder contains implementation of Blazor application with example of Scatter Bubble Chart Tooltip feature using [Data Chart](https://www.infragistics.com/products/ignite-ui-blazor/blazor/components/general-getting-started.html) component. + + + + + + + View Docs + + + View Code + + + Run Sample + + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-blazor-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-blazor-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Setup + +- instal **.NET SDK** from this [website](https://dotnet.microsoft.com/learn/aspnet/blazor-tutorial/install) + +## Running App in Visual Studio 2019 + +NOTE: VS 2019 has better code highlighting and error detection than VS Code does. + +- open **Visual Studio 2019** as an administrator + +- open the **BlazorClientApp.sln** solution + +- right click solution and select **Restore NuGet Packages** menu item + +- click **Debug** menu and select **Start Debugging** or press **F5** key + + +## Running App in VS Code + +- open **VS Code** as an administrator + +- open this folder in **VS Code** + +- open a terminal window + +- to restore assemblies, run this command: +```dotnet restore``` + +- to run samples, run this command: +```dotnet watch run``` + +- wait for for message: +**Now listening on: http://localhost:4200** + +- open **http://localhost:4200** in your browser + + +## Resources + +- [Razor Component Models](https://www.codemag.com/article/1911052) +- [Razor Syntax](https://docs.microsoft.com/en-us/aspnet/core/blazor/components/?view=aspnetcore-3.1#razor-syntax) +- [Getting reference to components](https://docs.microsoft.com/en-us/aspnet/core/blazor/components/?view=aspnetcore-3.1#capture-references-to-components) diff --git a/samples/charts/data-chart/scatter-bubble-chart-tooltip/WorldStats.cs b/samples/charts/data-chart/scatter-bubble-chart-tooltip/WorldStats.cs new file mode 100644 index 0000000000..b3edbfa500 --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-tooltip/WorldStats.cs @@ -0,0 +1,5415 @@ +using System; +using System.Collections.Generic; +public class WorldStatsItem +{ + public string Code { get; set; } + public string Name { get; set; } + public string Continent { get; set; } + public double Population { get; set; } + public double GdpTotal { get; set; } + public string Economy { get; set; } + public string Region { get; set; } + public string Status { get; set; } + public double Longitude { get; set; } + public double Latitude { get; set; } + public double GdpPerPerson { get; set; } + public double Rank { get; set; } + public double Unemployment { get; set; } + public double OilProduction { get; set; } + public double BirthRate { get; set; } + public double MedianAge { get; set; } + public double Electricity { get; set; } + public double Televisions { get; set; } + public double PublicDebt { get; set; } + public double Internet { get; set; } +} + +public class WorldStats + : List +{ + public WorldStats() + { + this.Add(new WorldStatsItem() + { + Code = @"CHN", + Name = @"China", + Continent = @"Asia", + Population = 1379302771, + GdpTotal = 21140000, + Economy = @"Emerging", + Region = @"Eastern Asia", + Status = @"Country", + Longitude = 104.18, + Latitude = 35.887, + GdpPerPerson = 15327, + Rank = 1, + Unemployment = 4, + OilProduction = 3725000, + BirthRate = 14, + MedianAge = 34, + Electricity = 3256000, + Televisions = 400000000, + PublicDebt = 18, + Internet = 253000000 + }); + this.Add(new WorldStatsItem() + { + Code = @"IND", + Name = @"India", + Continent = @"Asia", + Population = 1281935911, + GdpTotal = 8721000, + Economy = @"Emerging", + Region = @"Southern Asia", + Status = @"Country", + Longitude = 78.022, + Latitude = 22.665, + GdpPerPerson = 6803, + Rank = 2, + Unemployment = 7, + OilProduction = 810000, + BirthRate = 22, + MedianAge = 25, + Electricity = 661600, + Televisions = 63000000, + PublicDebt = 58, + Internet = 80000000 + }); + this.Add(new WorldStatsItem() + { + Code = @"USA", + Name = @"United States", + Continent = @"North America", + Population = 326625791, + GdpTotal = 18560000, + Economy = @"Developed", + Region = @"Northern America", + Status = @"Country", + Longitude = -101.8, + Latitude = 39.818, + GdpPerPerson = 56823, + Rank = 3, + Unemployment = 5, + OilProduction = 7460000, + BirthRate = 14, + MedianAge = 37, + Electricity = 4062000, + Televisions = 219000000, + PublicDebt = 61, + Internet = 223000000 + }); + this.Add(new WorldStatsItem() + { + Code = @"IDN", + Name = @"Indonesia", + Continent = @"Asia", + Population = 260580739, + GdpTotal = 3028000, + Economy = @"Emerging", + Region = @"Eastern Asia", + Status = @"Country", + Longitude = 102.72, + Latitude = -2.698, + GdpPerPerson = 11620, + Rank = 4, + Unemployment = 9, + OilProduction = 837500, + BirthRate = 19, + MedianAge = 27, + Electricity = 125900, + Televisions = 13750000, + PublicDebt = 34, + Internet = 13000000 + }); + this.Add(new WorldStatsItem() + { + Code = @"BRA", + Name = @"Brazil", + Continent = @"South America", + Population = 207353391, + GdpTotal = 3081000, + Economy = @"Emerging", + Region = @"South America", + Status = @"Country", + Longitude = -48.88, + Latitude = -12.89, + GdpPerPerson = 14859, + Rank = 5, + Unemployment = 9, + OilProduction = 1797000, + BirthRate = 19, + MedianAge = 28, + Electricity = 396400, + Televisions = 36500000, + PublicDebt = 45, + Internet = 50000000 + }); + this.Add(new WorldStatsItem() + { + Code = @"PAK", + Name = @"Pakistan", + Continent = @"Asia", + Population = 204924861, + GdpTotal = 988200, + Economy = @"Emerging", + Region = @"Southern Asia", + Status = @"Country", + Longitude = 67.624, + Latitude = 28.421, + GdpPerPerson = 4822, + Rank = 6, + Unemployment = 6, + OilProduction = 62000, + BirthRate = 28, + MedianAge = 21, + Electricity = 89820, + Televisions = 3100000, + PublicDebt = 51, + Internet = 17500000 + }); + this.Add(new WorldStatsItem() + { + Code = @"NGA", + Name = @"Nigeria", + Continent = @"Africa", + Population = 190632261, + GdpTotal = 1089000, + Economy = @"Emerging", + Region = @"Western Africa", + Status = @"Country", + Longitude = 8.657, + Latitude = 9.075, + GdpPerPerson = 5713, + Rank = 7, + Unemployment = 5, + OilProduction = 2166000, + BirthRate = 37, + MedianAge = 19, + Electricity = 22530, + Televisions = 6900000, + PublicDebt = 14, + Internet = 10000000 + }); + this.Add(new WorldStatsItem() + { + Code = @"BGD", + Name = @"Bangladesh", + Continent = @"Asia", + Population = 157826578, + GdpTotal = 628400, + Economy = @"Least developed", + Region = @"Southern Asia", + Status = @"Country", + Longitude = 89.935, + Latitude = 24.474, + GdpPerPerson = 3982, + Rank = 8, + Unemployment = 3, + OilProduction = 6746, + BirthRate = 29, + MedianAge = 23, + Electricity = 21350, + Televisions = 770000, + PublicDebt = 37, + Internet = 500000 + }); + this.Add(new WorldStatsItem() + { + Code = @"RUS", + Name = @"Russia", + Continent = @"Europe", + Population = 142257519, + GdpTotal = 3745000, + Economy = @"Emerging", + Region = @"Eastern Europe", + Status = @"Country", + Longitude = 42.379, + Latitude = 56.974, + GdpPerPerson = 26325, + Rank = 9, + Unemployment = 6, + OilProduction = 9870000, + BirthRate = 11, + MedianAge = 38, + Electricity = 1000000, + Televisions = 60500000, + PublicDebt = 6, + Internet = 30000000 + }); + this.Add(new WorldStatsItem() + { + Code = @"JPN", + Name = @"Japan", + Continent = @"Asia", + Population = 126451398, + GdpTotal = 4932000, + Economy = @"Developed", + Region = @"Eastern Asia", + Status = @"Country", + Longitude = 138.48, + Latitude = 36.519, + GdpPerPerson = 39003, + Rank = 10, + Unemployment = 4, + OilProduction = 125000, + BirthRate = 8, + MedianAge = 44, + Electricity = 1025000, + Televisions = 86500000, + PublicDebt = 170, + Internet = 88110000 + }); + this.Add(new WorldStatsItem() + { + Code = @"MEX", + Name = @"Mexico", + Continent = @"North America", + Population = 124574795, + GdpTotal = 2307000, + Economy = @"Emerging", + Region = @"Central America", + Status = @"Country", + Longitude = -102.5, + Latitude = 23.63, + GdpPerPerson = 18519, + Rank = 11, + Unemployment = 4, + OilProduction = 3083000, + BirthRate = 20, + MedianAge = 26, + Electricity = 222400, + Televisions = 25600000, + PublicDebt = 23, + Internet = 22812000 + }); + this.Add(new WorldStatsItem() + { + Code = @"ETH", + Name = @"Ethiopia", + Continent = @"Africa", + Population = 105350020, + GdpTotal = 174700, + Economy = @"Least developed", + Region = @"Eastern Africa", + Status = @"Country", + Longitude = 40.489, + Latitude = 9.154, + GdpPerPerson = 1658, + Rank = 12, + Unemployment = 5, + OilProduction = 1, + BirthRate = 25, + MedianAge = 52, + Electricity = 60942, + Televisions = 66893500, + PublicDebt = 45, + Internet = 291000 + }); + this.Add(new WorldStatsItem() + { + Code = @"PHL", + Name = @"Philippines", + Continent = @"Asia", + Population = 104256076, + GdpTotal = 801900, + Economy = @"Emerging", + Region = @"Eastern Asia", + Status = @"Country", + Longitude = 121.4, + Latitude = 16.78, + GdpPerPerson = 7692, + Rank = 13, + Unemployment = 7, + OilProduction = 0, + BirthRate = 26, + MedianAge = 22, + Electricity = 53670, + Televisions = 3700000, + PublicDebt = 56, + Internet = 5300000 + }); + this.Add(new WorldStatsItem() + { + Code = @"EGY", + Name = @"Egypt", + Continent = @"Africa", + Population = 97041072, + GdpTotal = 1105000, + Economy = @"Emerging", + Region = @"Middle East", + Status = @"Country", + Longitude = 30.787, + Latitude = 26.825, + GdpPerPerson = 11387, + Rank = 14, + Unemployment = 9, + OilProduction = 665000, + BirthRate = 22, + MedianAge = 25, + Electricity = 102500, + Televisions = 7700000, + PublicDebt = 106, + Internet = 8620000 + }); + this.Add(new WorldStatsItem() + { + Code = @"VNM", + Name = @"Vietnam", + Continent = @"Asia", + Population = 96160163, + GdpTotal = 594900, + Economy = @"Emerging", + Region = @"Eastern Asia", + Status = @"Country", + Longitude = 108.46, + Latitude = 13.711, + GdpPerPerson = 6187, + Rank = 15, + Unemployment = 4, + OilProduction = 324000, + BirthRate = 16, + MedianAge = 27, + Electricity = 59010, + Televisions = 3570000, + PublicDebt = 42, + Internet = 17870000 + }); + this.Add(new WorldStatsItem() + { + Code = @"COD", + Name = @"Dem. Rep. Congo", + Continent = @"Africa", + Population = 83301151, + GdpTotal = 66010, + Economy = @"Least developed", + Region = @"Middle Africa", + Status = @"Country", + Longitude = 21.738, + Latitude = -4.071, + GdpPerPerson = 792, + Rank = 16, + Unemployment = 3, + OilProduction = 4, + BirthRate = 13, + MedianAge = 41, + Electricity = 48913, + Televisions = 55942436, + PublicDebt = 16, + Internet = 8903936 + }); + this.Add(new WorldStatsItem() + { + Code = @"IRN", + Name = @"Iran", + Continent = @"Asia", + Population = 82021564, + GdpTotal = 1459000, + Economy = @"Emerging", + Region = @"Middle East", + Status = @"Country", + Longitude = 53.664, + Latitude = 32.435, + GdpPerPerson = 17788, + Rank = 17, + Unemployment = 12, + OilProduction = 3956000, + BirthRate = 17, + MedianAge = 26, + Electricity = 170400, + Televisions = 4610000, + PublicDebt = 17, + Internet = 23000000 + }); + this.Add(new WorldStatsItem() + { + Code = @"TUR", + Name = @"Turkey", + Continent = @"Asia", + Population = 80845215, + GdpTotal = 1670000, + Economy = @"Emerging", + Region = @"Middle East", + Status = @"Country", + Longitude = 35.243, + Latitude = 38.962, + GdpPerPerson = 20657, + Rank = 18, + Unemployment = 10, + OilProduction = 45460, + BirthRate = 16, + MedianAge = 29, + Electricity = 154200, + Televisions = 20900000, + PublicDebt = 39, + Internet = 13150000 + }); + this.Add(new WorldStatsItem() + { + Code = @"DEU", + Name = @"Germany", + Continent = @"Europe", + Population = 80594017, + GdpTotal = 3979000, + Economy = @"Developed", + Region = @"Western Europe", + Status = @"Country", + Longitude = 11.43, + Latitude = 52.237, + GdpPerPerson = 49371, + Rank = 19, + Unemployment = 9, + OilProduction = 141700, + BirthRate = 8, + MedianAge = 43, + Electricity = 579400, + Televisions = 51400000, + PublicDebt = 65, + Internet = 42500000 + }); + this.Add(new WorldStatsItem() + { + Code = @"THA", + Name = @"Thailand", + Continent = @"Asia", + Population = 68414135, + GdpTotal = 1161000, + Economy = @"Emerging", + Region = @"Eastern Asia", + Status = @"Country", + Longitude = 100.65, + Latitude = 15.345, + GdpPerPerson = 16970, + Rank = 20, + Unemployment = 1, + OilProduction = 310000, + BirthRate = 14, + MedianAge = 33, + Electricity = 124600, + Televisions = 15190000, + PublicDebt = 38, + Internet = 13416000 + }); + this.Add(new WorldStatsItem() + { + Code = @"FRA", + Name = @"France", + Continent = @"Europe", + Population = 67106161, + GdpTotal = 2699000, + Economy = @"Developed", + Region = @"Western Europe", + Status = @"Country", + Longitude = 2.267, + Latitude = 46.645, + GdpPerPerson = 40220, + Rank = 21, + Unemployment = 12, + OilProduction = 1, + BirthRate = 24, + MedianAge = 48, + Electricity = 63711, + Televisions = 43156970, + PublicDebt = 11, + Internet = 7012454 + }); + this.Add(new WorldStatsItem() + { + Code = @"GBR", + Name = @"United Kingdom", + Continent = @"Europe", + Population = 64769452, + GdpTotal = 2788000, + Economy = @"Developed", + Region = @"Northern Europe", + Status = @"Country", + Longitude = -1.233, + Latitude = 52.242, + GdpPerPerson = 43045, + Rank = 22, + Unemployment = 5, + OilProduction = 1636000, + BirthRate = 11, + MedianAge = 40, + Electricity = 372600, + Televisions = 30500000, + PublicDebt = 44, + Internet = 40200000 + }); + this.Add(new WorldStatsItem() + { + Code = @"ITA", + Name = @"Italy", + Continent = @"Europe", + Population = 62137802, + GdpTotal = 2221000, + Economy = @"Developed", + Region = @"Southern Europe", + Status = @"Country", + Longitude = 15.701, + Latitude = 40.885, + GdpPerPerson = 35743, + Rank = 23, + Unemployment = 6, + OilProduction = 164800, + BirthRate = 8, + MedianAge = 43, + Electricity = 278500, + Televisions = 30300000, + PublicDebt = 104, + Internet = 32000000 + }); + this.Add(new WorldStatsItem() + { + Code = @"MMR", + Name = @"Myanmar", + Continent = @"Asia", + Population = 55123814, + GdpTotal = 311100, + Economy = @"Least developed", + Region = @"Eastern Asia", + Status = @"Country", + Longitude = 96.028, + Latitude = 21.509, + GdpPerPerson = 5644, + Rank = 24, + Unemployment = 13, + OilProduction = 4, + BirthRate = 24, + MedianAge = 37, + Electricity = 26955, + Televisions = 39322205, + PublicDebt = 18, + Internet = 30207772 + }); + this.Add(new WorldStatsItem() + { + Code = @"ZAF", + Name = @"South Africa", + Continent = @"Africa", + Population = 54841552, + GdpTotal = 739100, + Economy = @"Emerging", + Region = @"Southern Africa", + Status = @"Country", + Longitude = 22.489, + Latitude = -32.4, + GdpPerPerson = 13477, + Rank = 25, + Unemployment = 24, + OilProduction = 200000, + BirthRate = 20, + MedianAge = 24, + Electricity = 264000, + Televisions = 6000000, + PublicDebt = 31, + Internet = 5100000 + }); + this.Add(new WorldStatsItem() + { + Code = @"TZA", + Name = @"Tanzania", + Continent = @"Africa", + Population = 53950935, + GdpTotal = 150600, + Economy = @"Least developed", + Region = @"Eastern Africa", + Status = @"Country", + Longitude = 34.894, + Latitude = -6.356, + GdpPerPerson = 2791, + Rank = 26, + Unemployment = 6, + OilProduction = 3, + BirthRate = 9, + MedianAge = 34, + Electricity = 10186, + Televisions = 35987980, + PublicDebt = 20, + Internet = 400000 + }); + this.Add(new WorldStatsItem() + { + Code = @"KOR", + Name = @"South Korea", + Continent = @"Asia", + Population = 51181299, + GdpTotal = 1929000, + Economy = @"Emerging", + Region = @"Eastern Asia", + Status = @"Country", + Longitude = 128.29, + Latitude = 36.399, + GdpPerPerson = 37690, + Rank = 27, + Unemployment = 3, + OilProduction = 17050, + BirthRate = 9, + MedianAge = 37, + Electricity = 403200, + Televisions = 15900000, + PublicDebt = 28, + Internet = 35590000 + }); + this.Add(new WorldStatsItem() + { + Code = @"ESP", + Name = @"Spain", + Continent = @"Europe", + Population = 48958159, + GdpTotal = 1690000, + Economy = @"Developed", + Region = @"Southern Europe", + Status = @"Country", + Longitude = -2.892, + Latitude = 40.569, + GdpPerPerson = 34519, + Rank = 28, + Unemployment = 8, + OilProduction = 29350, + BirthRate = 10, + MedianAge = 41, + Electricity = 270300, + Televisions = 16200000, + PublicDebt = 36, + Internet = 19690000 + }); + this.Add(new WorldStatsItem() + { + Code = @"COL", + Name = @"Colombia", + Continent = @"South America", + Population = 47698524, + GdpTotal = 688000, + Economy = @"Developing", + Region = @"South America", + Status = @"Country", + Longitude = -72.95, + Latitude = 4.099, + GdpPerPerson = 14424, + Rank = 29, + Unemployment = 11, + OilProduction = 531300, + BirthRate = 20, + MedianAge = 27, + Electricity = 50470, + Televisions = 4590000, + PublicDebt = 53, + Internet = 12100000 + }); + this.Add(new WorldStatsItem() + { + Code = @"KEN", + Name = @"Kenya", + Continent = @"Africa", + Population = 47615739, + GdpTotal = 152700, + Economy = @"Emerging", + Region = @"Eastern Africa", + Status = @"Country", + Longitude = 37.929, + Latitude = 0.4, + GdpPerPerson = 3207, + Rank = 30, + Unemployment = 40, + OilProduction = 0, + BirthRate = 38, + MedianAge = 19, + Electricity = 5502, + Televisions = 730000, + PublicDebt = 49, + Internet = 3000000 + }); + this.Add(new WorldStatsItem() + { + Code = @"ARG", + Name = @"Argentina", + Continent = @"South America", + Population = 44293293, + GdpTotal = 879400, + Economy = @"Emerging", + Region = @"South America", + Status = @"Country", + Longitude = -64.84, + Latitude = -33.07, + GdpPerPerson = 19854, + Rank = 31, + Unemployment = 9, + OilProduction = 730000, + BirthRate = 18, + MedianAge = 30, + Electricity = 101100, + Televisions = 7950000, + PublicDebt = 56, + Internet = 9309000 + }); + this.Add(new WorldStatsItem() + { + Code = @"UKR", + Name = @"Ukraine", + Continent = @"Europe", + Population = 44033874, + GdpTotal = 352600, + Economy = @"Developing", + Region = @"Eastern Europe", + Status = @"Country", + Longitude = 30.86, + Latitude = 49.723, + GdpPerPerson = 8007, + Rank = 32, + Unemployment = 2, + OilProduction = 90400, + BirthRate = 10, + MedianAge = 39, + Electricity = 192100, + Televisions = 18050000, + PublicDebt = 12, + Internet = 10000000 + }); + this.Add(new WorldStatsItem() + { + Code = @"DZA", + Name = @"Algeria", + Continent = @"Africa", + Population = 40969443, + GdpTotal = 609400, + Economy = @"Developing", + Region = @"Northern Africa", + Status = @"Country", + Longitude = 1.642, + Latitude = 28.04, + GdpPerPerson = 14875, + Rank = 33, + Unemployment = 12, + OilProduction = 1358000, + BirthRate = 17, + MedianAge = 26, + Electricity = 31910, + Televisions = 3100000, + PublicDebt = 18, + Internet = 3500000 + }); + this.Add(new WorldStatsItem() + { + Code = @"UGA", + Name = @"Uganda", + Continent = @"Africa", + Population = 39570125, + GdpTotal = 84930, + Economy = @"Least developed", + Region = @"Eastern Africa", + Status = @"Country", + Longitude = 32.27, + Latitude = 1.375, + GdpPerPerson = 2146, + Rank = 34, + Unemployment = 10, + OilProduction = 1, + BirthRate = 10, + MedianAge = 32, + Electricity = 35388, + Televisions = 27867123, + PublicDebt = 21, + Internet = 2000000 + }); + this.Add(new WorldStatsItem() + { + Code = @"IRQ", + Name = @"Iraq", + Continent = @"Asia", + Population = 39192111, + GdpTotal = 596700, + Economy = @"Developing", + Region = @"Middle East", + Status = @"Country", + Longitude = 43.66, + Latitude = 33.218, + GdpPerPerson = 15225, + Rank = 35, + Unemployment = 6, + OilProduction = 0, + BirthRate = 20, + MedianAge = 44, + Electricity = 48545, + Televisions = 13178804, + PublicDebt = 40, + Internet = 9538092 + }); + this.Add(new WorldStatsItem() + { + Code = @"POL", + Name = @"Poland", + Continent = @"Europe", + Population = 38476269, + GdpTotal = 1052000, + Economy = @"Developed", + Region = @"Eastern Europe", + Status = @"Country", + Longitude = 20.073, + Latitude = 52.374, + GdpPerPerson = 27342, + Rank = 36, + Unemployment = 13, + OilProduction = 0, + BirthRate = 10, + MedianAge = 38, + Electricity = 146200, + Televisions = 13050000, + PublicDebt = 43, + Internet = 16000000 + }); + this.Add(new WorldStatsItem() + { + Code = @"SDN", + Name = @"Sudan", + Continent = @"Africa", + Population = 37345935, + GdpTotal = 176300, + Economy = @"Developing", + Region = @"Northern Africa", + Status = @"Country", + Longitude = 30.217, + Latitude = 15.434, + GdpPerPerson = 4721, + Rank = 37, + Unemployment = 19, + OilProduction = 484500, + BirthRate = 34, + MedianAge = 19, + Electricity = 3944, + Televisions = 2380000, + PublicDebt = 106, + Internet = 1500000 + }); + this.Add(new WorldStatsItem() + { + Code = @"CAN", + Name = @"Canada", + Continent = @"North America", + Population = 35623680, + GdpTotal = 1674000, + Economy = @"Developed", + Region = @"Northern America", + Status = @"Country", + Longitude = -108, + Latitude = 55.855, + GdpPerPerson = 46991, + Rank = 38, + Unemployment = 6, + OilProduction = 3310000, + BirthRate = 10, + MedianAge = 40, + Electricity = 609600, + Televisions = 21500000, + PublicDebt = 64, + Internet = 28000000 + }); + this.Add(new WorldStatsItem() + { + Code = @"AFG", + Name = @"Afghanistan", + Continent = @"Asia", + Population = 34124811, + GdpTotal = 64080, + Economy = @"Least developed", + Region = @"Southern Asia", + Status = @"Country", + Longitude = 66.041, + Latitude = 33.977, + GdpPerPerson = 1878, + Rank = 39, + Unemployment = 9, + OilProduction = 2, + BirthRate = 15, + MedianAge = 39, + Electricity = 64532, + Televisions = 15374294, + PublicDebt = 25, + Internet = 18662148 + }); + this.Add(new WorldStatsItem() + { + Code = @"MAR", + Name = @"Morocco", + Continent = @"Africa", + Population = 33986655, + GdpTotal = 282800, + Economy = @"Developing", + Region = @"Northern Africa", + Status = @"Country", + Longitude = -5.707, + Latitude = 32.104, + GdpPerPerson = 8321, + Rank = 40, + Unemployment = 10, + OilProduction = 300, + BirthRate = 21, + MedianAge = 25, + Electricity = 21370, + Televisions = 3100000, + PublicDebt = 67, + Internet = 7300000 + }); + this.Add(new WorldStatsItem() + { + Code = @"MYS", + Name = @"Malaysia", + Continent = @"Asia", + Population = 31381992, + GdpTotal = 863000, + Economy = @"Developing", + Region = @"Eastern Asia", + Status = @"Country", + Longitude = 101.72, + Latitude = 4.89, + GdpPerPerson = 27500, + Rank = 41, + Unemployment = 3, + OilProduction = 757500, + BirthRate = 22, + MedianAge = 25, + Electricity = 82360, + Televisions = 10800000, + PublicDebt = 42, + Internet = 15868000 + }); + this.Add(new WorldStatsItem() + { + Code = @"VEN", + Name = @"Venezuela", + Continent = @"South America", + Population = 31304016, + GdpTotal = 468600, + Economy = @"Emerging", + Region = @"South America", + Status = @"Country", + Longitude = -64.78, + Latitude = 6.695, + GdpPerPerson = 14969, + Rank = 42, + Unemployment = 9, + OilProduction = 2398000, + BirthRate = 21, + MedianAge = 25, + Electricity = 99200, + Televisions = 4100000, + PublicDebt = 19, + Internet = 5720000 + }); + this.Add(new WorldStatsItem() + { + Code = @"PER", + Name = @"Peru", + Continent = @"South America", + Population = 31036656, + GdpTotal = 410400, + Economy = @"Emerging", + Region = @"South America", + Status = @"Country", + Longitude = -73.82, + Latitude = -12.89, + GdpPerPerson = 13223, + Rank = 43, + Unemployment = 7, + OilProduction = 119000, + BirthRate = 20, + MedianAge = 26, + Electricity = 24970, + Televisions = 3060000, + PublicDebt = 29, + Internet = 7636000 + }); + this.Add(new WorldStatsItem() + { + Code = @"UZB", + Name = @"Uzbekistan", + Continent = @"Asia", + Population = 29748859, + GdpTotal = 202300, + Economy = @"Developing", + Region = @"Central Asia", + Status = @"Country", + Longitude = 63.288, + Latitude = 42.338, + GdpPerPerson = 6800, + Rank = 44, + Unemployment = 1, + OilProduction = 109400, + BirthRate = 18, + MedianAge = 24, + Electricity = 49000, + Televisions = 6400000, + PublicDebt = 19, + Internet = 1200000 + }); + this.Add(new WorldStatsItem() + { + Code = @"NPL", + Name = @"Nepal", + Continent = @"Asia", + Population = 29384297, + GdpTotal = 71520, + Economy = @"Least developed", + Region = @"Southern Asia", + Status = @"Country", + Longitude = 82.328, + Latitude = 28.843, + GdpPerPerson = 2434, + Rank = 45, + Unemployment = 5, + OilProduction = 3, + BirthRate = 18, + MedianAge = 34, + Electricity = 68842, + Televisions = 21075997, + PublicDebt = 16, + Internet = 7780693 + }); + this.Add(new WorldStatsItem() + { + Code = @"AGO", + Name = @"Angola", + Continent = @"Africa", + Population = 29310273, + GdpTotal = 189000, + Economy = @"Least developed", + Region = @"Middle Africa", + Status = @"Country", + Longitude = 18.097, + Latitude = -12.37, + GdpPerPerson = 6448, + Rank = 46, + Unemployment = 14, + OilProduction = 0, + BirthRate = 15, + MedianAge = 38, + Electricity = 25890, + Televisions = 21283158, + PublicDebt = 12, + Internet = 100000 + }); + this.Add(new WorldStatsItem() + { + Code = @"SAU", + Name = @"Saudi Arabia", + Continent = @"Asia", + Population = 28571770, + GdpTotal = 1731000, + Economy = @"Developed", + Region = @"Middle East", + Status = @"Country", + Longitude = 45.129, + Latitude = 24.248, + GdpPerPerson = 60584, + Rank = 47, + Unemployment = 13, + OilProduction = 11000000, + BirthRate = 29, + MedianAge = 22, + Electricity = 165600, + Televisions = 5100000, + PublicDebt = 24, + Internet = 6200000 + }); + this.Add(new WorldStatsItem() + { + Code = @"YEM", + Name = @"Yemen", + Continent = @"Asia", + Population = 28036829, + GdpTotal = 73450, + Economy = @"Least developed", + Region = @"Middle East", + Status = @"Country", + Longitude = 48.53, + Latitude = 15.658, + GdpPerPerson = 2620, + Rank = 48, + Unemployment = 35, + OilProduction = 339200, + BirthRate = 42, + MedianAge = 17, + Electricity = 4456, + Televisions = 470000, + PublicDebt = 34, + Internet = 320000 + }); + this.Add(new WorldStatsItem() + { + Code = @"GHA", + Name = @"Ghana", + Continent = @"Africa", + Population = 27499924, + GdpTotal = 120800, + Economy = @"Developing", + Region = @"Western Africa", + Status = @"Country", + Longitude = -0.893, + Latitude = 8.607, + GdpPerPerson = 4393, + Rank = 49, + Unemployment = 11, + OilProduction = 700, + BirthRate = 29, + MedianAge = 20, + Electricity = 7042, + Televisions = 1900000, + PublicDebt = 59, + Internet = 650000 + }); + this.Add(new WorldStatsItem() + { + Code = @"MOZ", + Name = @"Mozambique", + Continent = @"Africa", + Population = 26573706, + GdpTotal = 35010, + Economy = @"Least developed", + Region = @"Eastern Africa", + Status = @"Country", + Longitude = 38.075, + Latitude = -15.41, + GdpPerPerson = 1317, + Rank = 50, + Unemployment = 21, + OilProduction = 0, + BirthRate = 38, + MedianAge = 17, + Electricity = 13170, + Televisions = 67600, + PublicDebt = 22, + Internet = 200000 + }); + this.Add(new WorldStatsItem() + { + Code = @"PRK", + Name = @"North Korea", + Continent = @"Asia", + Population = 25248140, + GdpTotal = 40000, + Economy = @"Least developed", + Region = @"Eastern Asia", + Status = @"Country", + Longitude = 127.01, + Latitude = 40.333, + GdpPerPerson = 1584, + Rank = 51, + Unemployment = 13, + OilProduction = 0, + BirthRate = 23, + MedianAge = 55, + Electricity = 35619, + Televisions = 16501842, + PublicDebt = 30, + Internet = 2340760 + }); + this.Add(new WorldStatsItem() + { + Code = @"MDG", + Name = @"Madagascar", + Continent = @"Africa", + Population = 25054161, + GdpTotal = 36860, + Economy = @"Least developed", + Region = @"Eastern Africa", + Status = @"Country", + Longitude = 46.87, + Latitude = -18.82, + GdpPerPerson = 1471, + Rank = 52, + Unemployment = 15, + OilProduction = 0, + BirthRate = 20, + MedianAge = 36, + Electricity = 86068, + Televisions = 9470858, + PublicDebt = 31, + Internet = 1407981 + }); + this.Add(new WorldStatsItem() + { + Code = @"CMR", + Name = @"Cameroon", + Continent = @"Africa", + Population = 24994885, + GdpTotal = 77240, + Economy = @"Developing", + Region = @"Middle Africa", + Status = @"Country", + Longitude = 12.451, + Latitude = 4.365, + GdpPerPerson = 3090, + Rank = 53, + Unemployment = 30, + OilProduction = 85300, + BirthRate = 35, + MedianAge = 19, + Electricity = 4090, + Televisions = 450000, + PublicDebt = 16, + Internet = 370000 + }); + this.Add(new WorldStatsItem() + { + Code = @"CIV", + Name = @"Ivory Coast", + Continent = @"Africa", + Population = 24184810, + GdpTotal = 87120, + Economy = @"Developing", + Region = @"Western Africa", + Status = @"Country", + Longitude = -5.555, + Latitude = 7.538, + GdpPerPerson = 3602, + Rank = 54, + Unemployment = 3, + OilProduction = 1, + BirthRate = 17, + MedianAge = 55, + Electricity = 49302, + Televisions = 9034402, + PublicDebt = 75, + Internet = 300000 + }); + this.Add(new WorldStatsItem() + { + Code = @"TWN", + Name = @"Taiwan", + Continent = @"Asia", + Population = 23508428, + GdpTotal = 1127000, + Economy = @"Developed", + Region = @"Eastern Asia", + Status = @"Country", + Longitude = 120.96, + Latitude = 23.636, + GdpPerPerson = 47940, + Rank = 55, + Unemployment = 4, + OilProduction = 600, + BirthRate = 9, + MedianAge = 36, + Electricity = 235000, + Televisions = 8800000, + PublicDebt = 28, + Internet = 14760000 + }); + this.Add(new WorldStatsItem() + { + Code = @"AUS", + Name = @"Australia", + Continent = @"Oceania", + Population = 23232413, + GdpTotal = 1189000, + Economy = @"Developed", + Region = @"Australia", + Status = @"Country", + Longitude = 135.87, + Latitude = -25.63, + GdpPerPerson = 51178, + Rank = 56, + Unemployment = 4, + OilProduction = 540000, + BirthRate = 13, + MedianAge = 37, + Electricity = 236700, + Televisions = 10150000, + PublicDebt = 16, + Internet = 11240000 + }); + this.Add(new WorldStatsItem() + { + Code = @"LKA", + Name = @"Sri Lanka", + Continent = @"Asia", + Population = 22409381, + GdpTotal = 236700, + Economy = @"Developing", + Region = @"Southern Asia", + Status = @"Country", + Longitude = 80.792, + Latitude = 7.881, + GdpPerPerson = 10563, + Rank = 57, + Unemployment = 6, + OilProduction = 0, + BirthRate = 17, + MedianAge = 30, + Electricity = 8411, + Televisions = 1530000, + PublicDebt = 86, + Internet = 771700 + }); + this.Add(new WorldStatsItem() + { + Code = @"ROU", + Name = @"Romania", + Continent = @"Europe", + Population = 21529967, + GdpTotal = 441000, + Economy = @"Developed", + Region = @"Eastern Europe", + Status = @"Country", + Longitude = 24.974, + Latitude = 45.967, + GdpPerPerson = 20483, + Rank = 58, + Unemployment = 4, + OilProduction = 115000, + BirthRate = 11, + MedianAge = 37, + Electricity = 60520, + Televisions = 5250000, + PublicDebt = 13, + Internet = 12000000 + }); + this.Add(new WorldStatsItem() + { + Code = @"BFA", + Name = @"Burkina Faso", + Continent = @"Africa", + Population = 20107509, + GdpTotal = 32990, + Economy = @"Least developed", + Region = @"Western Africa", + Status = @"Country", + Longitude = -1.567, + Latitude = 12.251, + GdpPerPerson = 1641, + Rank = 59, + Unemployment = 4, + OilProduction = 5, + BirthRate = 21, + MedianAge = 30, + Electricity = 82658, + Televisions = 7478745, + PublicDebt = 14, + Internet = 5896530 + }); + this.Add(new WorldStatsItem() + { + Code = @"NER", + Name = @"Niger", + Continent = @"Africa", + Population = 19245344, + GdpTotal = 20150, + Economy = @"Least developed", + Region = @"Northern Africa", + Status = @"Country", + Longitude = 10.845, + Latitude = 17.92, + GdpPerPerson = 1047, + Rank = 60, + Unemployment = 9, + OilProduction = 5, + BirthRate = 18, + MedianAge = 53, + Electricity = 10652, + Televisions = 8203307, + PublicDebt = 17, + Internet = 157021 + }); + this.Add(new WorldStatsItem() + { + Code = @"MWI", + Name = @"Malawi", + Continent = @"Africa", + Population = 19196246, + GdpTotal = 21200, + Economy = @"Least developed", + Region = @"Eastern Africa", + Status = @"Country", + Longitude = 34.282, + Latitude = -13.26, + GdpPerPerson = 1104, + Rank = 61, + Unemployment = 12, + OilProduction = 3, + BirthRate = 12, + MedianAge = 51, + Electricity = 20676, + Televisions = 4938675, + PublicDebt = 51, + Internet = 139500 + }); + this.Add(new WorldStatsItem() + { + Code = @"KAZ", + Name = @"Kazakhstan", + Continent = @"Asia", + Population = 18556698, + GdpTotal = 460700, + Economy = @"Developing", + Region = @"Central Asia", + Status = @"Country", + Longitude = 66.966, + Latitude = 47.999, + GdpPerPerson = 24827, + Rank = 62, + Unemployment = 7, + OilProduction = 1355000, + BirthRate = 16, + MedianAge = 29, + Electricity = 76340, + Televisions = 3880000, + PublicDebt = 8, + Internet = 1901000 + }); + this.Add(new WorldStatsItem() + { + Code = @"SYR", + Name = @"Syria", + Continent = @"Asia", + Population = 18028549, + GdpTotal = 50280, + Economy = @"Developing", + Region = @"Middle East", + Status = @"Country", + Longitude = 39.062, + Latitude = 34.807, + GdpPerPerson = 2789, + Rank = 63, + Unemployment = 9, + OilProduction = 379000, + BirthRate = 27, + MedianAge = 21, + Electricity = 153200, + Televisions = 1050000, + PublicDebt = 38, + Internet = 3470000 + }); + this.Add(new WorldStatsItem() + { + Code = @"MLI", + Name = @"Mali", + Continent = @"Africa", + Population = 17885245, + GdpTotal = 38090, + Economy = @"Least developed", + Region = @"Western Africa", + Status = @"Country", + Longitude = -1.496, + Latitude = 17.867, + GdpPerPerson = 2130, + Rank = 64, + Unemployment = 4, + OilProduction = 4, + BirthRate = 21, + MedianAge = 46, + Electricity = 72483, + Televisions = 4783188, + PublicDebt = 38, + Internet = 8619386 + }); + this.Add(new WorldStatsItem() + { + Code = @"CHL", + Name = @"Chile", + Continent = @"South America", + Population = 17789267, + GdpTotal = 436100, + Economy = @"Emerging", + Region = @"South America", + Status = @"Country", + Longitude = -69.11, + Latitude = -23.36, + GdpPerPerson = 24515, + Rank = 65, + Unemployment = 7, + OilProduction = 15100, + BirthRate = 15, + MedianAge = 31, + Electricity = 47600, + Televisions = 3150000, + PublicDebt = 4, + Internet = 557000 + }); + this.Add(new WorldStatsItem() + { + Code = @"NLD", + Name = @"Netherlands", + Continent = @"Europe", + Population = 17084719, + GdpTotal = 870800, + Economy = @"Developed", + Region = @"Western Europe", + Status = @"Country", + Longitude = 6.272, + Latitude = 52.971, + GdpPerPerson = 50970, + Rank = 66, + Unemployment = 5, + OilProduction = 76000, + BirthRate = 11, + MedianAge = 40, + Electricity = 94340, + Televisions = 8100000, + PublicDebt = 46, + Internet = 15000000 + }); + this.Add(new WorldStatsItem() + { + Code = @"ECU", + Name = @"Ecuador", + Continent = @"South America", + Population = 16290913, + GdpTotal = 182400, + Economy = @"Developing", + Region = @"South America", + Status = @"Country", + Longitude = -77.98, + Latitude = -1.291, + GdpPerPerson = 11196, + Rank = 67, + Unemployment = 9, + OilProduction = 511100, + BirthRate = 22, + MedianAge = 24, + Electricity = 12940, + Televisions = 2500000, + PublicDebt = 33, + Internet = 1549000 + }); + this.Add(new WorldStatsItem() + { + Code = @"KHM", + Name = @"Cambodia", + Continent = @"Asia", + Population = 16204486, + GdpTotal = 58940, + Economy = @"Least developed", + Region = @"Eastern Asia", + Status = @"Country", + Longitude = 104.96, + Latitude = 12.558, + GdpPerPerson = 3637, + Rank = 68, + Unemployment = 15, + OilProduction = 1, + BirthRate = 17, + MedianAge = 50, + Electricity = 45509, + Televisions = 2489832, + PublicDebt = 22, + Internet = 11512560 + }); + this.Add(new WorldStatsItem() + { + Code = @"ZMB", + Name = @"Zambia", + Continent = @"Africa", + Population = 15972000, + GdpTotal = 65170, + Economy = @"Least developed", + Region = @"Eastern Africa", + Status = @"Country", + Longitude = 26.301, + Latitude = -14.3, + GdpPerPerson = 4080, + Rank = 69, + Unemployment = 50, + OilProduction = 150, + BirthRate = 41, + MedianAge = 17, + Electricity = 8850, + Televisions = 277000, + PublicDebt = 28, + Internet = 500000 + }); + this.Add(new WorldStatsItem() + { + Code = @"GTM", + Name = @"Guatemala", + Continent = @"North America", + Population = 15460732, + GdpTotal = 131800, + Economy = @"Developing", + Region = @"Central America", + Status = @"Country", + Longitude = -90.4, + Latitude = 15.225, + GdpPerPerson = 8525, + Rank = 70, + Unemployment = 3, + OilProduction = 13000, + BirthRate = 29, + MedianAge = 19, + Electricity = 7281, + Televisions = 1323000, + PublicDebt = 21, + Internet = 1320000 + }); + this.Add(new WorldStatsItem() + { + Code = @"SEN", + Name = @"Senegal", + Continent = @"Africa", + Population = 14668522, + GdpTotal = 39720, + Economy = @"Least developed", + Region = @"Western Africa", + Status = @"Country", + Longitude = -14.76, + Latitude = 15.47, + GdpPerPerson = 2708, + Rank = 71, + Unemployment = 48, + OilProduction = 0, + BirthRate = 37, + MedianAge = 19, + Electricity = 2159, + Televisions = 361000, + PublicDebt = 23, + Internet = 820000 + }); + this.Add(new WorldStatsItem() + { + Code = @"ZWE", + Name = @"Zimbabwe", + Continent = @"Africa", + Population = 13805084, + GdpTotal = 28330, + Economy = @"Emerging", + Region = @"Eastern Africa", + Status = @"Country", + Longitude = 29.115, + Latitude = -19.02, + GdpPerPerson = 2052, + Rank = 72, + Unemployment = 80, + OilProduction = 0, + BirthRate = 32, + MedianAge = 18, + Electricity = 9950, + Televisions = 370000, + PublicDebt = 218, + Internet = 1351000 + }); + this.Add(new WorldStatsItem() + { + Code = @"SSD", + Name = @"South Sudan", + Continent = @"Africa", + Population = 13026129, + GdpTotal = 20880, + Economy = @"Least developed", + Region = @"Eastern Africa", + Status = @"Country", + Longitude = 29.708, + Latitude = 7.857, + GdpPerPerson = 1603, + Rank = 73, + Unemployment = 11, + OilProduction = 5, + BirthRate = 8, + MedianAge = 43, + Electricity = 41476, + Televisions = 7716253, + PublicDebt = 41, + Internet = 4569804 + }); + this.Add(new WorldStatsItem() + { + Code = @"GIN", + Name = @"Guinea", + Continent = @"Africa", + Population = 12413867, + GdpTotal = 16080, + Economy = @"Least developed", + Region = @"Western Africa", + Status = @"Country", + Longitude = -9.522, + Latitude = 10.478, + GdpPerPerson = 1295, + Rank = 74, + Unemployment = 15, + OilProduction = 4, + BirthRate = 5, + MedianAge = 49, + Electricity = 15826, + Televisions = 6262180, + PublicDebt = 32, + Internet = 6439493 + }); + this.Add(new WorldStatsItem() + { + Code = @"TCD", + Name = @"Chad", + Continent = @"Africa", + Population = 12075985, + GdpTotal = 30590, + Economy = @"Least developed", + Region = @"Northern Africa", + Status = @"Country", + Longitude = 18.716, + Latitude = 15.46, + GdpPerPerson = 2533, + Rank = 75, + Unemployment = 15, + OilProduction = 2, + BirthRate = 25, + MedianAge = 46, + Electricity = 57747, + Televisions = 8629897, + PublicDebt = 33, + Internet = 6531943 + }); + this.Add(new WorldStatsItem() + { + Code = @"RWA", + Name = @"Rwanda", + Continent = @"Africa", + Population = 11901484, + GdpTotal = 21970, + Economy = @"Least developed", + Region = @"Eastern Africa", + Status = @"Country", + Longitude = 29.867, + Latitude = -1.936, + GdpPerPerson = 1846, + Rank = 76, + Unemployment = 14, + OilProduction = 0, + BirthRate = 23, + MedianAge = 51, + Electricity = 51710, + Televisions = 1363647, + PublicDebt = 36, + Internet = 2425128 + }); + this.Add(new WorldStatsItem() + { + Code = @"BEL", + Name = @"Belgium", + Continent = @"Europe", + Population = 11491346, + GdpTotal = 508600, + Economy = @"Developed", + Region = @"Western Europe", + Status = @"Country", + Longitude = 4.605, + Latitude = 50.911, + GdpPerPerson = 44259, + Rank = 77, + Unemployment = 8, + OilProduction = 9000, + BirthRate = 10, + MedianAge = 41, + Electricity = 80840, + Televisions = 4720000, + PublicDebt = 85, + Internet = 5220000 + }); + this.Add(new WorldStatsItem() + { + Code = @"BDI", + Name = @"Burundi", + Continent = @"Africa", + Population = 11466756, + GdpTotal = 7892, + Economy = @"Least developed", + Region = @"Eastern Africa", + Status = @"Country", + Longitude = 29.913, + Latitude = -3.384, + GdpPerPerson = 688, + Rank = 78, + Unemployment = 12, + OilProduction = 3, + BirthRate = 16, + MedianAge = 35, + Electricity = 43850, + Televisions = 2920735, + PublicDebt = 20, + Internet = 3908915 + }); + this.Add(new WorldStatsItem() + { + Code = @"TUN", + Name = @"Tunisia", + Continent = @"Africa", + Population = 11403800, + GdpTotal = 130800, + Economy = @"Developing", + Region = @"Northern Africa", + Status = @"Country", + Longitude = 9.516, + Latitude = 33.785, + GdpPerPerson = 11470, + Rank = 79, + Unemployment = 14, + OilProduction = 76900, + BirthRate = 16, + MedianAge = 29, + Electricity = 12850, + Televisions = 920000, + PublicDebt = 55, + Internet = 1722000 + }); + this.Add(new WorldStatsItem() + { + Code = @"CUB", + Name = @"Cuba", + Continent = @"North America", + Population = 11147407, + GdpTotal = 132900, + Economy = @"Emerging", + Region = @"Central America", + Status = @"Country", + Longitude = -80.54, + Latitude = 22.567, + GdpPerPerson = 11922, + Rank = 80, + Unemployment = 2, + OilProduction = 58300, + BirthRate = 11, + MedianAge = 37, + Electricity = 16450, + Televisions = 2640000, + PublicDebt = 37, + Internet = 1310000 + }); + this.Add(new WorldStatsItem() + { + Code = @"BOL", + Name = @"Bolivia", + Continent = @"South America", + Population = 11138234, + GdpTotal = 78350, + Economy = @"Emerging", + Region = @"South America", + Status = @"Country", + Longitude = -63.57, + Latitude = -16.3, + GdpPerPerson = 7034, + Rank = 81, + Unemployment = 8, + OilProduction = 46470, + BirthRate = 22, + MedianAge = 23, + Electricity = 5293, + Televisions = 900000, + PublicDebt = 46, + Internet = 1000000 + }); + this.Add(new WorldStatsItem() + { + Code = @"BEN", + Name = @"Benin", + Continent = @"Africa", + Population = 11038805, + GdpTotal = 24310, + Economy = @"Least developed", + Region = @"Western Africa", + Status = @"Country", + Longitude = 2.704, + Latitude = 10.535, + GdpPerPerson = 2202, + Rank = 82, + Unemployment = 2, + OilProduction = 0, + BirthRate = 25, + MedianAge = 40, + Electricity = 13145, + Televisions = 7167916, + PublicDebt = 34, + Internet = 8520122 + }); + this.Add(new WorldStatsItem() + { + Code = @"PRT", + Name = @"Portugal", + Continent = @"Europe", + Population = 10839514, + GdpTotal = 297100, + Economy = @"Developed", + Region = @"Southern Europe", + Status = @"Country", + Longitude = -7.757, + Latitude = 40.815, + GdpPerPerson = 27409, + Rank = 83, + Unemployment = 8, + OilProduction = 9500, + BirthRate = 10, + MedianAge = 39, + Electricity = 49040, + Televisions = 3310000, + PublicDebt = 64, + Internet = 3549000 + }); + this.Add(new WorldStatsItem() + { + Code = @"GRC", + Name = @"Greece", + Continent = @"Europe", + Population = 10768477, + GdpTotal = 290500, + Economy = @"Developed", + Region = @"Southern Europe", + Status = @"Country", + Longitude = 21.871, + Latitude = 39.558, + GdpPerPerson = 26977, + Rank = 84, + Unemployment = 8, + OilProduction = 5687, + BirthRate = 10, + MedianAge = 42, + Electricity = 56130, + Televisions = 2540000, + PublicDebt = 90, + Internet = 2540000 + }); + this.Add(new WorldStatsItem() + { + Code = @"DOM", + Name = @"Dominican Republic", + Continent = @"North America", + Population = 10734247, + GdpTotal = 161900, + Economy = @"Developing", + Region = @"Central America", + Status = @"Country", + Longitude = -70.17, + Latitude = 18.775, + GdpPerPerson = 15083, + Rank = 85, + Unemployment = 16, + OilProduction = 12, + BirthRate = 23, + MedianAge = 25, + Electricity = 12220, + Televisions = 770000, + PublicDebt = 41, + Internet = 1677000 + }); + this.Add(new WorldStatsItem() + { + Code = @"CZE", + Name = @"Czechia", + Continent = @"Europe", + Population = 10674723, + GdpTotal = 350900, + Economy = @"Developed", + Region = @"Eastern Europe", + Status = @"Country", + Longitude = 15.461, + Latitude = 49.807, + GdpPerPerson = 32872, + Rank = 86, + Unemployment = 7, + OilProduction = 18030, + BirthRate = 9, + MedianAge = 40, + Electricity = 77380, + Televisions = 3405834, + PublicDebt = 26, + Internet = 4400000 + }); + this.Add(new WorldStatsItem() + { + Code = @"HTI", + Name = @"Haiti", + Continent = @"North America", + Population = 10646714, + GdpTotal = 19340, + Economy = @"Least developed", + Region = @"Central America", + Status = @"Country", + Longitude = -72.23, + Latitude = 19.342, + GdpPerPerson = 1817, + Rank = 87, + Unemployment = 15, + OilProduction = 2, + BirthRate = 9, + MedianAge = 52, + Electricity = 12871, + Televisions = 4329511, + PublicDebt = 25, + Internet = 4777792 + }); + this.Add(new WorldStatsItem() + { + Code = @"JOR", + Name = @"Jordan", + Continent = @"Asia", + Population = 10248069, + GdpTotal = 86190, + Economy = @"Developing", + Region = @"Middle East", + Status = @"Country", + Longitude = 38.125, + Latitude = 32.309, + GdpPerPerson = 8410, + Rank = 88, + Unemployment = 14, + OilProduction = 0, + BirthRate = 20, + MedianAge = 24, + Electricity = 9074, + Televisions = 500000, + PublicDebt = 72, + Internet = 1127000 + }); + this.Add(new WorldStatsItem() + { + Code = @"AZE", + Name = @"Azerbaijan", + Continent = @"Asia", + Population = 9961396, + GdpTotal = 167900, + Economy = @"Developing", + Region = @"Middle East", + Status = @"Country", + Longitude = 48.401, + Latitude = 40.344, + GdpPerPerson = 16855, + Rank = 89, + Unemployment = 1, + OilProduction = 934700, + BirthRate = 18, + MedianAge = 28, + Electricity = 23800, + Televisions = 170000, + PublicDebt = 7, + Internet = 1036000 + }); + this.Add(new WorldStatsItem() + { + Code = @"SWE", + Name = @"Sweden", + Continent = @"Europe", + Population = 9960487, + GdpTotal = 498100, + Economy = @"Developed", + Region = @"Northern Europe", + Status = @"Country", + Longitude = 17.594, + Latitude = 64.621, + GdpPerPerson = 50008, + Rank = 90, + Unemployment = 6, + OilProduction = 2350, + BirthRate = 10, + MedianAge = 41, + Electricity = 153200, + Televisions = 4600000, + PublicDebt = 42, + Internet = 7000000 + }); + this.Add(new WorldStatsItem() + { + Code = @"HUN", + Name = @"Hungary", + Continent = @"Europe", + Population = 9850845, + GdpTotal = 267600, + Economy = @"Developed", + Region = @"Eastern Europe", + Status = @"Country", + Longitude = 19.485, + Latitude = 47.153, + GdpPerPerson = 27165, + Rank = 91, + Unemployment = 7, + OilProduction = 42180, + BirthRate = 10, + MedianAge = 39, + Electricity = 33690, + Televisions = 4420000, + PublicDebt = 67, + Internet = 4200000 + }); + this.Add(new WorldStatsItem() + { + Code = @"BLR", + Name = @"Belarus", + Continent = @"Europe", + Population = 9549747, + GdpTotal = 165400, + Economy = @"Developing", + Region = @"Eastern Europe", + Status = @"Country", + Longitude = 27.943, + Latitude = 53.705, + GdpPerPerson = 17320, + Rank = 92, + Unemployment = 15, + OilProduction = 5, + BirthRate = 7, + MedianAge = 33, + Electricity = 84070, + Televisions = 3348094, + PublicDebt = 6, + Internet = 3754027 + }); + this.Add(new WorldStatsItem() + { + Code = @"HND", + Name = @"Honduras", + Continent = @"North America", + Population = 9038741, + GdpTotal = 43190, + Economy = @"Developing", + Region = @"Central America", + Status = @"Country", + Longitude = -86.74, + Latitude = 14.889, + GdpPerPerson = 4778, + Rank = 93, + Unemployment = 28, + OilProduction = 0, + BirthRate = 27, + MedianAge = 20, + Electricity = 5339, + Televisions = 570000, + PublicDebt = 24, + Internet = 344100 + }); + this.Add(new WorldStatsItem() + { + Code = @"AUT", + Name = @"Austria", + Continent = @"Europe", + Population = 8754413, + GdpTotal = 416600, + Economy = @"Developed", + Region = @"Western Europe", + Status = @"Country", + Longitude = 14.987, + Latitude = 47.624, + GdpPerPerson = 47587, + Rank = 94, + Unemployment = 4, + OilProduction = 23320, + BirthRate = 9, + MedianAge = 42, + Electricity = 61020, + Televisions = 10150000, + PublicDebt = 59, + Internet = 4277000 + }); + this.Add(new WorldStatsItem() + { + Code = @"TJK", + Name = @"Tajikistan", + Continent = @"Asia", + Population = 8468555, + GdpTotal = 25810, + Economy = @"Developing", + Region = @"Central Asia", + Status = @"Country", + Longitude = 71.234, + Latitude = 38.86, + GdpPerPerson = 3048, + Rank = 95, + Unemployment = 11, + OilProduction = 5, + BirthRate = 8, + MedianAge = 44, + Electricity = 56534, + Televisions = 6542566, + PublicDebt = 44, + Internet = 4521889 + }); + this.Add(new WorldStatsItem() + { + Code = @"ISR", + Name = @"Israel", + Continent = @"Asia", + Population = 8299706, + GdpTotal = 297000, + Economy = @"Developed", + Region = @"Middle East", + Status = @"Country", + Longitude = 34.977, + Latitude = 30.748, + GdpPerPerson = 35784, + Rank = 96, + Unemployment = 7, + OilProduction = 100, + BirthRate = 20, + MedianAge = 29, + Electricity = 46850, + Televisions = 1690000, + PublicDebt = 81, + Internet = 2000000 + }); + this.Add(new WorldStatsItem() + { + Code = @"CHE", + Name = @"Switzerland", + Continent = @"Europe", + Population = 8236303, + GdpTotal = 496300, + Economy = @"Developed", + Region = @"Western Europe", + Status = @"Country", + Longitude = 7.865, + Latitude = 46.729, + GdpPerPerson = 60258, + Rank = 97, + Unemployment = 3, + OilProduction = 3202, + BirthRate = 10, + MedianAge = 41, + Electricity = 56100, + Televisions = 3310000, + PublicDebt = 44, + Internet = 4610000 + }); + this.Add(new WorldStatsItem() + { + Code = @"TGO", + Name = @"Togo", + Continent = @"Africa", + Population = 7965055, + GdpTotal = 11610, + Economy = @"Least developed", + Region = @"Western Africa", + Status = @"Country", + Longitude = 1.146, + Latitude = 6.799, + GdpPerPerson = 1458, + Rank = 98, + Unemployment = 3, + OilProduction = 4, + BirthRate = 9, + MedianAge = 37, + Electricity = 28181, + Televisions = 2309082, + PublicDebt = 41, + Internet = 789456 + }); + this.Add(new WorldStatsItem() + { + Code = @"SOM", + Name = @"Somalia", + Continent = @"Africa", + Population = 7531386, + GdpTotal = 4719, + Economy = @"Least developed", + Region = @"Eastern Africa", + Status = @"Country", + Longitude = 44.134, + Latitude = 3.077, + GdpPerPerson = 627, + Rank = 99, + Unemployment = 2, + OilProduction = 4, + BirthRate = 12, + MedianAge = 50, + Electricity = 29272, + Televisions = 1648650, + PublicDebt = 22, + Internet = 3227211 + }); + this.Add(new WorldStatsItem() + { + Code = @"HKG", + Name = @"Hong Kong", + Continent = @"Asia", + Population = 7191503, + GdpTotal = 427400, + Economy = @"Developing", + Region = @"Eastern Asia", + Status = @"Dependency", + Longitude = 114.08, + Latitude = 22.38, + GdpPerPerson = 59431, + Rank = 100, + Unemployment = 3, + OilProduction = 0, + BirthRate = 8, + MedianAge = 55, + Electricity = 86792, + Televisions = 4084025, + PublicDebt = 35, + Internet = 3907543 + }); + this.Add(new WorldStatsItem() + { + Code = @"LAO", + Name = @"Laos", + Continent = @"Asia", + Population = 7126706, + GdpTotal = 40960, + Economy = @"Least developed", + Region = @"Eastern Asia", + Status = @"Country", + Longitude = 102.36, + Latitude = 20.171, + GdpPerPerson = 5747, + Rank = 101, + Unemployment = 8, + OilProduction = 0, + BirthRate = 6, + MedianAge = 34, + Electricity = 7093, + Televisions = 4503172, + PublicDebt = 19, + Internet = 5426041 + }); + this.Add(new WorldStatsItem() + { + Code = @"SRB", + Name = @"Serbia", + Continent = @"Europe", + Population = 7111024, + GdpTotal = 101800, + Economy = @"Developing", + Region = @"Southern Europe", + Status = @"Country", + Longitude = 20.908, + Latitude = 44.206, + GdpPerPerson = 14316, + Rank = 102, + Unemployment = 5, + OilProduction = 4, + BirthRate = 13, + MedianAge = 48, + Electricity = 30150, + Televisions = 1316607, + PublicDebt = 17, + Internet = 4104775 + }); + this.Add(new WorldStatsItem() + { + Code = @"BGR", + Name = @"Bulgaria", + Continent = @"Europe", + Population = 7101510, + GdpTotal = 143100, + Economy = @"Developed", + Region = @"Eastern Europe", + Status = @"Country", + Longitude = 25.465, + Latitude = 42.741, + GdpPerPerson = 20151, + Rank = 103, + Unemployment = 8, + OilProduction = 3661, + BirthRate = 10, + MedianAge = 41, + Electricity = 45700, + Televisions = 3310000, + PublicDebt = 11, + Internet = 1899000 + }); + this.Add(new WorldStatsItem() + { + Code = @"PRY", + Name = @"Paraguay", + Continent = @"South America", + Population = 6943739, + GdpTotal = 64670, + Economy = @"Emerging", + Region = @"South America", + Status = @"Country", + Longitude = -58.44, + Latitude = -23.42, + GdpPerPerson = 9313, + Rank = 104, + Unemployment = 6, + OilProduction = 0, + BirthRate = 28, + MedianAge = 22, + Electricity = 70000, + Televisions = 990000, + PublicDebt = 27, + Internet = 280000 + }); + this.Add(new WorldStatsItem() + { + Code = @"PNG", + Name = @"Papua New Guinea", + Continent = @"Oceania", + Population = 6909701, + GdpTotal = 28020, + Economy = @"Developing", + Region = @"Melanesia", + Status = @"Country", + Longitude = 143.62, + Latitude = -5.836, + GdpPerPerson = 4055, + Rank = 105, + Unemployment = 2, + OilProduction = 47800, + BirthRate = 28, + MedianAge = 22, + Electricity = 3698, + Televisions = 59841, + PublicDebt = 40, + Internet = 110000 + }); + this.Add(new WorldStatsItem() + { + Code = @"LBY", + Name = @"Libya", + Continent = @"Africa", + Population = 6653210, + GdpTotal = 90890, + Economy = @"Developing", + Region = @"Northern Africa", + Status = @"Country", + Longitude = 17.23, + Latitude = 26.339, + GdpPerPerson = 13661, + Rank = 106, + Unemployment = 30, + OilProduction = 1712000, + BirthRate = 26, + MedianAge = 24, + Electricity = 21150, + Televisions = 730000, + PublicDebt = 5, + Internet = 260000 + }); + this.Add(new WorldStatsItem() + { + Code = @"LBN", + Name = @"Lebanon", + Continent = @"Asia", + Population = 6229794, + GdpTotal = 85160, + Economy = @"Developing", + Region = @"Middle East", + Status = @"Country", + Longitude = 36.042, + Latitude = 34.168, + GdpPerPerson = 13670, + Rank = 107, + Unemployment = 20, + OilProduction = 0, + BirthRate = 18, + MedianAge = 29, + Electricity = 9183, + Televisions = 1180000, + PublicDebt = 187, + Internet = 950000 + }); + this.Add(new WorldStatsItem() + { + Code = @"SLV", + Name = @"El Salvador", + Continent = @"North America", + Population = 6172011, + GdpTotal = 54790, + Economy = @"Developing", + Region = @"Central America", + Status = @"Country", + Longitude = -88.91, + Latitude = 13.798, + GdpPerPerson = 8877, + Rank = 108, + Unemployment = 6, + OilProduction = 0, + BirthRate = 26, + MedianAge = 22, + Electricity = 5316, + Televisions = 600000, + PublicDebt = 37, + Internet = 700000 + }); + this.Add(new WorldStatsItem() + { + Code = @"SLE", + Name = @"Sierra Leone", + Continent = @"Africa", + Population = 6163195, + GdpTotal = 10640, + Economy = @"Least developed", + Region = @"Western Africa", + Status = @"Country", + Longitude = -11.78, + Latitude = 8.452, + GdpPerPerson = 1726, + Rank = 109, + Unemployment = 14, + OilProduction = 4, + BirthRate = 6, + MedianAge = 37, + Electricity = 37412, + Televisions = 2727270, + PublicDebt = 6, + Internet = 223239 + }); + this.Add(new WorldStatsItem() + { + Code = @"ARE", + Name = @"United Arab Emirates", + Continent = @"Asia", + Population = 6072475, + GdpTotal = 667200, + Economy = @"Developing", + Region = @"Middle East", + Status = @"Country", + Longitude = 54.192, + Latitude = 23.795, + GdpPerPerson = 109873, + Rank = 110, + Unemployment = 2, + OilProduction = 2510000, + BirthRate = 16, + MedianAge = 30, + Electricity = 57060, + Televisions = 310000, + PublicDebt = 21, + Internet = 2300000 + }); + this.Add(new WorldStatsItem() + { + Code = @"NIC", + Name = @"Nicaragua", + Continent = @"North America", + Population = 6025951, + GdpTotal = 33550, + Economy = @"Developing", + Region = @"Central America", + Status = @"Country", + Longitude = -85.09, + Latitude = 12.523, + GdpPerPerson = 5568, + Rank = 111, + Unemployment = 5, + OilProduction = 0, + BirthRate = 24, + MedianAge = 22, + Electricity = 2778, + Televisions = 320000, + PublicDebt = 63, + Internet = 155000 + }); + this.Add(new WorldStatsItem() + { + Code = @"ERI", + Name = @"Eritrea", + Continent = @"Africa", + Population = 5918919, + GdpTotal = 9169, + Economy = @"Least developed", + Region = @"Eastern Africa", + Status = @"Country", + Longitude = 39.772, + Latitude = 15.191, + GdpPerPerson = 1549, + Rank = 112, + Unemployment = 9, + OilProduction = 5, + BirthRate = 17, + MedianAge = 54, + Electricity = 67474, + Televisions = 2078077, + PublicDebt = 41, + Internet = 1067843 + }); + this.Add(new WorldStatsItem() + { + Code = @"SGP", + Name = @"Singapore", + Continent = @"Asia", + Population = 5888926, + GdpTotal = 487900, + Economy = @"Developing", + Region = @"Eastern Asia", + Status = @"Country", + Longitude = 103.82, + Latitude = 1.356, + GdpPerPerson = 82850, + Rank = 113, + Unemployment = 2, + OilProduction = 9836, + BirthRate = 9, + MedianAge = 38, + Electricity = 39440, + Televisions = 1330000, + PublicDebt = 96, + Internet = 3105000 + }); + this.Add(new WorldStatsItem() + { + Code = @"KGZ", + Name = @"Kyrgyzstan", + Continent = @"Asia", + Population = 5789122, + GdpTotal = 21010, + Economy = @"Developing", + Region = @"Central Asia", + Status = @"Country", + Longitude = 74.738, + Latitude = 41.224, + GdpPerPerson = 3629, + Rank = 114, + Unemployment = 12, + OilProduction = 1, + BirthRate = 21, + MedianAge = 42, + Electricity = 16640, + Televisions = 2101152, + PublicDebt = 15, + Internet = 738896 + }); + this.Add(new WorldStatsItem() + { + Code = @"CAF", + Name = @"Central African Republic", + Continent = @"Africa", + Population = 5625118, + GdpTotal = 3206, + Economy = @"Least developed", + Region = @"Middle Africa", + Status = @"Country", + Longitude = 20.917, + Latitude = 6.633, + GdpPerPerson = 570, + Rank = 115, + Unemployment = 8, + OilProduction = 5, + BirthRate = 13, + MedianAge = 32, + Electricity = 71424, + Televisions = 635931, + PublicDebt = 29, + Internet = 1933873 + }); + this.Add(new WorldStatsItem() + { + Code = @"DNK", + Name = @"Denmark", + Continent = @"Europe", + Population = 5605948, + GdpTotal = 264800, + Economy = @"Developed", + Region = @"Northern Europe", + Status = @"Country", + Longitude = 9.348, + Latitude = 56.13, + GdpPerPerson = 47236, + Rank = 116, + Unemployment = 3, + OilProduction = 342000, + BirthRate = 11, + MedianAge = 40, + Electricity = 43350, + Televisions = 3121000, + PublicDebt = 26, + Internet = 3500000 + }); + this.Add(new WorldStatsItem() + { + Code = @"FIN", + Name = @"Finland", + Continent = @"Europe", + Population = 5491218, + GdpTotal = 224137, + Economy = @"Developed", + Region = @"Northern Europe", + Status = @"Country", + Longitude = 25.988, + Latitude = 61.841, + GdpPerPerson = 40817, + Rank = 117, + Unemployment = 7, + OilProduction = 8951, + BirthRate = 10, + MedianAge = 42, + Electricity = 73470, + Televisions = 3200000, + PublicDebt = 36, + Internet = 3600000 + }); + this.Add(new WorldStatsItem() + { + Code = @"SVK", + Name = @"Slovakia", + Continent = @"Europe", + Population = 5445829, + GdpTotal = 168800, + Economy = @"Developed", + Region = @"Eastern Europe", + Status = @"Country", + Longitude = 18.877, + Latitude = 48.702, + GdpPerPerson = 30996, + Rank = 118, + Unemployment = 8, + OilProduction = 12840, + BirthRate = 11, + MedianAge = 37, + Electricity = 29890, + Televisions = 2620000, + PublicDebt = 36, + Internet = 2350000 + }); + this.Add(new WorldStatsItem() + { + Code = @"TKM", + Name = @"Turkmenistan", + Continent = @"Asia", + Population = 5351277, + GdpTotal = 94720, + Economy = @"Developing", + Region = @"Central Asia", + Status = @"Country", + Longitude = 59.562, + Latitude = 38.975, + GdpPerPerson = 17700, + Rank = 119, + Unemployment = 11, + OilProduction = 4, + BirthRate = 11, + MedianAge = 43, + Electricity = 91281, + Televisions = 2935468, + PublicDebt = 17, + Internet = 3203210 + }); + this.Add(new WorldStatsItem() + { + Code = @"NOR", + Name = @"Norway", + Continent = @"Europe", + Population = 5320045, + GdpTotal = 364700, + Economy = @"Developed", + Region = @"Northern Europe", + Status = @"Country", + Longitude = 9.66, + Latitude = 60.712, + GdpPerPerson = 68552, + Rank = 120, + Unemployment = 3, + OilProduction = 2560000, + BirthRate = 11, + MedianAge = 39, + Electricity = 135800, + Televisions = 2030000, + PublicDebt = 83, + Internet = 3800000 + }); + this.Add(new WorldStatsItem() + { + Code = @"IRL", + Name = @"Ireland", + Continent = @"Europe", + Population = 5011102, + GdpTotal = 322000, + Economy = @"Developed", + Region = @"Northern Europe", + Status = @"Country", + Longitude = -8.209, + Latitude = 53.42, + GdpPerPerson = 64257, + Rank = 121, + Unemployment = 5, + OilProduction = 0, + BirthRate = 14, + MedianAge = 35, + Electricity = 24130, + Televisions = 1820000, + PublicDebt = 25, + Internet = 1708000 + }); + this.Add(new WorldStatsItem() + { + Code = @"COG", + Name = @"Congo", + Continent = @"Africa", + Population = 4954674, + GdpTotal = 30270, + Economy = @"Developing", + Region = @"Middle Africa", + Status = @"Country", + Longitude = 16.264, + Latitude = -0.07, + GdpPerPerson = 6109, + Rank = 122, + Unemployment = 13, + OilProduction = 4, + BirthRate = 11, + MedianAge = 52, + Electricity = 83556, + Televisions = 1560800, + PublicDebt = 6, + Internet = 2650237 + }); + this.Add(new WorldStatsItem() + { + Code = @"CRI", + Name = @"Costa Rica", + Continent = @"North America", + Population = 4930258, + GdpTotal = 79260, + Economy = @"Emerging", + Region = @"Central America", + Status = @"Country", + Longitude = -83.91, + Latitude = 9.92, + GdpPerPerson = 16076, + Rank = 123, + Unemployment = 5, + OilProduction = 0, + BirthRate = 18, + MedianAge = 27, + Electricity = 8349, + Televisions = 525000, + PublicDebt = 47, + Internet = 1500000 + }); + this.Add(new WorldStatsItem() + { + Code = @"GEO", + Name = @"Georgia", + Continent = @"Asia", + Population = 4926330, + GdpTotal = 37270, + Economy = @"Developing", + Region = @"Middle East", + Status = @"Country", + Longitude = 43.257, + Latitude = 42.162, + GdpPerPerson = 7565, + Rank = 124, + Unemployment = 15, + OilProduction = 5, + BirthRate = 10, + MedianAge = 43, + Electricity = 44936, + Televisions = 2728128, + PublicDebt = 29, + Internet = 3844448 + }); + this.Add(new WorldStatsItem() + { + Code = @"LBR", + Name = @"Liberia", + Continent = @"Africa", + Population = 4689021, + GdpTotal = 3881, + Economy = @"Least developed", + Region = @"Western Africa", + Status = @"Country", + Longitude = -9.454, + Latitude = 6.445, + GdpPerPerson = 828, + Rank = 125, + Unemployment = 4, + OilProduction = 0, + BirthRate = 8, + MedianAge = 35, + Electricity = 89626, + Televisions = 3065112, + PublicDebt = 38, + Internet = 1475304 + }); + this.Add(new WorldStatsItem() + { + Code = @"PSE", + Name = @"Palestine", + Continent = @"Asia", + Population = 4543126, + GdpTotal = 21221, + Economy = @"Developing", + Region = @"Middle East", + Status = @"Disputed", + Longitude = 35.347, + Latitude = 32.031, + GdpPerPerson = 4671, + Rank = 126, + Unemployment = 9, + OilProduction = 1, + BirthRate = 10, + MedianAge = 48, + Electricity = 45973, + Televisions = 2774033, + PublicDebt = 16, + Internet = 1718915 + }); + this.Add(new WorldStatsItem() + { + Code = @"NZL", + Name = @"New Zealand", + Continent = @"Oceania", + Population = 4510327, + GdpTotal = 174800, + Economy = @"Developed", + Region = @"Australia", + Status = @"Country", + Longitude = 169.42, + Latitude = -44.86, + GdpPerPerson = 38756, + Rank = 127, + Unemployment = 4, + OilProduction = 25880, + BirthRate = 14, + MedianAge = 36, + Electricity = 42060, + Televisions = 1926000, + PublicDebt = 21, + Internet = 3360000 + }); + this.Add(new WorldStatsItem() + { + Code = @"HRV", + Name = @"Croatia", + Continent = @"Europe", + Population = 4292095, + GdpTotal = 94240, + Economy = @"Developed", + Region = @"Southern Europe", + Status = @"Country", + Longitude = 16.847, + Latitude = 45.674, + GdpPerPerson = 21957, + Rank = 128, + Unemployment = 12, + OilProduction = 17100, + BirthRate = 10, + MedianAge = 41, + Electricity = 11990, + Televisions = 1220000, + PublicDebt = 48, + Internet = 1995000 + }); + this.Add(new WorldStatsItem() + { + Code = @"BIH", + Name = @"Bosnia", + Continent = @"Europe", + Population = 3856181, + GdpTotal = 42530, + Economy = @"Developing", + Region = @"Southern Europe", + Status = @"Country", + Longitude = 17.66, + Latitude = 43.918, + GdpPerPerson = 11029, + Rank = 129, + Unemployment = 46, + OilProduction = 0, + BirthRate = 9, + MedianAge = 39, + Electricity = 12220, + Televisions = 0, + PublicDebt = 34, + Internet = 1055000 + }); + this.Add(new WorldStatsItem() + { + Code = @"MRT", + Name = @"Mauritania", + Continent = @"Africa", + Population = 3758571, + GdpTotal = 16710, + Economy = @"Least developed", + Region = @"Western Africa", + Status = @"Country", + Longitude = -8.89, + Latitude = 20.387, + GdpPerPerson = 4446, + Rank = 130, + Unemployment = 9, + OilProduction = 5, + BirthRate = 25, + MedianAge = 50, + Electricity = 15176, + Televisions = 2558125, + PublicDebt = 29, + Internet = 2098221 + }); + this.Add(new WorldStatsItem() + { + Code = @"PAN", + Name = @"Panama", + Continent = @"North America", + Population = 3753142, + GdpTotal = 93120, + Economy = @"Developing", + Region = @"Central America", + Status = @"Country", + Longitude = -81.17, + Latitude = 8.457, + GdpPerPerson = 24811, + Rank = 131, + Unemployment = 6, + OilProduction = 0, + BirthRate = 21, + MedianAge = 27, + Electricity = 5661, + Televisions = 510000, + PublicDebt = 53, + Internet = 525200 + }); + this.Add(new WorldStatsItem() + { + Code = @"SOL", + Name = @"Somaliland", + Continent = @"Africa", + Population = 3500000, + GdpTotal = 12250, + Economy = @"Developing", + Region = @"Eastern Africa", + Status = @"Indeterminate", + Longitude = 45.798, + Latitude = 9.748, + GdpPerPerson = 3500, + Rank = 132, + Unemployment = 1, + OilProduction = 4, + BirthRate = 13, + MedianAge = 43, + Electricity = 73247, + Televisions = 2235408, + PublicDebt = 21, + Internet = 1300238 + }); + this.Add(new WorldStatsItem() + { + Code = @"MDA", + Name = @"Moldova", + Continent = @"Europe", + Population = 3474121, + GdpTotal = 18540, + Economy = @"Developing", + Region = @"Eastern Europe", + Status = @"Country", + Longitude = 28.552, + Latitude = 47.515, + GdpPerPerson = 5337, + Rank = 133, + Unemployment = 2, + OilProduction = 0, + BirthRate = 11, + MedianAge = 34, + Electricity = 3881, + Televisions = 1260000, + PublicDebt = 23, + Internet = 700000 + }); + this.Add(new WorldStatsItem() + { + Code = @"OMN", + Name = @"Oman", + Continent = @"Asia", + Population = 3424386, + GdpTotal = 173100, + Economy = @"Developing", + Region = @"Middle East", + Status = @"Country", + Longitude = 57.563, + Latitude = 22.014, + GdpPerPerson = 50549, + Rank = 134, + Unemployment = 15, + OilProduction = 710800, + BirthRate = 35, + MedianAge = 19, + Electricity = 11890, + Televisions = 1600000, + PublicDebt = 4, + Internet = 340000 + }); + this.Add(new WorldStatsItem() + { + Code = @"URY", + Name = @"Uruguay", + Continent = @"South America", + Population = 3360148, + GdpTotal = 73250, + Economy = @"Emerging", + Region = @"South America", + Status = @"Country", + Longitude = -55.78, + Latitude = -32.51, + GdpPerPerson = 21800, + Rank = 135, + Unemployment = 9, + OilProduction = 27830, + BirthRate = 14, + MedianAge = 33, + Electricity = 9200, + Televisions = 782000, + PublicDebt = 65, + Internet = 968000 + }); + this.Add(new WorldStatsItem() + { + Code = @"PRI", + Name = @"Puerto Rico", + Continent = @"North America", + Population = 3351827, + GdpTotal = 131000, + Economy = @"Developing", + Region = @"Central America", + Status = @"Dependency", + Longitude = -66.61, + Latitude = 18.235, + GdpPerPerson = 39083, + Rank = 136, + Unemployment = 5, + OilProduction = 3, + BirthRate = 11, + MedianAge = 32, + Electricity = 19677, + Televisions = 1917997, + PublicDebt = 25, + Internet = 608062 + }); + this.Add(new WorldStatsItem() + { + Code = @"MNG", + Name = @"Mongolia", + Continent = @"Asia", + Population = 3068243, + GdpTotal = 37000, + Economy = @"Developing", + Region = @"Eastern Asia", + Status = @"Country", + Longitude = 103.82, + Latitude = 46.856, + GdpPerPerson = 12059, + Rank = 137, + Unemployment = 4, + OilProduction = 1, + BirthRate = 7, + MedianAge = 35, + Electricity = 3875, + Televisions = 1726758, + PublicDebt = 17, + Internet = 562546 + }); + this.Add(new WorldStatsItem() + { + Code = @"ALB", + Name = @"Albania", + Continent = @"Europe", + Population = 3047987, + GdpTotal = 33900, + Economy = @"Developing", + Region = @"Southern Europe", + Status = @"Country", + Longitude = 19.964, + Latitude = 40.759, + GdpPerPerson = 11122, + Rank = 138, + Unemployment = 13, + OilProduction = 7006, + BirthRate = 15, + MedianAge = 30, + Electricity = 5385, + Televisions = 700000, + PublicDebt = 51, + Internet = 471200 + }); + this.Add(new WorldStatsItem() + { + Code = @"ARM", + Name = @"Armenia", + Continent = @"Asia", + Population = 3045191, + GdpTotal = 26300, + Economy = @"Developing", + Region = @"Middle East", + Status = @"Country", + Longitude = 44.646, + Latitude = 40.618, + GdpPerPerson = 8637, + Rank = 139, + Unemployment = 4, + OilProduction = 4, + BirthRate = 14, + MedianAge = 39, + Electricity = 71042, + Televisions = 2390201, + PublicDebt = 9, + Internet = 488333 + }); + this.Add(new WorldStatsItem() + { + Code = @"JAM", + Name = @"Jamaica", + Continent = @"North America", + Population = 2990561, + GdpTotal = 25390, + Economy = @"Developing", + Region = @"Central America", + Status = @"Country", + Longitude = -77.27, + Latitude = 18.119, + GdpPerPerson = 8490, + Rank = 140, + Unemployment = 10, + OilProduction = 0, + BirthRate = 20, + MedianAge = 23, + Electricity = 6985, + Televisions = 460000, + PublicDebt = 127, + Internet = 1500000 + }); + this.Add(new WorldStatsItem() + { + Code = @"KWT", + Name = @"Kuwait", + Continent = @"Asia", + Population = 2875422, + GdpTotal = 301100, + Economy = @"Developing", + Region = @"Middle East", + Status = @"Country", + Longitude = 47.487, + Latitude = 29.315, + GdpPerPerson = 104715, + Rank = 141, + Unemployment = 2, + OilProduction = 2440000, + BirthRate = 22, + MedianAge = 26, + Electricity = 41110, + Televisions = 875000, + PublicDebt = 10, + Internet = 900000 + }); + this.Add(new WorldStatsItem() + { + Code = @"LTU", + Name = @"Lithuania", + Continent = @"Europe", + Population = 2823859, + GdpTotal = 85620, + Economy = @"Developed", + Region = @"Northern Europe", + Status = @"Country", + Longitude = 23.838, + Latitude = 55.152, + GdpPerPerson = 30320, + Rank = 142, + Unemployment = 4, + OilProduction = 13160, + BirthRate = 9, + MedianAge = 39, + Electricity = 13480, + Televisions = 1700000, + PublicDebt = 17, + Internet = 1330000 + }); + this.Add(new WorldStatsItem() + { + Code = @"NAM", + Name = @"Namibia", + Continent = @"Africa", + Population = 2484780, + GdpTotal = 25990, + Economy = @"Developing", + Region = @"Southern Africa", + Status = @"Country", + Longitude = 16.944, + Latitude = -20.52, + GdpPerPerson = 10460, + Rank = 143, + Unemployment = 5, + OilProduction = 0, + BirthRate = 23, + MedianAge = 21, + Electricity = 1688, + Televisions = 60000, + PublicDebt = 22, + Internet = 101000 + }); + this.Add(new WorldStatsItem() + { + Code = @"QAT", + Name = @"Qatar", + Continent = @"Asia", + Population = 2314307, + GdpTotal = 334500, + Economy = @"Developing", + Region = @"Middle East", + Status = @"Country", + Longitude = 51.182, + Latitude = 25.359, + GdpPerPerson = 144536, + Rank = 144, + Unemployment = 1, + OilProduction = 797500, + BirthRate = 16, + MedianAge = 31, + Electricity = 13540, + Televisions = 230000, + PublicDebt = 11, + Internet = 351000 + }); + this.Add(new WorldStatsItem() + { + Code = @"BWA", + Name = @"Botswana", + Continent = @"Africa", + Population = 2214858, + GdpTotal = 35900, + Economy = @"Developing", + Region = @"Southern Africa", + Status = @"Country", + Longitude = 24.671, + Latitude = -22.32, + GdpPerPerson = 16209, + Rank = 145, + Unemployment = 8, + OilProduction = 0, + BirthRate = 23, + MedianAge = 21, + Electricity = 912, + Televisions = 31000, + PublicDebt = 5, + Internet = 80000 + }); + this.Add(new WorldStatsItem() + { + Code = @"MKD", + Name = @"North Macedonia", + Continent = @"Europe", + Population = 2103721, + GdpTotal = 29520, + Economy = @"Developing", + Region = @"Southern Europe", + Status = @"Country", + Longitude = 21.727, + Latitude = 41.604, + GdpPerPerson = 14032, + Rank = 146, + Unemployment = 35, + OilProduction = 0, + BirthRate = 12, + MedianAge = 35, + Electricity = 6051, + Televisions = 510000, + PublicDebt = 31, + Internet = 685000 + }); + this.Add(new WorldStatsItem() + { + Code = @"GMB", + Name = @"Gambia", + Continent = @"Africa", + Population = 2051363, + GdpTotal = 3387, + Economy = @"Least developed", + Region = @"Western Africa", + Status = @"Country", + Longitude = -15.32, + Latitude = 13.438, + GdpPerPerson = 1651, + Rank = 147, + Unemployment = 7, + OilProduction = 1, + BirthRate = 11, + MedianAge = 37, + Electricity = 9769, + Televisions = 1486289, + PublicDebt = 30, + Internet = 187890 + }); + this.Add(new WorldStatsItem() + { + Code = @"SVN", + Name = @"Slovenia", + Continent = @"Europe", + Population = 1972126, + GdpTotal = 68350, + Economy = @"Developed", + Region = @"Southern Europe", + Status = @"Country", + Longitude = 14.947, + Latitude = 46.146, + GdpPerPerson = 34658, + Rank = 148, + Unemployment = 8, + OilProduction = 5, + BirthRate = 9, + MedianAge = 41, + Electricity = 14900, + Televisions = 710000, + PublicDebt = 24, + Internet = 1300000 + }); + this.Add(new WorldStatsItem() + { + Code = @"LSO", + Name = @"Lesotho", + Continent = @"Africa", + Population = 1958042, + GdpTotal = 6019, + Economy = @"Least developed", + Region = @"Southern Africa", + Status = @"Country", + Longitude = 28.221, + Latitude = -29.61, + GdpPerPerson = 3074, + Rank = 149, + Unemployment = 12, + OilProduction = 2, + BirthRate = 8, + MedianAge = 32, + Electricity = 20229, + Televisions = 1457517, + PublicDebt = 14, + Internet = 1375222 + }); + this.Add(new WorldStatsItem() + { + Code = @"LVA", + Name = @"Latvia", + Continent = @"Europe", + Population = 1944643, + GdpTotal = 50650, + Economy = @"Developed", + Region = @"Northern Europe", + Status = @"Country", + Longitude = 26.505, + Latitude = 56.755, + GdpPerPerson = 26046, + Rank = 150, + Unemployment = 6, + OilProduction = 0, + BirthRate = 10, + MedianAge = 40, + Electricity = 4778, + Televisions = 1220000, + PublicDebt = 7, + Internet = 1770000 + }); + this.Add(new WorldStatsItem() + { + Code = @"RKS", + Name = @"Kosovo", + Continent = @"Europe", + Population = 1895250, + GdpTotal = 18490, + Economy = @"Developing", + Region = @"Southern Europe", + Status = @"Country", + Longitude = 20.891, + Latitude = 42.557, + GdpPerPerson = 9756, + Rank = 151, + Unemployment = 12, + OilProduction = 0, + BirthRate = 8, + MedianAge = 55, + Electricity = 14878, + Televisions = 1287863, + PublicDebt = 20, + Internet = 1422193 + }); + this.Add(new WorldStatsItem() + { + Code = @"GNB", + Name = @"Guinea-Bissau", + Continent = @"Africa", + Population = 1792338, + GdpTotal = 2851, + Economy = @"Least developed", + Region = @"Western Africa", + Status = @"Country", + Longitude = -14.59, + Latitude = 11.942, + GdpPerPerson = 1591, + Rank = 152, + Unemployment = 5, + OilProduction = 5, + BirthRate = 5, + MedianAge = 55, + Electricity = 74684, + Televisions = 1427462, + PublicDebt = 8, + Internet = 365000 + }); + this.Add(new WorldStatsItem() + { + Code = @"GAB", + Name = @"Gabon", + Continent = @"Africa", + Population = 1772255, + GdpTotal = 35980, + Economy = @"Developing", + Region = @"Middle Africa", + Status = @"Country", + Longitude = 11.592, + Latitude = -0.807, + GdpPerPerson = 20302, + Rank = 153, + Unemployment = 21, + OilProduction = 240000, + BirthRate = 36, + MedianAge = 19, + Electricity = 1520, + Televisions = 63000, + PublicDebt = 53, + Internet = 145000 + }); + this.Add(new WorldStatsItem() + { + Code = @"SWZ", + Name = @"Eswatini", + Continent = @"Africa", + Population = 1467152, + GdpTotal = 11060, + Economy = @"Developing", + Region = @"Southern Africa", + Status = @"Country", + Longitude = 31.45, + Latitude = -26.52, + GdpPerPerson = 7538, + Rank = 154, + Unemployment = 6, + OilProduction = 3, + BirthRate = 17, + MedianAge = 39, + Electricity = 72804, + Televisions = 229393, + PublicDebt = 5, + Internet = 427760 + }); + this.Add(new WorldStatsItem() + { + Code = @"BHR", + Name = @"Bahrain", + Continent = @"Asia", + Population = 1410942, + GdpTotal = 66370, + Economy = @"Developing", + Region = @"Middle East", + Status = @"Country", + Longitude = 50.535, + Latitude = 26.027, + GdpPerPerson = 47039, + Rank = 155, + Unemployment = 15, + OilProduction = 184300, + BirthRate = 17, + MedianAge = 30, + Electricity = 8187, + Televisions = 275000, + PublicDebt = 31, + Internet = 250000 + }); + this.Add(new WorldStatsItem() + { + Code = @"MUS", + Name = @"Mauritius", + Continent = @"Africa", + Population = 1356388, + GdpTotal = 25850, + Economy = @"Developing", + Region = @"Eastern Africa", + Status = @"Country", + Longitude = 57.555, + Latitude = -20.25, + GdpPerPerson = 19058, + Rank = 156, + Unemployment = 9, + OilProduction = 0, + BirthRate = 15, + MedianAge = 32, + Electricity = 2350, + Televisions = 258000, + PublicDebt = 63, + Internet = 340000 + }); + this.Add(new WorldStatsItem() + { + Code = @"TLS", + Name = @"Timor-Leste", + Continent = @"Asia", + Population = 1291358, + GdpTotal = 4975, + Economy = @"Least developed", + Region = @"Eastern Asia", + Status = @"Country", + Longitude = 125.66, + Latitude = -8.826, + GdpPerPerson = 3853, + Rank = 157, + Unemployment = 8, + OilProduction = 5, + BirthRate = 18, + MedianAge = 48, + Electricity = 84061, + Televisions = 416260, + PublicDebt = 25, + Internet = 267437 + }); + this.Add(new WorldStatsItem() + { + Code = @"EST", + Name = @"Estonia", + Continent = @"Europe", + Population = 1251581, + GdpTotal = 38700, + Economy = @"Developed", + Region = @"Northern Europe", + Status = @"Country", + Longitude = 25.441, + Latitude = 58.845, + GdpPerPerson = 30921, + Rank = 158, + Unemployment = 5, + OilProduction = 6930, + BirthRate = 10, + MedianAge = 40, + Electricity = 9599, + Televisions = 605000, + PublicDebt = 3, + Internet = 780000 + }); + this.Add(new WorldStatsItem() + { + Code = @"CYP", + Name = @"Cyprus", + Continent = @"Asia", + Population = 1221549, + GdpTotal = 29260, + Economy = @"Developing", + Region = @"Middle East", + Status = @"Country", + Longitude = 33.176, + Latitude = 34.876, + GdpPerPerson = 23953, + Rank = 159, + Unemployment = 4, + OilProduction = 0, + BirthRate = 13, + MedianAge = 35, + Electricity = 4618, + Televisions = 0, + PublicDebt = 60, + Internet = 380000 + }); + this.Add(new WorldStatsItem() + { + Code = @"TTO", + Name = @"Trinidad and Tobago", + Continent = @"North America", + Population = 1218208, + GdpTotal = 43570, + Economy = @"Developing", + Region = @"Central America", + Status = @"Country", + Longitude = -61.21, + Latitude = 10.352, + GdpPerPerson = 35766, + Rank = 160, + Unemployment = 4, + OilProduction = 5, + BirthRate = 15, + MedianAge = 47, + Electricity = 58959, + Televisions = 359389, + PublicDebt = 29, + Internet = 152416 + }); + this.Add(new WorldStatsItem() + { + Code = @"FJI", + Name = @"Fiji", + Continent = @"Oceania", + Population = 920938, + GdpTotal = 8374, + Economy = @"Developing", + Region = @"Melanesia", + Status = @"Country", + Longitude = 177.85, + Latitude = -17.75, + GdpPerPerson = 9093, + Rank = 161, + Unemployment = 11, + OilProduction = 5, + BirthRate = 5, + MedianAge = 41, + Electricity = 88931, + Televisions = 517580, + PublicDebt = 17, + Internet = 539400 + }); + this.Add(new WorldStatsItem() + { + Code = @"DJI", + Name = @"Djibouti", + Continent = @"Africa", + Population = 865267, + GdpTotal = 3345, + Economy = @"Least developed", + Region = @"Eastern Africa", + Status = @"Country", + Longitude = 42.587, + Latitude = 11.825, + GdpPerPerson = 3866, + Rank = 162, + Unemployment = 5, + OilProduction = 3, + BirthRate = 17, + MedianAge = 44, + Electricity = 91593, + Televisions = 209004, + PublicDebt = 43, + Internet = 476114 + }); + this.Add(new WorldStatsItem() + { + Code = @"COM", + Name = @"Comoros", + Continent = @"Africa", + Population = 808080, + GdpTotal = 1259, + Economy = @"Least developed", + Region = @"Eastern Africa", + Status = @"Country", + Longitude = 43.877, + Latitude = -11.86, + GdpPerPerson = 1558, + Rank = 163, + Unemployment = 11, + OilProduction = 3, + BirthRate = 14, + MedianAge = 46, + Electricity = 6146, + Televisions = 495921, + PublicDebt = 10, + Internet = 459977 + }); + this.Add(new WorldStatsItem() + { + Code = @"GNQ", + Name = @"Equatorial Guinea", + Continent = @"Africa", + Population = 778358, + GdpTotal = 31770, + Economy = @"Least developed", + Region = @"Middle Africa", + Status = @"Country", + Longitude = 10.521, + Latitude = 1.763, + GdpPerPerson = 40817, + Rank = 164, + Unemployment = 30, + OilProduction = 385500, + BirthRate = 37, + MedianAge = 19, + Electricity = 28, + Televisions = 4000, + PublicDebt = 2, + Internet = 8000 + }); + this.Add(new WorldStatsItem() + { + Code = @"BTN", + Name = @"Bhutan", + Continent = @"Asia", + Population = 758288, + GdpTotal = 6432, + Economy = @"Least developed", + Region = @"Southern Asia", + Status = @"Country", + Longitude = 90.411, + Latitude = 27.506, + GdpPerPerson = 8482, + Rank = 165, + Unemployment = 3, + OilProduction = 0, + BirthRate = 21, + MedianAge = 24, + Electricity = 2000, + Televisions = 11000, + PublicDebt = 81, + Internet = 40000 + }); + this.Add(new WorldStatsItem() + { + Code = @"GUY", + Name = @"Guyana", + Continent = @"South America", + Population = 737718, + GdpTotal = 6093, + Economy = @"Developing", + Region = @"South America", + Status = @"Country", + Longitude = -58.96, + Latitude = 5.607, + GdpPerPerson = 8259, + Rank = 166, + Unemployment = 2, + OilProduction = 3, + BirthRate = 9, + MedianAge = 37, + Electricity = 84988, + Televisions = 149848, + PublicDebt = 12, + Internet = 134377 + }); + this.Add(new WorldStatsItem() + { + Code = @"SLB", + Name = @"Solomon Islands", + Continent = @"Oceania", + Population = 647581, + GdpTotal = 1198, + Economy = @"Least developed", + Region = @"Melanesia", + Status = @"Country", + Longitude = 161.3, + Latitude = -9.221, + GdpPerPerson = 1850, + Rank = 167, + Unemployment = 4, + OilProduction = 3, + BirthRate = 18, + MedianAge = 30, + Electricity = 3432, + Televisions = 177555, + PublicDebt = 43, + Internet = 478635 + }); + this.Add(new WorldStatsItem() + { + Code = @"MNE", + Name = @"Montenegro", + Continent = @"Europe", + Population = 642550, + GdpTotal = 10610, + Economy = @"Developing", + Region = @"Southern Europe", + Status = @"Country", + Longitude = 19.191, + Latitude = 42.814, + GdpPerPerson = 16512, + Rank = 168, + Unemployment = 10, + OilProduction = 2, + BirthRate = 24, + MedianAge = 46, + Electricity = 24709, + Televisions = 126756, + PublicDebt = 29, + Internet = 336628 + }); + this.Add(new WorldStatsItem() + { + Code = @"ESH", + Name = @"Western Sahara", + Continent = @"Africa", + Population = 603253, + GdpTotal = 907, + Economy = @"Least developed", + Region = @"Northern Africa", + Status = @"Dependency", + Longitude = -12.89, + Latitude = 24.231, + GdpPerPerson = 1504, + Rank = 169, + Unemployment = 6, + OilProduction = 1, + BirthRate = 23, + MedianAge = 30, + Electricity = 11081, + Televisions = 237857, + PublicDebt = 30, + Internet = 306624 + }); + this.Add(new WorldStatsItem() + { + Code = @"MAC", + Name = @"Macao", + Continent = @"Asia", + Population = 601969, + GdpTotal = 63220, + Economy = @"Developing", + Region = @"Eastern Asia", + Status = @"Dependency", + Longitude = 113.51, + Latitude = 22.221, + GdpPerPerson = 105022, + Rank = 170, + Unemployment = 10, + OilProduction = 2, + BirthRate = 10, + MedianAge = 47, + Electricity = 77896, + Televisions = 163859, + PublicDebt = 18, + Internet = 62728 + }); + this.Add(new WorldStatsItem() + { + Code = @"LUX", + Name = @"Luxembourg", + Continent = @"Europe", + Population = 594130, + GdpTotal = 58740, + Economy = @"Developed", + Region = @"Western Europe", + Status = @"Country", + Longitude = 6.109, + Latitude = 49.806, + GdpPerPerson = 98867, + Rank = 171, + Unemployment = 4, + OilProduction = 0, + BirthRate = 12, + MedianAge = 39, + Electricity = 3156, + Televisions = 285000, + PublicDebt = 6, + Internet = 345000 + }); + this.Add(new WorldStatsItem() + { + Code = @"SUR", + Name = @"Suriname", + Continent = @"South America", + Population = 591919, + GdpTotal = 8547, + Economy = @"Developing", + Region = @"South America", + Status = @"Country", + Longitude = -56.02, + Latitude = 4.506, + GdpPerPerson = 14439, + Rank = 172, + Unemployment = 5, + OilProduction = 1, + BirthRate = 16, + MedianAge = 44, + Electricity = 82658, + Televisions = 69068, + PublicDebt = 31, + Internet = 367104 + }); + this.Add(new WorldStatsItem() + { + Code = @"CPV", + Name = @"Cabo Verde", + Continent = @"Africa", + Population = 560899, + GdpTotal = 3583, + Economy = @"Developing", + Region = @"Western Africa", + Status = @"Country", + Longitude = -25.16, + Latitude = 17.102, + GdpPerPerson = 6388, + Rank = 173, + Unemployment = 12, + OilProduction = 1, + BirthRate = 12, + MedianAge = 54, + Electricity = 60647, + Televisions = 101289, + PublicDebt = 34, + Internet = 40105 + }); + this.Add(new WorldStatsItem() + { + Code = @"BRN", + Name = @"Brunei", + Continent = @"Asia", + Population = 443593, + GdpTotal = 33730, + Economy = @"Developing", + Region = @"Eastern Asia", + Status = @"Country", + Longitude = 114.69, + Latitude = 4.523, + GdpPerPerson = 76038, + Rank = 174, + Unemployment = 4, + OilProduction = 0, + BirthRate = 17, + MedianAge = 32, + Electricity = 50701, + Televisions = 235042, + PublicDebt = 16, + Internet = 188751 + }); + this.Add(new WorldStatsItem() + { + Code = @"MLT", + Name = @"Malta", + Continent = @"Europe", + Population = 416338, + GdpTotal = 16320, + Economy = @"Developed", + Region = @"Southern Europe", + Status = @"Country", + Longitude = 14.373, + Latitude = 35.948, + GdpPerPerson = 39199, + Rank = 175, + Unemployment = 7, + OilProduction = 4, + BirthRate = 6, + MedianAge = 52, + Electricity = 77444, + Televisions = 282390, + PublicDebt = 41, + Internet = 317612 + }); + this.Add(new WorldStatsItem() + { + Code = @"MDV", + Name = @"Maldives", + Continent = @"Asia", + Population = 392709, + GdpTotal = 5407, + Economy = @"Developing", + Region = @"Southern Asia", + Status = @"Country", + Longitude = 73.455, + Latitude = 3.739, + GdpPerPerson = 13768, + Rank = 176, + Unemployment = 13, + OilProduction = 4, + BirthRate = 10, + MedianAge = 43, + Electricity = 26004, + Televisions = 156412, + PublicDebt = 28, + Internet = 45331 + }); + this.Add(new WorldStatsItem() + { + Code = @"BLZ", + Name = @"Belize", + Continent = @"North America", + Population = 360346, + GdpTotal = 3088, + Economy = @"Developing", + Region = @"Central America", + Status = @"Country", + Longitude = -88.51, + Latitude = 17.185, + GdpPerPerson = 8570, + Rank = 177, + Unemployment = 4, + OilProduction = 2, + BirthRate = 7, + MedianAge = 36, + Electricity = 57433, + Televisions = 127478, + PublicDebt = 36, + Internet = 223855 + }); + this.Add(new WorldStatsItem() + { + Code = @"ISL", + Name = @"Iceland", + Continent = @"Europe", + Population = 339747, + GdpTotal = 16150, + Economy = @"Developed", + Region = @"Northern Europe", + Status = @"Country", + Longitude = -19.01, + Latitude = 64.966, + GdpPerPerson = 47535, + Rank = 178, + Unemployment = 1, + OilProduction = 0, + BirthRate = 14, + MedianAge = 35, + Electricity = 8533, + Televisions = 98000, + PublicDebt = 28, + Internet = 202300 + }); + this.Add(new WorldStatsItem() + { + Code = @"BHS", + Name = @"Bahamas", + Continent = @"North America", + Population = 329988, + GdpTotal = 9066, + Economy = @"Developing", + Region = @"Central America", + Status = @"Country", + Longitude = -78.01, + Latitude = 24.761, + GdpPerPerson = 27474, + Rank = 179, + Unemployment = 5, + OilProduction = 2, + BirthRate = 17, + MedianAge = 47, + Electricity = 38395, + Televisions = 203588, + PublicDebt = 6, + Internet = 91807 + }); + this.Add(new WorldStatsItem() + { + Code = @"FRG", + Name = @"French Guiana", + Continent = @"South America", + Population = 296161, + GdpTotal = 1299000, + Economy = @"Developed", + Region = @"South America", + Status = @"Dependency", + Longitude = -53.13, + Latitude = 3.893, + GdpPerPerson = 4386, + Rank = 180, + Unemployment = 3, + OilProduction = 0, + BirthRate = 15, + MedianAge = 55, + Electricity = 73845, + Televisions = 147489, + PublicDebt = 35, + Internet = 209593 + }); + this.Add(new WorldStatsItem() + { + Code = @"BRB", + Name = @"Barbados", + Continent = @"North America", + Population = 292336, + GdpTotal = 4804, + Economy = @"Developing", + Region = @"Central America", + Status = @"Country", + Longitude = -59.53, + Latitude = 13.19, + GdpPerPerson = 16433, + Rank = 181, + Unemployment = 8, + OilProduction = 3, + BirthRate = 21, + MedianAge = 51, + Electricity = 28728, + Televisions = 173392, + PublicDebt = 12, + Internet = 73593 + }); + this.Add(new WorldStatsItem() + { + Code = @"PYF", + Name = @"Fr. Polynesia", + Continent = @"Oceania", + Population = 287881, + GdpTotal = 5490, + Economy = @"Developing", + Region = @"Polynesia", + Status = @"Dependency", + Longitude = -143.9, + Latitude = -14.82, + GdpPerPerson = 19070, + Rank = 182, + Unemployment = 1, + OilProduction = 4, + BirthRate = 6, + MedianAge = 45, + Electricity = 46206, + Televisions = 43757, + PublicDebt = 12, + Internet = 172560 + }); + this.Add(new WorldStatsItem() + { + Code = @"VUT", + Name = @"Vanuatu", + Continent = @"Oceania", + Population = 282814, + GdpTotal = 723, + Economy = @"Least developed", + Region = @"Melanesia", + Status = @"Country", + Longitude = 168.21, + Latitude = -16.97, + GdpPerPerson = 2556, + Rank = 183, + Unemployment = 11, + OilProduction = 4, + BirthRate = 17, + MedianAge = 39, + Electricity = 50581, + Televisions = 187584, + PublicDebt = 42, + Internet = 223352 + }); + this.Add(new WorldStatsItem() + { + Code = @"NCL", + Name = @"New Caledonia", + Continent = @"Oceania", + Population = 279070, + GdpTotal = 10770, + Economy = @"Developing", + Region = @"Melanesia", + Status = @"Dependency", + Longitude = 165.26, + Latitude = -21.09, + GdpPerPerson = 38592, + Rank = 184, + Unemployment = 10, + OilProduction = 3, + BirthRate = 6, + MedianAge = 49, + Electricity = 18361, + Televisions = 79923, + PublicDebt = 45, + Internet = 149003 + }); + this.Add(new WorldStatsItem() + { + Code = @"NCP", + Name = @"Northern Cyprus", + Continent = @"Asia", + Population = 265100, + GdpTotal = 3600, + Economy = @"Developing", + Region = @"Middle East", + Status = @"Country", + Longitude = 33.714, + Latitude = 35.257, + GdpPerPerson = 13580, + Rank = 185, + Unemployment = 4, + OilProduction = 5, + BirthRate = 25, + MedianAge = 51, + Electricity = 84000, + Televisions = 135551, + PublicDebt = 30, + Internet = 167480 + }); + this.Add(new WorldStatsItem() + { + Code = @"STP", + Name = @"Sao Tome and Principe", + Continent = @"Africa", + Population = 201025, + GdpTotal = 694, + Economy = @"Least developed", + Region = @"Middle Africa", + Status = @"Country", + Longitude = 6.598, + Latitude = 0.248, + GdpPerPerson = 3452, + Rank = 186, + Unemployment = 1, + OilProduction = 3, + BirthRate = 24, + MedianAge = 30, + Electricity = 6691, + Televisions = 65480, + PublicDebt = 12, + Internet = 121162 + }); + this.Add(new WorldStatsItem() + { + Code = @"WSM", + Name = @"Samoa", + Continent = @"Oceania", + Population = 200108, + GdpTotal = 1046, + Economy = @"Least developed", + Region = @"Polynesia", + Status = @"Country", + Longitude = -172.1, + Latitude = -13.75, + GdpPerPerson = 5227, + Rank = 187, + Unemployment = 3, + OilProduction = 2, + BirthRate = 7, + MedianAge = 46, + Electricity = 50118, + Televisions = 54930, + PublicDebt = 42, + Internet = 84739 + }); + this.Add(new WorldStatsItem() + { + Code = @"GUM", + Name = @"Guam", + Continent = @"Oceania", + Population = 167358, + GdpTotal = 4882, + Economy = @"Developing", + Region = @"Micronesia", + Status = @"Dependency", + Longitude = 144.79, + Latitude = 13.44, + GdpPerPerson = 29171, + Rank = 188, + Unemployment = 15, + OilProduction = 2, + BirthRate = 24, + MedianAge = 42, + Electricity = 64229, + Televisions = 43567, + PublicDebt = 37, + Internet = 121131 + }); + this.Add(new WorldStatsItem() + { + Code = @"LCA", + Name = @"Saint Lucia", + Continent = @"North America", + Population = 164994, + GdpTotal = 2083, + Economy = @"Developing", + Region = @"Central America", + Status = @"Country", + Longitude = -60.98, + Latitude = 13.905, + GdpPerPerson = 12625, + Rank = 189, + Unemployment = 3, + OilProduction = 2, + BirthRate = 14, + MedianAge = 32, + Electricity = 75473, + Televisions = 87743, + PublicDebt = 7, + Internet = 64498 + }); + this.Add(new WorldStatsItem() + { + Code = @"CUW", + Name = @"Curacao", + Continent = @"North America", + Population = 149648, + GdpTotal = 3128, + Economy = @"Developing", + Region = @"Central America", + Status = @"Dependency", + Longitude = -68.95, + Latitude = 12.213, + GdpPerPerson = 20902, + Rank = 190, + Unemployment = 6, + OilProduction = 1, + BirthRate = 7, + MedianAge = 35, + Electricity = 74665, + Televisions = 89830, + PublicDebt = 36, + Internet = 55905 + }); + this.Add(new WorldStatsItem() + { + Code = @"ABW", + Name = @"Aruba", + Continent = @"North America", + Population = 115120, + GdpTotal = 2516, + Economy = @"Developing", + Region = @"Central America", + Status = @"Dependency", + Longitude = -69.98, + Latitude = 12.519, + GdpPerPerson = 21855, + Rank = 191, + Unemployment = 7, + OilProduction = 2356, + BirthRate = 13, + MedianAge = 38, + Electricity = 770, + Televisions = 20000, + PublicDebt = 46, + Internet = 24000 + }); + this.Add(new WorldStatsItem() + { + Code = @"GRD", + Name = @"Grenada", + Continent = @"North America", + Population = 111724, + GdpTotal = 1511, + Economy = @"Developing", + Region = @"Central America", + Status = @"Country", + Longitude = -61.69, + Latitude = 12.123, + GdpPerPerson = 13524, + Rank = 192, + Unemployment = 10, + OilProduction = 0, + BirthRate = 10, + MedianAge = 50, + Electricity = 4992, + Televisions = 58674, + PublicDebt = 42, + Internet = 33132 + }); + this.Add(new WorldStatsItem() + { + Code = @"KIR", + Name = @"Kiribati", + Continent = @"Oceania", + Population = 108145, + GdpTotal = 211, + Economy = @"Least developed", + Region = @"Micronesia", + Status = @"Country", + Longitude = -157.333, + Latitude = 1.884, + GdpPerPerson = 1951, + Rank = 193, + Unemployment = 13, + OilProduction = 4, + BirthRate = 9, + MedianAge = 52, + Electricity = 37081, + Televisions = 52395, + PublicDebt = 40, + Internet = 36620 + }); + this.Add(new WorldStatsItem() + { + Code = @"VIR", + Name = @"U.S. Virgin Island", + Continent = @"North America", + Population = 107268, + GdpTotal = 3792, + Economy = @"Developing", + Region = @"Central America", + Status = @"Dependency", + Longitude = -64.77, + Latitude = 17.77, + GdpPerPerson = 35351, + Rank = 194, + Unemployment = 11, + OilProduction = 2, + BirthRate = 12, + MedianAge = 38, + Electricity = 13387, + Televisions = 77187, + PublicDebt = 43, + Internet = 40836 + }); + this.Add(new WorldStatsItem() + { + Code = @"TON", + Name = @"Tonga", + Continent = @"Oceania", + Population = 106479, + GdpTotal = 557, + Economy = @"Developing", + Region = @"Polynesia", + Status = @"Country", + Longitude = -173.9, + Latitude = -18.62, + GdpPerPerson = 5231, + Rank = 195, + Unemployment = 4, + OilProduction = 4, + BirthRate = 5, + MedianAge = 33, + Electricity = 88735, + Televisions = 30257, + PublicDebt = 25, + Internet = 71756 + }); + this.Add(new WorldStatsItem() + { + Code = @"FSM", + Name = @"Micronesia", + Continent = @"Oceania", + Population = 104196, + GdpTotal = 314, + Economy = @"Developing", + Region = @"Micronesia", + Status = @"Country", + Longitude = 150.52, + Latitude = 7.435, + GdpPerPerson = 3014, + Rank = 196, + Unemployment = 9, + OilProduction = 5, + BirthRate = 5, + MedianAge = 38, + Electricity = 39068, + Televisions = 45396, + PublicDebt = 40, + Internet = 29169 + }); + this.Add(new WorldStatsItem() + { + Code = @"VCT", + Name = @"St. Vin. and Gren.", + Continent = @"North America", + Population = 102089, + GdpTotal = 1241, + Economy = @"Developing", + Region = @"Central America", + Status = @"Country", + Longitude = -61.17, + Latitude = 13.239, + GdpPerPerson = 12156, + Rank = 197, + Unemployment = 10, + OilProduction = 5, + BirthRate = 7, + MedianAge = 30, + Electricity = 39467, + Televisions = 42804, + PublicDebt = 9, + Internet = 66754 + }); + this.Add(new WorldStatsItem() + { + Code = @"JEY", + Name = @"Jersey", + Continent = @"Europe", + Population = 98840, + GdpTotal = 5080, + Economy = @"Developed", + Region = @"Northern Europe", + Status = @"Territory", + Longitude = -2.123, + Latitude = 49.218, + GdpPerPerson = 51396, + Rank = 198, + Unemployment = 4, + OilProduction = 1, + BirthRate = 18, + MedianAge = 30, + Electricity = 64261, + Televisions = 52453, + PublicDebt = 34, + Internet = 3026 + }); + this.Add(new WorldStatsItem() + { + Code = @"ATG", + Name = @"Antigua and Barbuda", + Continent = @"North America", + Population = 94731, + GdpTotal = 2171, + Economy = @"Developing", + Region = @"Central America", + Status = @"Country", + Longitude = -61.79, + Latitude = 17.096, + GdpPerPerson = 22918, + Rank = 199, + Unemployment = 3, + OilProduction = 1, + BirthRate = 5, + MedianAge = 36, + Electricity = 35849, + Televisions = 75384, + PublicDebt = 32, + Internet = 6170 + }); + this.Add(new WorldStatsItem() + { + Code = @"SYC", + Name = @"Seychelles", + Continent = @"Africa", + Population = 93920, + GdpTotal = 2608, + Economy = @"Developing", + Region = @"Eastern Africa", + Status = @"Country", + Longitude = 55.463, + Latitude = -4.672, + GdpPerPerson = 27768, + Rank = 200, + Unemployment = 2, + OilProduction = 0, + BirthRate = 16, + MedianAge = 29, + Electricity = 252, + Televisions = 11000, + PublicDebt = 92, + Internet = 32000 + }); + this.Add(new WorldStatsItem() + { + Code = @"IMN", + Name = @"Isle of Man", + Continent = @"Europe", + Population = 88815, + GdpTotal = 7428, + Economy = @"Developed", + Region = @"Northern Europe", + Status = @"Territory", + Longitude = -4.562, + Latitude = 54.233, + GdpPerPerson = 83635, + Rank = 201, + Unemployment = 4, + OilProduction = 4, + BirthRate = 14, + MedianAge = 36, + Electricity = 15745, + Televisions = 25734, + PublicDebt = 13, + Internet = 2650 + }); + this.Add(new WorldStatsItem() + { + Code = @"AND", + Name = @"Andorra", + Continent = @"Europe", + Population = 85702, + GdpTotal = 3327, + Economy = @"Developed", + Region = @"Southern Europe", + Status = @"Country", + Longitude = 1.578, + Latitude = 42.539, + GdpPerPerson = 38821, + Rank = 202, + Unemployment = 11, + OilProduction = 3, + BirthRate = 20, + MedianAge = 50, + Electricity = 56209, + Televisions = 42797, + PublicDebt = 33, + Internet = 42006 + }); + this.Add(new WorldStatsItem() + { + Code = @"MHL", + Name = @"Marshall Islands", + Continent = @"Oceania", + Population = 74539, + GdpTotal = 180, + Economy = @"Developing", + Region = @"Micronesia", + Status = @"Country", + Longitude = 169.3, + Latitude = 8.484, + GdpPerPerson = 2415, + Rank = 203, + Unemployment = 3, + OilProduction = 3, + BirthRate = 23, + MedianAge = 42, + Electricity = 78832, + Televisions = 15193, + PublicDebt = 44, + Internet = 8536 + }); + this.Add(new WorldStatsItem() + { + Code = @"DMA", + Name = @"Dominica", + Continent = @"North America", + Population = 73897, + GdpTotal = 812, + Economy = @"Developing", + Region = @"Central America", + Status = @"Country", + Longitude = -61.36, + Latitude = 15.43, + GdpPerPerson = 10988, + Rank = 204, + Unemployment = 6, + OilProduction = 1, + BirthRate = 13, + MedianAge = 35, + Electricity = 49809, + Televisions = 17676, + PublicDebt = 37, + Internet = 2616 + }); + this.Add(new WorldStatsItem() + { + Code = @"BMU", + Name = @"Bermuda", + Continent = @"North America", + Population = 70864, + GdpTotal = 5198, + Economy = @"Developed", + Region = @"Northern America", + Status = @"Dependency", + Longitude = -64.76, + Latitude = 32.323, + GdpPerPerson = 73352, + Rank = 205, + Unemployment = 15, + OilProduction = 1, + BirthRate = 21, + MedianAge = 43, + Electricity = 54728, + Televisions = 16336, + PublicDebt = 27, + Internet = 41606 + }); + this.Add(new WorldStatsItem() + { + Code = @"GGY", + Name = @"Guernsey", + Continent = @"Europe", + Population = 66502, + GdpTotal = 3465, + Economy = @"Developed", + Region = @"Northern Europe", + Status = @"Territory", + Longitude = -2.579, + Latitude = 49.468, + GdpPerPerson = 52104, + Rank = 206, + Unemployment = 2, + OilProduction = 1, + BirthRate = 25, + MedianAge = 33, + Electricity = 9806, + Televisions = 24638, + PublicDebt = 34, + Internet = 29222 + }); + this.Add(new WorldStatsItem() + { + Code = @"CYM", + Name = @"Cayman Island", + Continent = @"North America", + Population = 58441, + GdpTotal = 2507, + Economy = @"Emerging", + Region = @"Central America", + Status = @"Dependency", + Longitude = -81.25, + Latitude = 19.343, + GdpPerPerson = 42898, + Rank = 207, + Unemployment = 12, + OilProduction = 3, + BirthRate = 7, + MedianAge = 35, + Electricity = 70206, + Televisions = 28885, + PublicDebt = 21, + Internet = 9332 + }); + this.Add(new WorldStatsItem() + { + Code = @"GRL", + Name = @"Greenland", + Continent = @"North America", + Population = 57713, + GdpTotal = 2173, + Economy = @"Developed", + Region = @"Northern America", + Status = @"Dependency", + Longitude = -42.12, + Latitude = 69.547, + GdpPerPerson = 37652, + Rank = 208, + Unemployment = 7, + OilProduction = 5, + BirthRate = 19, + MedianAge = 42, + Electricity = 86090, + Televisions = 43741, + PublicDebt = 42, + Internet = 11423 + }); + this.Add(new WorldStatsItem() + { + Code = @"KNA", + Name = @"St. Kitts and Nevis", + Continent = @"North America", + Population = 52715, + GdpTotal = 1427, + Economy = @"Developing", + Region = @"Central America", + Status = @"Country", + Longitude = -62.77, + Latitude = 17.351, + GdpPerPerson = 27070, + Rank = 209, + Unemployment = 5, + OilProduction = 2, + BirthRate = 18, + MedianAge = 40, + Electricity = 65438, + Televisions = 17719, + PublicDebt = 11, + Internet = 8543 + }); + this.Add(new WorldStatsItem() + { + Code = @"TCA", + Name = @"Turks and Caicos Is.", + Continent = @"North America", + Population = 52570, + GdpTotal = 632, + Economy = @"Developing", + Region = @"Central America", + Status = @"Dependency", + Longitude = -71.96, + Latitude = 21.913, + GdpPerPerson = 12022, + Rank = 210, + Unemployment = 6, + OilProduction = 0, + BirthRate = 13, + MedianAge = 42, + Electricity = 51325, + Televisions = 13109, + PublicDebt = 13, + Internet = 24564 + }); + this.Add(new WorldStatsItem() + { + Code = @"MNP", + Name = @"N. Mariana Island", + Continent = @"Oceania", + Population = 52263, + GdpTotal = 682, + Economy = @"Developing", + Region = @"Micronesia", + Status = @"Dependency", + Longitude = 145.49, + Latitude = 16.459, + GdpPerPerson = 13049, + Rank = 211, + Unemployment = 10, + OilProduction = 1, + BirthRate = 9, + MedianAge = 46, + Electricity = 87386, + Televisions = 13049, + PublicDebt = 20, + Internet = 5484 + }); + this.Add(new WorldStatsItem() + { + Code = @"ASM", + Name = @"American Samoa", + Continent = @"Oceania", + Population = 51504, + GdpTotal = 711, + Economy = @"Developing", + Region = @"Polynesia", + Status = @"Dependency", + Longitude = -170.6, + Latitude = -14.3, + GdpPerPerson = 13805, + Rank = 212, + Unemployment = 3, + OilProduction = 4, + BirthRate = 13, + MedianAge = 42, + Electricity = 65918, + Televisions = 18802, + PublicDebt = 23, + Internet = 14691 + }); + this.Add(new WorldStatsItem() + { + Code = @"FRO", + Name = @"Faeroe Island", + Continent = @"Europe", + Population = 50730, + GdpTotal = 2001, + Economy = @"Developed", + Region = @"Northern Europe", + Status = @"Dependency", + Longitude = -6.857, + Latitude = 62.178, + GdpPerPerson = 39444, + Rank = 213, + Unemployment = 15, + OilProduction = 2, + BirthRate = 11, + MedianAge = 46, + Electricity = 55029, + Televisions = 11762, + PublicDebt = 13, + Internet = 2412 + }); + this.Add(new WorldStatsItem() + { + Code = @"SXM", + Name = @"Sint Maarten", + Continent = @"North America", + Population = 42083, + GdpTotal = 366, + Economy = @"Developing", + Region = @"Central America", + Status = @"Dependency", + Longitude = -63.06, + Latitude = 18.044, + GdpPerPerson = 8697, + Rank = 214, + Unemployment = 14, + OilProduction = 4, + BirthRate = 19, + MedianAge = 50, + Electricity = 17166, + Televisions = 8474, + PublicDebt = 33, + Internet = 14309 + }); + this.Add(new WorldStatsItem() + { + Code = @"LIE", + Name = @"Liechtenstein", + Continent = @"Europe", + Population = 38244, + GdpTotal = 4978, + Economy = @"Developed", + Region = @"Western Europe", + Status = @"Country", + Longitude = 9.545, + Latitude = 47.164, + GdpPerPerson = 130164, + Rank = 215, + Unemployment = 11, + OilProduction = 3, + BirthRate = 10, + MedianAge = 55, + Electricity = 80781, + Televisions = 23104, + PublicDebt = 21, + Internet = 8159 + }); + this.Add(new WorldStatsItem() + { + Code = @"VGB", + Name = @"British Virgin Island", + Continent = @"North America", + Population = 35015, + GdpTotal = 500, + Economy = @"Developed", + Region = @"Central America", + Status = @"Dependency", + Longitude = -64.6, + Latitude = 18.44, + GdpPerPerson = 14280, + Rank = 216, + Unemployment = 13, + OilProduction = 2, + BirthRate = 6, + MedianAge = 51, + Electricity = 47732, + Televisions = 17777, + PublicDebt = 7, + Internet = 6238 + }); + this.Add(new WorldStatsItem() + { + Code = @"SMR", + Name = @"San Marino", + Continent = @"Europe", + Population = 33537, + GdpTotal = 2023, + Economy = @"Developed", + Region = @"Southern Europe", + Status = @"Country", + Longitude = 12.456, + Latitude = 43.942, + GdpPerPerson = 60321, + Rank = 217, + Unemployment = 10, + OilProduction = 0, + BirthRate = 15, + MedianAge = 48, + Electricity = 21943, + Televisions = 22355, + PublicDebt = 34, + Internet = 23505 + }); + this.Add(new WorldStatsItem() + { + Code = @"MAF", + Name = @"St. Martin", + Continent = @"North America", + Population = 32125, + GdpTotal = 562, + Economy = @"Developing", + Region = @"Central America", + Status = @"Dependency", + Longitude = -63.06, + Latitude = 18.092, + GdpPerPerson = 17494, + Rank = 218, + Unemployment = 15, + OilProduction = 5, + BirthRate = 10, + MedianAge = 34, + Electricity = 76791, + Televisions = 17592, + PublicDebt = 43, + Internet = 25032 + }); + this.Add(new WorldStatsItem() + { + Code = @"MCO", + Name = @"Monaco", + Continent = @"Europe", + Population = 30645, + GdpTotal = 7672, + Economy = @"Developed", + Region = @"Western Europe", + Status = @"Country", + Longitude = 7.408, + Latitude = 43.751, + GdpPerPerson = 250351, + Rank = 219, + Unemployment = 15, + OilProduction = 5, + BirthRate = 18, + MedianAge = 31, + Electricity = 73517, + Televisions = 10057, + PublicDebt = 10, + Internet = 18394 + }); + this.Add(new WorldStatsItem() + { + Code = @"ALA", + Name = @"Aland Islands", + Continent = @"Europe", + Population = 27153, + GdpTotal = 1563, + Economy = @"Developed", + Region = @"Northern Europe", + Status = @"Territory", + Longitude = 20.065, + Latitude = 60.209, + GdpPerPerson = 57563, + Rank = 220, + Unemployment = 14, + OilProduction = 3, + BirthRate = 15, + MedianAge = 54, + Electricity = 69394, + Televisions = 14696, + PublicDebt = 19, + Internet = 2736 + }); + this.Add(new WorldStatsItem() + { + Code = @"PLW", + Name = @"Palau", + Continent = @"Oceania", + Population = 21431, + GdpTotal = 276, + Economy = @"Developing", + Region = @"Micronesia", + Status = @"Country", + Longitude = 134.63, + Latitude = 7.532, + GdpPerPerson = 12879, + Rank = 221, + Unemployment = 8, + OilProduction = 1, + BirthRate = 7, + MedianAge = 39, + Electricity = 88599, + Televisions = 3019, + PublicDebt = 8, + Internet = 17075 + }); + this.Add(new WorldStatsItem() + { + Code = @"AIA", + Name = @"Anguilla", + Continent = @"North America", + Population = 17087, + GdpTotal = 175, + Economy = @"Developing", + Region = @"Central America", + Status = @"Dependency", + Longitude = -63.07, + Latitude = 18.221, + GdpPerPerson = 10242, + Rank = 222, + Unemployment = 9, + OilProduction = 1, + BirthRate = 10, + MedianAge = 49, + Electricity = 68590, + Televisions = 10632, + PublicDebt = 40, + Internet = 8703 + }); + this.Add(new WorldStatsItem() + { + Code = @"WLF", + Name = @"Wallis Island", + Continent = @"Oceania", + Population = 15714, + GdpTotal = 60, + Economy = @"Developing", + Region = @"Polynesia", + Status = @"Dependency", + Longitude = -177.1, + Latitude = -13.77, + GdpPerPerson = 3818, + Rank = 223, + Unemployment = 15, + OilProduction = 0, + BirthRate = 0, + MedianAge = 0, + Electricity = 0, + Televisions = 0, + PublicDebt = 6, + Internet = 900 + }); + this.Add(new WorldStatsItem() + { + Code = @"NRU", + Name = @"Nauru", + Continent = @"Oceania", + Population = 9642, + GdpTotal = 151, + Economy = @"Developing", + Region = @"Micronesia", + Status = @"Country", + Longitude = 166.93, + Latitude = -0.52, + GdpPerPerson = 15661, + Rank = 224, + Unemployment = 5, + OilProduction = 3, + BirthRate = 17, + MedianAge = 32, + Electricity = 84092, + Televisions = 1777, + PublicDebt = 34, + Internet = 4585 + }); + this.Add(new WorldStatsItem() + { + Code = @"COK", + Name = @"Cook Island", + Continent = @"Oceania", + Population = 9290, + GdpTotal = 244, + Economy = @"Developing", + Region = @"Polynesia", + Status = @"Dependency", + Longitude = -159.7, + Latitude = -21.21, + GdpPerPerson = 26265, + Rank = 225, + Unemployment = 15, + OilProduction = 1, + BirthRate = 6, + MedianAge = 45, + Electricity = 41320, + Televisions = 3712, + PublicDebt = 24, + Internet = 3555 + }); + this.Add(new WorldStatsItem() + { + Code = @"SHN", + Name = @"Saint Helena", + Continent = @"Africa", + Population = 7828, + GdpTotal = 31, + Economy = @"Developing", + Region = @"Western Africa", + Status = @"Dependency", + Longitude = -10.03, + Latitude = -11.94, + GdpPerPerson = 3960, + Rank = 226, + Unemployment = 13, + OilProduction = 1, + BirthRate = 17, + MedianAge = 48, + Electricity = 84435, + Televisions = 3812, + PublicDebt = 15, + Internet = 5530 + }); + this.Add(new WorldStatsItem() + { + Code = @"BLM", + Name = @"St. Barthalemy", + Continent = @"North America", + Population = 7184, + GdpTotal = 255, + Economy = @"Developed", + Region = @"Central America", + Status = @"Dependency", + Longitude = -62.83, + Latitude = 17.899, + GdpPerPerson = 35496, + Rank = 227, + Unemployment = 14, + OilProduction = 0, + BirthRate = 23, + MedianAge = 46, + Electricity = 36112, + Televisions = 4072, + PublicDebt = 27, + Internet = 5097 + }); + this.Add(new WorldStatsItem() + { + Code = @"KAS", + Name = @"Siachen Glacier", + Continent = @"Asia", + Population = 6000, + GdpTotal = 15, + Economy = @"Developing", + Region = @"Southern Asia", + Status = @"Territory", + Longitude = 77.283, + Latitude = 35.386, + GdpPerPerson = 2500, + Rank = 228, + Unemployment = 7, + OilProduction = 0, + BirthRate = 9, + MedianAge = 55, + Electricity = 62932, + Televisions = 936, + PublicDebt = 14, + Internet = 1303 + }); + this.Add(new WorldStatsItem() + { + Code = @"SPM", + Name = @"St. Pierre and Miquelon", + Continent = @"North America", + Population = 5533, + GdpTotal = 215, + Economy = @"Developed", + Region = @"Northern America", + Status = @"Territory", + Longitude = -56.26, + Latitude = 46.926, + GdpPerPerson = 38858, + Rank = 229, + Unemployment = 13, + OilProduction = 0, + BirthRate = 13, + MedianAge = 42, + Electricity = 61277, + Televisions = 2067, + PublicDebt = 18, + Internet = 2924 + }); + this.Add(new WorldStatsItem() + { + Code = @"MSR", + Name = @"Montserrat", + Continent = @"North America", + Population = 5292, + GdpTotal = 44, + Economy = @"Developing", + Region = @"Central America", + Status = @"Dependency", + Longitude = -62.18, + Latitude = 16.745, + GdpPerPerson = 8314, + Rank = 230, + Unemployment = 13, + OilProduction = 1, + BirthRate = 12, + MedianAge = 50, + Electricity = 19088, + Televisions = 1964, + PublicDebt = 44, + Internet = 4009 + }); + this.Add(new WorldStatsItem() + { + Code = @"IOT", + Name = @"British Indian Territory", + Continent = @"Asia", + Population = 4000, + GdpTotal = 160, + Economy = @"Developed", + Region = @"Southern Asia", + Status = @"Dependency", + Longitude = 72.424, + Latitude = -7.328, + GdpPerPerson = 40000, + Rank = 232, + Unemployment = 13, + OilProduction = 0, + BirthRate = 6, + MedianAge = 47, + Electricity = 91829, + Televisions = 1510, + PublicDebt = 14, + Internet = 1656 + }); + this.Add(new WorldStatsItem() + { + Code = @"FLK", + Name = @"Falkland Island", + Continent = @"South America", + Population = 2931, + GdpTotal = 282, + Economy = @"Developed", + Region = @"South America", + Status = @"Dependency", + Longitude = -59.46, + Latitude = -51.78, + GdpPerPerson = 96213, + Rank = 233, + Unemployment = 3, + OilProduction = 5, + BirthRate = 9, + MedianAge = 36, + Electricity = 68007, + Televisions = 1489, + PublicDebt = 22, + Internet = 1335 + }); + this.Add(new WorldStatsItem() + { + Code = @"NFK", + Name = @"Norfolk Island", + Continent = @"Oceania", + Population = 2210, + GdpTotal = 33, + Economy = @"Developing", + Region = @"Australia", + Status = @"Dependency", + Longitude = 167.94, + Latitude = -29.05, + GdpPerPerson = 14932, + Rank = 234, + Unemployment = 1, + OilProduction = 0, + BirthRate = 15, + MedianAge = 46, + Electricity = 91943, + Televisions = 583, + PublicDebt = 41, + Internet = 1183 + }); + this.Add(new WorldStatsItem() + { + Code = @"NIU", + Name = @"Niue", + Continent = @"Oceania", + Population = 1626, + GdpTotal = 10, + Economy = @"Developing", + Region = @"Polynesia", + Status = @"Dependency", + Longitude = -169.8, + Latitude = -19.05, + GdpPerPerson = 6150, + Rank = 235, + Unemployment = 15, + OilProduction = 4, + BirthRate = 17, + MedianAge = 51, + Electricity = 16785, + Televisions = 585, + PublicDebt = 31, + Internet = 1247 + }); + } +} diff --git a/samples/charts/data-chart/scatter-bubble-chart-tooltip/_Imports.razor b/samples/charts/data-chart/scatter-bubble-chart-tooltip/_Imports.razor new file mode 100644 index 0000000000..d27d337cb1 --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-tooltip/_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/scatter-bubble-chart-tooltip/wwwroot/WorldStatsDataChartTooltip.js b/samples/charts/data-chart/scatter-bubble-chart-tooltip/wwwroot/WorldStatsDataChartTooltip.js new file mode 100644 index 0000000000..be35e0a9c2 --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-tooltip/wwwroot/WorldStatsDataChartTooltip.js @@ -0,0 +1,48 @@ + +igRegisterScript("WorldStatsDataChartTooltip", (o, e) => { + if (e.series.tooltipTemplate === null || + e.series.tooltipTemplate === undefined) { + e.series.tooltipTemplate = worldStatsDataChartTooltipOnCreate; + console.log("WorldStatsDataChartTooltip"); + } +}, false); + +function worldStatsDataChartTooltipOnCreate(context) { + if (!context) return null; + if (!context.series) return null; + + var item = context.item; + if (!item) return null; + + var tooltip = document.createElement("div"); + tooltip.className = "ui-tooltip-content"; + + var columns = [ + { name: "Name", value: item.Name, suffix: "" }, + { name: "Debt", value: item.PublicDebt, suffix: "%" }, + { name: "Population", value: (item.Population / 1000000).toFixed(2), suffix: "M" }, + { name: "GDP", value: (item.GdpPerPerson / 1000).toFixed(1), suffix: "K" }, + ]; + + for (var i = 0; i < columns.length; i++) { + var label = document.createElement("label"); + label.innerHTML = columns[i].name + ":"; + label.className = "tooltipLbl"; + label.style.width = "4rem"; + + if (columns[i].suffix === undefined) columns[i].suffix = ""; + + var value = document.createElement("label"); + value.innerHTML = columns[i].value + columns[i].suffix; + value.className = "tooltipVal"; + + var line = document.createElement("div"); + line.className = "tooltipHorizontal"; + line.style.color = "black"; + line.appendChild(label); + line.appendChild(value); + + tooltip.appendChild(line); + } + return tooltip; +} diff --git a/samples/charts/data-chart/scatter-bubble-chart-tooltip/wwwroot/index.css b/samples/charts/data-chart/scatter-bubble-chart-tooltip/wwwroot/index.css new file mode 100644 index 0000000000..50ca13caa6 --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-tooltip/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/scatter-bubble-chart-tooltip/wwwroot/index.html b/samples/charts/data-chart/scatter-bubble-chart-tooltip/wwwroot/index.html new file mode 100644 index 0000000000..549f0706b9 --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-tooltip/wwwroot/index.html @@ -0,0 +1,32 @@ + + + + + + + + + + Samples | IgniteUI for Blazor | Infragistics + + + + + + + + + +
+ An unhandled error has occurred. + Reload + 🗙 +
+ + + + + + + + diff --git a/samples/charts/data-chart/scatter-line-chart/BlazorClientApp.csproj b/samples/charts/data-chart/scatter-line-chart/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/scatter-line-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/scatter-line-chart/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/scatter-point-chart/BlazorClientApp.csproj b/samples/charts/data-chart/scatter-point-chart/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/scatter-point-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/scatter-point-chart/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/scatter-series/BlazorClientApp.csproj b/samples/charts/data-chart/scatter-series/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/scatter-series/BlazorClientApp.csproj +++ b/samples/charts/data-chart/scatter-series/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/scatter-spline-chart/BlazorClientApp.csproj b/samples/charts/data-chart/scatter-spline-chart/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/scatter-spline-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/scatter-spline-chart/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/series-annotations/BlazorClientApp.csproj b/samples/charts/data-chart/series-annotations/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/series-annotations/BlazorClientApp.csproj +++ b/samples/charts/data-chart/series-annotations/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/series-highlighting/BlazorClientApp.csproj b/samples/charts/data-chart/series-highlighting/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/series-highlighting/BlazorClientApp.csproj +++ b/samples/charts/data-chart/series-highlighting/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/series-marker-template/BlazorClientApp.csproj b/samples/charts/data-chart/series-marker-template/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/series-marker-template/BlazorClientApp.csproj +++ b/samples/charts/data-chart/series-marker-template/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/series-markers/BlazorClientApp.csproj b/samples/charts/data-chart/series-markers/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/series-markers/BlazorClientApp.csproj +++ b/samples/charts/data-chart/series-markers/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/series-tooltips/BlazorClientApp.csproj b/samples/charts/data-chart/series-tooltips/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/series-tooltips/BlazorClientApp.csproj +++ b/samples/charts/data-chart/series-tooltips/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/series-trendlines/BlazorClientApp.csproj b/samples/charts/data-chart/series-trendlines/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/series-trendlines/BlazorClientApp.csproj +++ b/samples/charts/data-chart/series-trendlines/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/series-value-overlay/BlazorClientApp.csproj b/samples/charts/data-chart/series-value-overlay/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/series-value-overlay/BlazorClientApp.csproj +++ b/samples/charts/data-chart/series-value-overlay/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/stacked-100-area-chart/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/stacked-100-bar-chart/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/stacked-100-column-chart/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/stacked-100-line-chart/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 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 @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/stacked-100-spline-chart/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/stacked-area-chart/BlazorClientApp.csproj b/samples/charts/data-chart/stacked-area-chart/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/stacked-area-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/stacked-area-chart/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/stacked-bar-chart/BlazorClientApp.csproj b/samples/charts/data-chart/stacked-bar-chart/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/stacked-bar-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/stacked-bar-chart/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/stacked-chart-types/BlazorClientApp.csproj b/samples/charts/data-chart/stacked-chart-types/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/stacked-chart-types/BlazorClientApp.csproj +++ b/samples/charts/data-chart/stacked-chart-types/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/stacked-column-chart/BlazorClientApp.csproj b/samples/charts/data-chart/stacked-column-chart/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/stacked-column-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/stacked-column-chart/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/stacked-line-chart/BlazorClientApp.csproj b/samples/charts/data-chart/stacked-line-chart/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/stacked-line-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/stacked-line-chart/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/stacked-spline-area-chart/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/stacked-spline-chart/BlazorClientApp.csproj b/samples/charts/data-chart/stacked-spline-chart/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/stacked-spline-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/stacked-spline-chart/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/timeline-axis-type/BlazorClientApp.csproj b/samples/charts/data-chart/timeline-axis-type/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/timeline-axis-type/BlazorClientApp.csproj +++ b/samples/charts/data-chart/timeline-axis-type/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/tooltip-template/BlazorClientApp.csproj b/samples/charts/data-chart/tooltip-template/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/tooltip-template/BlazorClientApp.csproj +++ b/samples/charts/data-chart/tooltip-template/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/transition-event/BlazorClientApp.csproj b/samples/charts/data-chart/transition-event/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/transition-event/BlazorClientApp.csproj +++ b/samples/charts/data-chart/transition-event/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/type-financial-candlestick-series/BlazorClientApp.csproj +++ b/samples/charts/data-chart/type-financial-candlestick-series/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/type-financial-indicators-column/BlazorClientApp.csproj +++ b/samples/charts/data-chart/type-financial-indicators-column/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/type-financial-indicators-line/BlazorClientApp.csproj +++ b/samples/charts/data-chart/type-financial-indicators-line/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/type-financial-ohlc-series/BlazorClientApp.csproj +++ b/samples/charts/data-chart/type-financial-ohlc-series/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/type-financial-overlays/BlazorClientApp.csproj b/samples/charts/data-chart/type-financial-overlays/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/type-financial-overlays/BlazorClientApp.csproj +++ b/samples/charts/data-chart/type-financial-overlays/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/type-range-area-series/BlazorClientApp.csproj +++ b/samples/charts/data-chart/type-range-area-series/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/type-range-column-series/BlazorClientApp.csproj +++ b/samples/charts/data-chart/type-range-column-series/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/type-scatter-area-series/BlazorClientApp.csproj +++ b/samples/charts/data-chart/type-scatter-area-series/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/type-scatter-bubble-series/BlazorClientApp.csproj +++ b/samples/charts/data-chart/type-scatter-bubble-series/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/type-scatter-contour-series/BlazorClientApp.csproj +++ b/samples/charts/data-chart/type-scatter-contour-series/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/type-scatter-hd-series/BlazorClientApp.csproj +++ b/samples/charts/data-chart/type-scatter-hd-series/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/type-scatter-polygon-series/BlazorClientApp.csproj +++ b/samples/charts/data-chart/type-scatter-polygon-series/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/type-scatter-polyline-series/BlazorClientApp.csproj +++ b/samples/charts/data-chart/type-scatter-polyline-series/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/type-scatter-spline-series/BlazorClientApp.csproj +++ b/samples/charts/data-chart/type-scatter-spline-series/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-chart/waterfall-chart/BlazorClientApp.csproj b/samples/charts/data-chart/waterfall-chart/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-chart/waterfall-chart/BlazorClientApp.csproj +++ b/samples/charts/data-chart/waterfall-chart/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-pie-chart/animation/BlazorClientApp.csproj b/samples/charts/data-pie-chart/animation/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-pie-chart/animation/BlazorClientApp.csproj +++ b/samples/charts/data-pie-chart/animation/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-pie-chart/highlight-filter/BlazorClientApp.csproj b/samples/charts/data-pie-chart/highlight-filter/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-pie-chart/highlight-filter/BlazorClientApp.csproj +++ b/samples/charts/data-pie-chart/highlight-filter/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-pie-chart/highlighting/BlazorClientApp.csproj b/samples/charts/data-pie-chart/highlighting/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-pie-chart/highlighting/BlazorClientApp.csproj +++ b/samples/charts/data-pie-chart/highlighting/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-pie-chart/legend/BlazorClientApp.csproj b/samples/charts/data-pie-chart/legend/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-pie-chart/legend/BlazorClientApp.csproj +++ b/samples/charts/data-pie-chart/legend/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-pie-chart/others/BlazorClientApp.csproj b/samples/charts/data-pie-chart/others/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-pie-chart/others/BlazorClientApp.csproj +++ b/samples/charts/data-pie-chart/others/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-pie-chart/overview/BlazorClientApp.csproj b/samples/charts/data-pie-chart/overview/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-pie-chart/overview/BlazorClientApp.csproj +++ b/samples/charts/data-pie-chart/overview/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/data-pie-chart/selection/BlazorClientApp.csproj b/samples/charts/data-pie-chart/selection/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/data-pie-chart/selection/BlazorClientApp.csproj +++ b/samples/charts/data-pie-chart/selection/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/doughnut-chart/animation/BlazorClientApp.csproj b/samples/charts/doughnut-chart/animation/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/doughnut-chart/animation/BlazorClientApp.csproj +++ b/samples/charts/doughnut-chart/animation/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/doughnut-chart/explosion/BlazorClientApp.csproj b/samples/charts/doughnut-chart/explosion/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/doughnut-chart/explosion/BlazorClientApp.csproj +++ b/samples/charts/doughnut-chart/explosion/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/doughnut-chart/legend/BlazorClientApp.csproj b/samples/charts/doughnut-chart/legend/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/doughnut-chart/legend/BlazorClientApp.csproj +++ b/samples/charts/doughnut-chart/legend/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/doughnut-chart/overview/BlazorClientApp.csproj b/samples/charts/doughnut-chart/overview/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/doughnut-chart/overview/BlazorClientApp.csproj +++ b/samples/charts/doughnut-chart/overview/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/doughnut-chart/rings/BlazorClientApp.csproj b/samples/charts/doughnut-chart/rings/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/doughnut-chart/rings/BlazorClientApp.csproj +++ b/samples/charts/doughnut-chart/rings/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/doughnut-chart/selection/BlazorClientApp.csproj b/samples/charts/doughnut-chart/selection/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/doughnut-chart/selection/BlazorClientApp.csproj +++ b/samples/charts/doughnut-chart/selection/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/financial-chart/annotations/BlazorClientApp.csproj b/samples/charts/financial-chart/annotations/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/financial-chart/annotations/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/annotations/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/financial-chart/axis-types/BlazorClientApp.csproj b/samples/charts/financial-chart/axis-types/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/financial-chart/axis-types/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/axis-types/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/data-legend-formatting-currency/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/data-legend-styling-props/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/financial-chart/data-legend/BlazorClientApp.csproj b/samples/charts/financial-chart/data-legend/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/financial-chart/data-legend/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/data-legend/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/data-tooltip-styling-props/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/financial-chart/data-tooltip/BlazorClientApp.csproj b/samples/charts/financial-chart/data-tooltip/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/financial-chart/data-tooltip/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/data-tooltip/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/financial-chart/format-specifiers/BlazorClientApp.csproj b/samples/charts/financial-chart/format-specifiers/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/financial-chart/format-specifiers/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/format-specifiers/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/financial-chart/high-frequency/BlazorClientApp.csproj b/samples/charts/financial-chart/high-frequency/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/financial-chart/high-frequency/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/high-frequency/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/financial-chart/high-volume/BlazorClientApp.csproj b/samples/charts/financial-chart/high-volume/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/financial-chart/high-volume/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/high-volume/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/financial-chart/indicator-customization/BlazorClientApp.csproj b/samples/charts/financial-chart/indicator-customization/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/charts/financial-chart/indicator-customization/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/indicator-customization/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/financial-chart/indicator-types/BlazorClientApp.csproj b/samples/charts/financial-chart/indicator-types/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/financial-chart/indicator-types/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/indicator-types/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/financial-chart/multiple-data/BlazorClientApp.csproj b/samples/charts/financial-chart/multiple-data/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/financial-chart/multiple-data/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/multiple-data/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/financial-chart/overview/BlazorClientApp.csproj b/samples/charts/financial-chart/overview/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/financial-chart/overview/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/overview/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/financial-chart/panes/BlazorClientApp.csproj b/samples/charts/financial-chart/panes/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/financial-chart/panes/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/panes/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/financial-chart/performance/BlazorClientApp.csproj b/samples/charts/financial-chart/performance/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/financial-chart/performance/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/performance/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/financial-chart/scrollbars/BlazorClientApp.csproj b/samples/charts/financial-chart/scrollbars/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/financial-chart/scrollbars/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/scrollbars/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/financial-chart/stock-index-chart/BlazorClientApp.csproj b/samples/charts/financial-chart/stock-index-chart/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/financial-chart/stock-index-chart/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/stock-index-chart/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/financial-chart/styling/BlazorClientApp.csproj b/samples/charts/financial-chart/styling/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/financial-chart/styling/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/financial-chart/titles/BlazorClientApp.csproj b/samples/charts/financial-chart/titles/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/financial-chart/titles/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/titles/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/financial-chart/tooltip-types/BlazorClientApp.csproj b/samples/charts/financial-chart/tooltip-types/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/financial-chart/tooltip-types/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/tooltip-types/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/financial-chart/trendlines/BlazorClientApp.csproj b/samples/charts/financial-chart/trendlines/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/financial-chart/trendlines/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/trendlines/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/financial-chart/volume-types/BlazorClientApp.csproj b/samples/charts/financial-chart/volume-types/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/financial-chart/volume-types/BlazorClientApp.csproj +++ b/samples/charts/financial-chart/volume-types/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/pie-chart/animation/BlazorClientApp.csproj b/samples/charts/pie-chart/animation/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/pie-chart/animation/BlazorClientApp.csproj +++ b/samples/charts/pie-chart/animation/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/pie-chart/explosion/BlazorClientApp.csproj b/samples/charts/pie-chart/explosion/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/pie-chart/explosion/BlazorClientApp.csproj +++ b/samples/charts/pie-chart/explosion/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/pie-chart/legend/BlazorClientApp.csproj b/samples/charts/pie-chart/legend/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/pie-chart/legend/BlazorClientApp.csproj +++ b/samples/charts/pie-chart/legend/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/pie-chart/others/BlazorClientApp.csproj b/samples/charts/pie-chart/others/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/pie-chart/others/BlazorClientApp.csproj +++ b/samples/charts/pie-chart/others/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/pie-chart/overview/BlazorClientApp.csproj b/samples/charts/pie-chart/overview/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/pie-chart/overview/BlazorClientApp.csproj +++ b/samples/charts/pie-chart/overview/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/pie-chart/selection/BlazorClientApp.csproj b/samples/charts/pie-chart/selection/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/pie-chart/selection/BlazorClientApp.csproj +++ b/samples/charts/pie-chart/selection/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/pie-chart/styling/BlazorClientApp.csproj b/samples/charts/pie-chart/styling/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/pie-chart/styling/BlazorClientApp.csproj +++ b/samples/charts/pie-chart/styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/sparkline/display-area/BlazorClientApp.csproj b/samples/charts/sparkline/display-area/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/sparkline/display-area/BlazorClientApp.csproj +++ b/samples/charts/sparkline/display-area/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/sparkline/display-column/BlazorClientApp.csproj b/samples/charts/sparkline/display-column/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/sparkline/display-column/BlazorClientApp.csproj +++ b/samples/charts/sparkline/display-column/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/sparkline/display-lines/BlazorClientApp.csproj b/samples/charts/sparkline/display-lines/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/sparkline/display-lines/BlazorClientApp.csproj +++ b/samples/charts/sparkline/display-lines/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/sparkline/display-types/BlazorClientApp.csproj b/samples/charts/sparkline/display-types/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/sparkline/display-types/BlazorClientApp.csproj +++ b/samples/charts/sparkline/display-types/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/sparkline/display-winloss/BlazorClientApp.csproj b/samples/charts/sparkline/display-winloss/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/sparkline/display-winloss/BlazorClientApp.csproj +++ b/samples/charts/sparkline/display-winloss/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/sparkline/grid/BlazorClientApp.csproj b/samples/charts/sparkline/grid/BlazorClientApp.csproj index 5e47263b81..2bddbd842e 100644 --- a/samples/charts/sparkline/grid/BlazorClientApp.csproj +++ b/samples/charts/sparkline/grid/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,11 +12,11 @@ - - - - - + + + + + diff --git a/samples/charts/sparkline/markers/BlazorClientApp.csproj b/samples/charts/sparkline/markers/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/sparkline/markers/BlazorClientApp.csproj +++ b/samples/charts/sparkline/markers/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/sparkline/normal-range/BlazorClientApp.csproj b/samples/charts/sparkline/normal-range/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/sparkline/normal-range/BlazorClientApp.csproj +++ b/samples/charts/sparkline/normal-range/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/sparkline/trendlines/BlazorClientApp.csproj b/samples/charts/sparkline/trendlines/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/sparkline/trendlines/BlazorClientApp.csproj +++ b/samples/charts/sparkline/trendlines/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/sparkline/unknown-values/BlazorClientApp.csproj b/samples/charts/sparkline/unknown-values/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/sparkline/unknown-values/BlazorClientApp.csproj +++ b/samples/charts/sparkline/unknown-values/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/BlazorClientApp.csproj +++ b/samples/charts/toolbar/actions-built-in-category-chart/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/BlazorClientApp.csproj +++ b/samples/charts/toolbar/actions-built-in-data-chart/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/toolbar/color-editor-support/App.razor b/samples/charts/toolbar/color-editor-support/App.razor new file mode 100644 index 0000000000..97addfd648 --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/App.razor @@ -0,0 +1,116 @@ +@using IgniteUI.Blazor.Controls +@using IgniteUI.Blazor.Controls; +@using System; + +
+
+
+ + + + + + +
+
+ + +
+
+
+ + + + + + + + + + + + +
+
+ +@code { + + private Action BindElements { get; set; } + + protected override async Task OnAfterRenderAsync(bool firstRender) + { + var toolbar = this.toolbar; + var colorEditorTool = this.colorEditorTool; + var chart = this.chart; + var xAxis = this.xAxis; + var yAxis = this.yAxis; + var lineSeries1 = this.lineSeries1; + + this.BindElements = () => { + toolbar.Target = this.chart; + }; + this.BindElements(); + + } + + private IgbToolbar toolbar; + private IgbToolActionColorEditor colorEditorTool; + private IgbDataChart chart; + private IgbCategoryXAxis xAxis; + private IgbNumericYAxis yAxis; + private IgbLineSeries lineSeries1; + + public void ColorEditorToggleSeriesBrush(IgbToolCommandEventArgs args) + { + var target = this.chart; + var color = args.Command.ArgumentsList[0].Value; + switch (args.Command.CommandId) + { + case "ToggleSeriesBrush": + IgbSeries series = target.ContentSeries[0]; + series.Brush = color.ToString(); + break; + } + + } + + private CountryRenewableElectricity _countryRenewableElectricity = null; + public CountryRenewableElectricity CountryRenewableElectricity + { + get + { + if (_countryRenewableElectricity == null) + { + _countryRenewableElectricity = new CountryRenewableElectricity(); + } + return _countryRenewableElectricity; + } + } + +} \ No newline at end of file diff --git a/samples/charts/toolbar/color-editor-support/BlazorClientApp.csproj b/samples/charts/toolbar/color-editor-support/BlazorClientApp.csproj new file mode 100644 index 0000000000..5ad0404ecd --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/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/toolbar/color-editor-support/BlazorClientApp.sln b/samples/charts/toolbar/color-editor-support/BlazorClientApp.sln new file mode 100644 index 0000000000..1e2eda208a --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/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/toolbar/color-editor-support/CountryRenewableElectricity.cs b/samples/charts/toolbar/color-editor-support/CountryRenewableElectricity.cs new file mode 100644 index 0000000000..f7ec6c6174 --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/CountryRenewableElectricity.cs @@ -0,0 +1,101 @@ +using System; +using System.Collections.Generic; +public class CountryRenewableElectricityItem +{ + public string Year { get; set; } + public double Europe { get; set; } + public double China { get; set; } + public double America { get; set; } +} + +public class CountryRenewableElectricity + : List +{ + public CountryRenewableElectricity() + { + this.Add(new CountryRenewableElectricityItem() + { + Year = @"2009", + Europe = 34, + China = 21, + America = 19 + }); + this.Add(new CountryRenewableElectricityItem() + { + Year = @"2010", + Europe = 43, + China = 26, + America = 24 + }); + this.Add(new CountryRenewableElectricityItem() + { + Year = @"2011", + Europe = 66, + China = 29, + America = 28 + }); + this.Add(new CountryRenewableElectricityItem() + { + Year = @"2012", + Europe = 69, + China = 32, + America = 26 + }); + this.Add(new CountryRenewableElectricityItem() + { + Year = @"2013", + Europe = 58, + China = 47, + America = 38 + }); + this.Add(new CountryRenewableElectricityItem() + { + Year = @"2014", + Europe = 40, + China = 46, + America = 31 + }); + this.Add(new CountryRenewableElectricityItem() + { + Year = @"2015", + Europe = 78, + China = 50, + America = 19 + }); + this.Add(new CountryRenewableElectricityItem() + { + Year = @"2016", + Europe = 13, + China = 90, + America = 52 + }); + this.Add(new CountryRenewableElectricityItem() + { + Year = @"2017", + Europe = 78, + China = 132, + America = 50 + }); + this.Add(new CountryRenewableElectricityItem() + { + Year = @"2018", + Europe = 40, + China = 134, + America = 34 + }); + this.Add(new CountryRenewableElectricityItem() + { + Year = @"2018", + Europe = 40, + China = 134, + America = 34 + }); + this.Add(new CountryRenewableElectricityItem() + { + Year = @"2019", + Europe = 80, + China = 96, + America = 38 + }); + } +} diff --git a/samples/charts/toolbar/color-editor-support/Program.cs b/samples/charts/toolbar/color-editor-support/Program.cs new file mode 100644 index 0000000000..6bc56f81fb --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/Program.cs @@ -0,0 +1,39 @@ +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(IgbToolbarModule), + typeof(IgbToolActionComboModule), + typeof(IgbToolActionColorEditorModule), + typeof(IgbDataChartToolbarModule), + typeof(IgbDataLegendModule), + typeof(IgbNumberAbbreviatorModule), + typeof(IgbDataChartCategoryModule), + typeof(IgbDataChartCoreModule), + typeof(IgbDataChartCategoryModule), + typeof(IgbDataChartAnnotationModule), + typeof(IgbDataChartInteractivityModule), + typeof(IgbDataChartAnnotationModule) + ); + await builder.Build().RunAsync(); + } + } +} diff --git a/samples/charts/toolbar/color-editor-support/Properties/launchSettings.json b/samples/charts/toolbar/color-editor-support/Properties/launchSettings.json new file mode 100644 index 0000000000..18bd6fb5bc --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/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/toolbar/color-editor-support/ReadMe.md b/samples/charts/toolbar/color-editor-support/ReadMe.md new file mode 100644 index 0000000000..a5aa8dc185 --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/ReadMe.md @@ -0,0 +1,70 @@ + + + +This folder contains implementation of Blazor application with example of Color Editor Support feature using [Toolbar](https://www.infragistics.com/products/ignite-ui-blazor/blazor/components/general-getting-started.html) component. + + + + + + + View Docs + + + View Code + + + Run Sample + + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-blazor-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-blazor-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Setup + +- instal **.NET SDK** from this [website](https://dotnet.microsoft.com/learn/aspnet/blazor-tutorial/install) + +## Running App in Visual Studio 2019 + +NOTE: VS 2019 has better code highlighting and error detection than VS Code does. + +- open **Visual Studio 2019** as an administrator + +- open the **BlazorClientApp.sln** solution + +- right click solution and select **Restore NuGet Packages** menu item + +- click **Debug** menu and select **Start Debugging** or press **F5** key + + +## Running App in VS Code + +- open **VS Code** as an administrator + +- open this folder in **VS Code** + +- open a terminal window + +- to restore assemblies, run this command: +```dotnet restore``` + +- to run samples, run this command: +```dotnet watch run``` + +- wait for for message: +**Now listening on: http://localhost:4200** + +- open **http://localhost:4200** in your browser + + +## Resources + +- [Razor Component Models](https://www.codemag.com/article/1911052) +- [Razor Syntax](https://docs.microsoft.com/en-us/aspnet/core/blazor/components/?view=aspnetcore-3.1#razor-syntax) +- [Getting reference to components](https://docs.microsoft.com/en-us/aspnet/core/blazor/components/?view=aspnetcore-3.1#capture-references-to-components) diff --git a/samples/charts/toolbar/color-editor-support/_Imports.razor b/samples/charts/toolbar/color-editor-support/_Imports.razor new file mode 100644 index 0000000000..d27d337cb1 --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/_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/toolbar/color-editor-support/wwwroot/index.css b/samples/charts/toolbar/color-editor-support/wwwroot/index.css new file mode 100644 index 0000000000..73832fcf8b --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/wwwroot/index.css @@ -0,0 +1,22 @@ +/* +CSS styles are loaded from the shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ +#aboveContentSplit { + display: flex; + flex-direction: row; +} +#aboveContentLeftContainer { + margin-left: 1.25rem; + display: flex; + flex-grow: 1; + justify-content: start; + align-items: end; +} +#aboveContentRightContainer { + margin-right: 1.25rem; + display: flex; + flex-grow: 1; + justify-content: end; + align-items: end; +} diff --git a/samples/charts/toolbar/color-editor-support/wwwroot/index.html b/samples/charts/toolbar/color-editor-support/wwwroot/index.html new file mode 100644 index 0000000000..8833030d8e --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/wwwroot/index.html @@ -0,0 +1,30 @@ + + + + + + + + + + Samples | IgniteUI for Blazor | Infragistics + + + + + + + + + +
+ An unhandled error has occurred. + Reload + 🗙 +
+ + + + + + diff --git a/samples/charts/toolbar/custom-tool/App.razor b/samples/charts/toolbar/custom-tool/App.razor index 34a0a853bf..b5e29f426a 100644 --- a/samples/charts/toolbar/custom-tool/App.razor +++ b/samples/charts/toolbar/custom-tool/App.razor @@ -15,7 +15,9 @@ + IconCollectionName="CustomCollection" + Name="CustomIconName" + @ref="customIconName"> @@ -58,6 +60,7 @@ { var legend = this.legend; var toolbar = this.toolbar; + var customIconName = this.customIconName; var chart = this.chart; this.BindElements = () => { @@ -73,6 +76,7 @@ private IgbLegend legend; private IgbToolbar toolbar; + private IgbToolActionLabel customIconName; private IgbCategoryChart chart; public void ToolbarCustomIconOnViewInit() diff --git a/samples/charts/toolbar/custom-tool/BlazorClientApp.csproj b/samples/charts/toolbar/custom-tool/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/toolbar/custom-tool/BlazorClientApp.csproj +++ b/samples/charts/toolbar/custom-tool/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/toolbar/download-data-chart-as-image/BlazorClientApp.csproj +++ b/samples/charts/toolbar/download-data-chart-as-image/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/BlazorClientApp.csproj +++ b/samples/charts/toolbar/layout-actions-for-data-chart/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/BlazorClientApp.csproj b/samples/charts/toolbar/layout-in-vertical-orientation/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/BlazorClientApp.csproj +++ b/samples/charts/toolbar/layout-in-vertical-orientation/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/toolbar/theming/BlazorClientApp.csproj b/samples/charts/toolbar/theming/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/toolbar/theming/BlazorClientApp.csproj +++ b/samples/charts/toolbar/theming/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/tree-map/events/BlazorClientApp.csproj b/samples/charts/tree-map/events/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/tree-map/events/BlazorClientApp.csproj +++ b/samples/charts/tree-map/events/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/tree-map/highlighting-percent-based/BlazorClientApp.csproj b/samples/charts/tree-map/highlighting-percent-based/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/tree-map/highlighting-percent-based/BlazorClientApp.csproj +++ b/samples/charts/tree-map/highlighting-percent-based/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/tree-map/highlighting/BlazorClientApp.csproj b/samples/charts/tree-map/highlighting/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/tree-map/highlighting/BlazorClientApp.csproj +++ b/samples/charts/tree-map/highlighting/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/tree-map/layout/BlazorClientApp.csproj b/samples/charts/tree-map/layout/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/tree-map/layout/BlazorClientApp.csproj +++ b/samples/charts/tree-map/layout/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/tree-map/overview/BlazorClientApp.csproj b/samples/charts/tree-map/overview/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/tree-map/overview/BlazorClientApp.csproj +++ b/samples/charts/tree-map/overview/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/tree-map/styling/BlazorClientApp.csproj b/samples/charts/tree-map/styling/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/tree-map/styling/BlazorClientApp.csproj +++ b/samples/charts/tree-map/styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/charts/zoomslider/overview/BlazorClientApp.csproj b/samples/charts/zoomslider/overview/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/charts/zoomslider/overview/BlazorClientApp.csproj +++ b/samples/charts/zoomslider/overview/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/editors/date-picker/date-limits/BlazorClientApp.csproj b/samples/editors/date-picker/date-limits/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/editors/date-picker/date-limits/BlazorClientApp.csproj +++ b/samples/editors/date-picker/date-limits/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/editors/date-picker/editing/BlazorClientApp.csproj b/samples/editors/date-picker/editing/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/editors/date-picker/editing/BlazorClientApp.csproj +++ b/samples/editors/date-picker/editing/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/editors/date-picker/format/BlazorClientApp.csproj b/samples/editors/date-picker/format/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/editors/date-picker/format/BlazorClientApp.csproj +++ b/samples/editors/date-picker/format/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/editors/date-picker/overview/BlazorClientApp.csproj b/samples/editors/date-picker/overview/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/editors/date-picker/overview/BlazorClientApp.csproj +++ b/samples/editors/date-picker/overview/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/editors/date-picker/range/BlazorClientApp.csproj b/samples/editors/date-picker/range/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/editors/date-picker/range/BlazorClientApp.csproj +++ b/samples/editors/date-picker/range/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/editors/multi-column-combobox/binding/BlazorClientApp.csproj b/samples/editors/multi-column-combobox/binding/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/editors/multi-column-combobox/binding/BlazorClientApp.csproj +++ b/samples/editors/multi-column-combobox/binding/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/editors/multi-column-combobox/overview/BlazorClientApp.csproj b/samples/editors/multi-column-combobox/overview/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/editors/multi-column-combobox/overview/BlazorClientApp.csproj +++ b/samples/editors/multi-column-combobox/overview/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/editors/x-date-picker/date-limits/BlazorClientApp.csproj b/samples/editors/x-date-picker/date-limits/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/editors/x-date-picker/date-limits/BlazorClientApp.csproj +++ b/samples/editors/x-date-picker/date-limits/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/editors/x-date-picker/editing/BlazorClientApp.csproj b/samples/editors/x-date-picker/editing/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/editors/x-date-picker/editing/BlazorClientApp.csproj +++ b/samples/editors/x-date-picker/editing/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/editors/x-date-picker/format/BlazorClientApp.csproj b/samples/editors/x-date-picker/format/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/editors/x-date-picker/format/BlazorClientApp.csproj +++ b/samples/editors/x-date-picker/format/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/editors/x-date-picker/overview/BlazorClientApp.csproj b/samples/editors/x-date-picker/overview/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/editors/x-date-picker/overview/BlazorClientApp.csproj +++ b/samples/editors/x-date-picker/overview/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/editors/x-date-picker/range/BlazorClientApp.csproj b/samples/editors/x-date-picker/range/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/editors/x-date-picker/range/BlazorClientApp.csproj +++ b/samples/editors/x-date-picker/range/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/excel/excel-library/operations-on-workbooks/App.razor b/samples/excel/excel-library/operations-on-workbooks/App.razor index 3328f31bbb..a33d614039 100644 --- a/samples/excel/excel-library/operations-on-workbooks/App.razor +++ b/samples/excel/excel-library/operations-on-workbooks/App.razor @@ -12,7 +12,9 @@ @using Microsoft.JSInterop.WebAssembly @using Infragistics.Documents.Excel @using IgniteUI.Blazor.Controls +@using System.Runtime.InteropServices.JavaScript +@implements IDisposable
@@ -33,8 +35,8 @@ @if (Data != null) { + DataSource="Data" + AutoGenerateColumns="true"> } @@ -310,13 +312,32 @@ } - public void SaveFile(byte[] bytes, string fileName, string mime) + JSObject module; + bool moduleDownloaded = false; + public async void SaveFile(byte[] bytes, string fileName, string mime) { if (Runtime is WebAssemblyJSRuntime wasmRuntime) - wasmRuntime.InvokeUnmarshalled("BlazorDownloadFileFast", fileName, mime, bytes); + { + if (!moduleDownloaded) + { + module = await JSHost.ImportAsync("BlazorFastDownload", "../BlazorFastDownloadFile.js"); + moduleDownloaded = true; + } + BlazorFastDownload.DownloadFile(fileName, mime, bytes); + } else if (Runtime is IJSInProcessRuntime inProc) inProc.InvokeVoid("BlazorDownloadFile", fileName, mime, bytes); + + + } + public void Dispose() + { + if (moduleDownloaded && module != null) + { + module.Dispose(); + } } + public void OnTableChange(ChangeEventArgs args) { diff --git a/samples/excel/excel-library/operations-on-workbooks/BlazorClientApp.csproj b/samples/excel/excel-library/operations-on-workbooks/BlazorClientApp.csproj index 162ea7ce0f..22522feb89 100644 --- a/samples/excel/excel-library/operations-on-workbooks/BlazorClientApp.csproj +++ b/samples/excel/excel-library/operations-on-workbooks/BlazorClientApp.csproj @@ -1,10 +1,12 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples + + true @@ -12,13 +14,15 @@ - - - - + + + + - - + + + + diff --git a/samples/excel/excel-library/operations-on-workbooks/BlazorFastDownload.cs b/samples/excel/excel-library/operations-on-workbooks/BlazorFastDownload.cs new file mode 100644 index 0000000000..7982c963b7 --- /dev/null +++ b/samples/excel/excel-library/operations-on-workbooks/BlazorFastDownload.cs @@ -0,0 +1,11 @@ +using System.Runtime.InteropServices.JavaScript; + +namespace Infragistics.Samples +{ + public partial class BlazorFastDownload + { + [JSImport("BlazorDownloadFileFast", "BlazorFastDownload")] + internal static partial void DownloadFile(string name, string contentType, byte[] content); + + } +} diff --git a/samples/excel/excel-library/operations-on-workbooks/wwwroot/BlazorDownloadFile.js b/samples/excel/excel-library/operations-on-workbooks/wwwroot/BlazorDownloadFile.js index 58ccc3e791..e3d98cf921 100644 --- a/samples/excel/excel-library/operations-on-workbooks/wwwroot/BlazorDownloadFile.js +++ b/samples/excel/excel-library/operations-on-workbooks/wwwroot/BlazorDownloadFile.js @@ -1,23 +1,6 @@ // these methods are from: // https://www.meziantou.net/generating-and-downloading-a-file-in-a-blazor-webassembly-application.htm -function BlazorDownloadFileFast(name, contentType, content) { - // Convert the parameters to actual JS types - var nameStr = BINDING.conv_string(name); - var contentTypeStr = BINDING.conv_string(contentType); - var contentArray = Blazor.platform.toUint8Array(content); - // Create the URL - var file = new File([contentArray], nameStr, { type: contentTypeStr }); - var exportUrl = URL.createObjectURL(file); - // Create the element and click on it - var a = document.createElement("a"); - document.body.appendChild(a); - a.href = exportUrl; - a.download = nameStr; - a.target = "_self"; - a.click(); - // We don't need to keep the url, let's release the memory - URL.revokeObjectURL(exportUrl); -} + function BlazorDownloadFile(filename, contentType, content) { // Blazor marshall byte[] to a base64 string, so we first need to convert the string (content) to a Uint8Array to create the File var data = base64DecToArr(content); diff --git a/samples/excel/excel-library/operations-on-workbooks/wwwroot/BlazorFastDownloadFile.js b/samples/excel/excel-library/operations-on-workbooks/wwwroot/BlazorFastDownloadFile.js new file mode 100644 index 0000000000..227b509a42 --- /dev/null +++ b/samples/excel/excel-library/operations-on-workbooks/wwwroot/BlazorFastDownloadFile.js @@ -0,0 +1,20 @@ +// these methods are from: +// https://www.meziantou.net/generating-and-downloading-a-file-in-a-blazor-webassembly-application.htm +export function BlazorDownloadFileFast(name, contentType, content) { + // Convert the parameters to actual JS types + var nameStr = name; + var contentTypeStr = contentType; + var contentArray = new Uint8Array(content); + // Create the URL + var file = new File([contentArray], nameStr, { type: contentTypeStr }); + var exportUrl = URL.createObjectURL(file); + // Create the element and click on it + var a = document.createElement("a"); + document.body.appendChild(a); + a.href = exportUrl; + a.download = nameStr; + a.target = "_self"; + a.click(); + // We don't need to keep the url, let's release the memory + URL.revokeObjectURL(exportUrl); +} diff --git a/samples/excel/excel-library/operations-on-worksheets/App.razor b/samples/excel/excel-library/operations-on-worksheets/App.razor index c1fbc7d239..f2d10d2570 100644 --- a/samples/excel/excel-library/operations-on-worksheets/App.razor +++ b/samples/excel/excel-library/operations-on-worksheets/App.razor @@ -14,6 +14,9 @@ @using Documents.Excel.ConditionalFormatting @using Documents.Excel.Sorting @using Documents.Excel.Filtering +@using System.Runtime.InteropServices.JavaScript + +@implements IDisposable
@@ -233,12 +236,30 @@ } - public void SaveFile(byte[] bytes, string fileName, string mime) + JSObject module; + bool moduleDownloaded = false; + public async void SaveFile(byte[] bytes, string fileName, string mime) { if (Runtime is WebAssemblyJSRuntime wasmRuntime) - wasmRuntime.InvokeUnmarshalled("BlazorDownloadFileFast", fileName, mime, bytes); + { + if (!moduleDownloaded) + { + module = await JSHost.ImportAsync("BlazorFastDownload", "../BlazorFastDownloadFile.js"); + moduleDownloaded = true; + } + BlazorFastDownload.DownloadFile(fileName, mime, bytes); + } else if (Runtime is IJSInProcessRuntime inProc) inProc.InvokeVoid("BlazorDownloadFile", fileName, mime, bytes); + + + } + public void Dispose() + { + if (moduleDownloaded && module != null) + { + module.Dispose(); + } } public void OnSortChange(ChangeEventArgs args) diff --git a/samples/excel/excel-library/operations-on-worksheets/BlazorClientApp.csproj b/samples/excel/excel-library/operations-on-worksheets/BlazorClientApp.csproj index 162ea7ce0f..22522feb89 100644 --- a/samples/excel/excel-library/operations-on-worksheets/BlazorClientApp.csproj +++ b/samples/excel/excel-library/operations-on-worksheets/BlazorClientApp.csproj @@ -1,10 +1,12 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples + + true @@ -12,13 +14,15 @@ - - - - + + + + - - + + + + diff --git a/samples/excel/excel-library/operations-on-worksheets/BlazorFastDownload.cs b/samples/excel/excel-library/operations-on-worksheets/BlazorFastDownload.cs new file mode 100644 index 0000000000..7982c963b7 --- /dev/null +++ b/samples/excel/excel-library/operations-on-worksheets/BlazorFastDownload.cs @@ -0,0 +1,11 @@ +using System.Runtime.InteropServices.JavaScript; + +namespace Infragistics.Samples +{ + public partial class BlazorFastDownload + { + [JSImport("BlazorDownloadFileFast", "BlazorFastDownload")] + internal static partial void DownloadFile(string name, string contentType, byte[] content); + + } +} diff --git a/samples/excel/excel-library/operations-on-worksheets/wwwroot/BlazorDownloadFile.js b/samples/excel/excel-library/operations-on-worksheets/wwwroot/BlazorDownloadFile.js index 58ccc3e791..e3d98cf921 100644 --- a/samples/excel/excel-library/operations-on-worksheets/wwwroot/BlazorDownloadFile.js +++ b/samples/excel/excel-library/operations-on-worksheets/wwwroot/BlazorDownloadFile.js @@ -1,23 +1,6 @@ // these methods are from: // https://www.meziantou.net/generating-and-downloading-a-file-in-a-blazor-webassembly-application.htm -function BlazorDownloadFileFast(name, contentType, content) { - // Convert the parameters to actual JS types - var nameStr = BINDING.conv_string(name); - var contentTypeStr = BINDING.conv_string(contentType); - var contentArray = Blazor.platform.toUint8Array(content); - // Create the URL - var file = new File([contentArray], nameStr, { type: contentTypeStr }); - var exportUrl = URL.createObjectURL(file); - // Create the element and click on it - var a = document.createElement("a"); - document.body.appendChild(a); - a.href = exportUrl; - a.download = nameStr; - a.target = "_self"; - a.click(); - // We don't need to keep the url, let's release the memory - URL.revokeObjectURL(exportUrl); -} + function BlazorDownloadFile(filename, contentType, content) { // Blazor marshall byte[] to a base64 string, so we first need to convert the string (content) to a Uint8Array to create the File var data = base64DecToArr(content); diff --git a/samples/excel/excel-library/operations-on-worksheets/wwwroot/BlazorFastDownloadFile.js b/samples/excel/excel-library/operations-on-worksheets/wwwroot/BlazorFastDownloadFile.js new file mode 100644 index 0000000000..227b509a42 --- /dev/null +++ b/samples/excel/excel-library/operations-on-worksheets/wwwroot/BlazorFastDownloadFile.js @@ -0,0 +1,20 @@ +// these methods are from: +// https://www.meziantou.net/generating-and-downloading-a-file-in-a-blazor-webassembly-application.htm +export function BlazorDownloadFileFast(name, contentType, content) { + // Convert the parameters to actual JS types + var nameStr = name; + var contentTypeStr = contentType; + var contentArray = new Uint8Array(content); + // Create the URL + var file = new File([contentArray], nameStr, { type: contentTypeStr }); + var exportUrl = URL.createObjectURL(file); + // Create the element and click on it + var a = document.createElement("a"); + document.body.appendChild(a); + a.href = exportUrl; + a.download = nameStr; + a.target = "_self"; + a.click(); + // We don't need to keep the url, let's release the memory + URL.revokeObjectURL(exportUrl); +} diff --git a/samples/excel/excel-library/operations-on-worksheets/wwwroot/index.html b/samples/excel/excel-library/operations-on-worksheets/wwwroot/index.html index 0245d5c015..8b25a527c6 100644 --- a/samples/excel/excel-library/operations-on-worksheets/wwwroot/index.html +++ b/samples/excel/excel-library/operations-on-worksheets/wwwroot/index.html @@ -26,6 +26,7 @@ + diff --git a/samples/excel/excel-library/overview/App.razor b/samples/excel/excel-library/overview/App.razor index 34020d6531..5eef0d67d3 100644 --- a/samples/excel/excel-library/overview/App.razor +++ b/samples/excel/excel-library/overview/App.razor @@ -11,6 +11,9 @@ @using Microsoft.JSInterop @using Microsoft.JSInterop.WebAssembly @using Infragistics.Documents.Excel +@using System.Runtime.InteropServices.JavaScript + +@implements IDisposable
@@ -228,11 +231,29 @@ this.SaveFile(bytes, fileName, mime); } - private void SaveFile(byte[] bytes, string fileName, string mime) + JSObject module; + bool moduleDownloaded = false; + public async void SaveFile(byte[] bytes, string fileName, string mime) { - if (this.Runtime is WebAssemblyJSRuntime wasmRuntime) - wasmRuntime.InvokeUnmarshalled("BlazorDownloadFileFast", fileName, mime, bytes); - else if (this.Runtime is IJSInProcessRuntime inProc) + if (Runtime is WebAssemblyJSRuntime wasmRuntime) + { + if (!moduleDownloaded) + { + module = await JSHost.ImportAsync("BlazorFastDownload", "../BlazorFastDownloadFile.js"); + moduleDownloaded = true; + } + BlazorFastDownload.DownloadFile(fileName, mime, bytes); + } + else if (Runtime is IJSInProcessRuntime inProc) inProc.InvokeVoid("BlazorDownloadFile", fileName, mime, bytes); + + + } + public void Dispose() + { + if (moduleDownloaded && module != null) + { + module.Dispose(); + } } } \ No newline at end of file diff --git a/samples/excel/excel-library/overview/BlazorClientApp.csproj b/samples/excel/excel-library/overview/BlazorClientApp.csproj index 162ea7ce0f..b083dc84a2 100644 --- a/samples/excel/excel-library/overview/BlazorClientApp.csproj +++ b/samples/excel/excel-library/overview/BlazorClientApp.csproj @@ -1,10 +1,12 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples + + true @@ -12,13 +14,15 @@ - - - - + + + + - - + + + + diff --git a/samples/excel/excel-library/overview/BlazorFastDownload.cs b/samples/excel/excel-library/overview/BlazorFastDownload.cs new file mode 100644 index 0000000000..7982c963b7 --- /dev/null +++ b/samples/excel/excel-library/overview/BlazorFastDownload.cs @@ -0,0 +1,11 @@ +using System.Runtime.InteropServices.JavaScript; + +namespace Infragistics.Samples +{ + public partial class BlazorFastDownload + { + [JSImport("BlazorDownloadFileFast", "BlazorFastDownload")] + internal static partial void DownloadFile(string name, string contentType, byte[] content); + + } +} diff --git a/samples/excel/excel-library/overview/wwwroot/BlazorDownloadFile.js b/samples/excel/excel-library/overview/wwwroot/BlazorDownloadFile.js index 58ccc3e791..e3d98cf921 100644 --- a/samples/excel/excel-library/overview/wwwroot/BlazorDownloadFile.js +++ b/samples/excel/excel-library/overview/wwwroot/BlazorDownloadFile.js @@ -1,23 +1,6 @@ // these methods are from: // https://www.meziantou.net/generating-and-downloading-a-file-in-a-blazor-webassembly-application.htm -function BlazorDownloadFileFast(name, contentType, content) { - // Convert the parameters to actual JS types - var nameStr = BINDING.conv_string(name); - var contentTypeStr = BINDING.conv_string(contentType); - var contentArray = Blazor.platform.toUint8Array(content); - // Create the URL - var file = new File([contentArray], nameStr, { type: contentTypeStr }); - var exportUrl = URL.createObjectURL(file); - // Create the element and click on it - var a = document.createElement("a"); - document.body.appendChild(a); - a.href = exportUrl; - a.download = nameStr; - a.target = "_self"; - a.click(); - // We don't need to keep the url, let's release the memory - URL.revokeObjectURL(exportUrl); -} + function BlazorDownloadFile(filename, contentType, content) { // Blazor marshall byte[] to a base64 string, so we first need to convert the string (content) to a Uint8Array to create the File var data = base64DecToArr(content); diff --git a/samples/excel/excel-library/overview/wwwroot/BlazorFastDownloadFile.js b/samples/excel/excel-library/overview/wwwroot/BlazorFastDownloadFile.js new file mode 100644 index 0000000000..227b509a42 --- /dev/null +++ b/samples/excel/excel-library/overview/wwwroot/BlazorFastDownloadFile.js @@ -0,0 +1,20 @@ +// these methods are from: +// https://www.meziantou.net/generating-and-downloading-a-file-in-a-blazor-webassembly-application.htm +export function BlazorDownloadFileFast(name, contentType, content) { + // Convert the parameters to actual JS types + var nameStr = name; + var contentTypeStr = contentType; + var contentArray = new Uint8Array(content); + // Create the URL + var file = new File([contentArray], nameStr, { type: contentTypeStr }); + var exportUrl = URL.createObjectURL(file); + // Create the element and click on it + var a = document.createElement("a"); + document.body.appendChild(a); + a.href = exportUrl; + a.download = nameStr; + a.target = "_self"; + a.click(); + // We don't need to keep the url, let's release the memory + URL.revokeObjectURL(exportUrl); +} diff --git a/samples/excel/excel-library/overview/wwwroot/index.html b/samples/excel/excel-library/overview/wwwroot/index.html index d4766c834d..8f4e77df08 100644 --- a/samples/excel/excel-library/overview/wwwroot/index.html +++ b/samples/excel/excel-library/overview/wwwroot/index.html @@ -25,6 +25,7 @@ + diff --git a/samples/excel/excel-library/working-with-cells/App.razor b/samples/excel/excel-library/working-with-cells/App.razor index 229c46846b..878ca1eea8 100644 --- a/samples/excel/excel-library/working-with-cells/App.razor +++ b/samples/excel/excel-library/working-with-cells/App.razor @@ -11,6 +11,9 @@ @using Microsoft.JSInterop @using Microsoft.JSInterop.WebAssembly @using Infragistics.Documents.Excel +@using System.Runtime.InteropServices.JavaScript + +@implements IDisposable
@@ -298,11 +301,29 @@ this.SaveFile(bytes, fileName, mime); } - private void SaveFile(byte[] bytes, string fileName, string mime) + JSObject module; + bool moduleDownloaded = false; + public async void SaveFile(byte[] bytes, string fileName, string mime) { - if (this.Runtime is WebAssemblyJSRuntime wasmRuntime) - wasmRuntime.InvokeUnmarshalled("BlazorDownloadFileFast", fileName, mime, bytes); - else if (this.Runtime is IJSInProcessRuntime inProc) + if (Runtime is WebAssemblyJSRuntime wasmRuntime) + { + if (!moduleDownloaded) + { + module = await JSHost.ImportAsync("BlazorFastDownload", "../BlazorFastDownloadFile.js"); + moduleDownloaded = true; + } + BlazorFastDownload.DownloadFile(fileName, mime, bytes); + } + else if (Runtime is IJSInProcessRuntime inProc) inProc.InvokeVoid("BlazorDownloadFile", fileName, mime, bytes); + + + } + public void Dispose() + { + if (moduleDownloaded && module != null) + { + module.Dispose(); + } } } \ No newline at end of file diff --git a/samples/excel/excel-library/working-with-cells/BlazorClientApp.csproj b/samples/excel/excel-library/working-with-cells/BlazorClientApp.csproj index 0416eb398c..620161153c 100644 --- a/samples/excel/excel-library/working-with-cells/BlazorClientApp.csproj +++ b/samples/excel/excel-library/working-with-cells/BlazorClientApp.csproj @@ -1,10 +1,12 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples + + true @@ -12,14 +14,16 @@ - - - - - + + + + + - - + + + + diff --git a/samples/excel/excel-library/working-with-cells/BlazorFastDownload.cs b/samples/excel/excel-library/working-with-cells/BlazorFastDownload.cs new file mode 100644 index 0000000000..7982c963b7 --- /dev/null +++ b/samples/excel/excel-library/working-with-cells/BlazorFastDownload.cs @@ -0,0 +1,11 @@ +using System.Runtime.InteropServices.JavaScript; + +namespace Infragistics.Samples +{ + public partial class BlazorFastDownload + { + [JSImport("BlazorDownloadFileFast", "BlazorFastDownload")] + internal static partial void DownloadFile(string name, string contentType, byte[] content); + + } +} diff --git a/samples/excel/excel-library/working-with-cells/wwwroot/BlazorDownloadFile.js b/samples/excel/excel-library/working-with-cells/wwwroot/BlazorDownloadFile.js index 58ccc3e791..e3d98cf921 100644 --- a/samples/excel/excel-library/working-with-cells/wwwroot/BlazorDownloadFile.js +++ b/samples/excel/excel-library/working-with-cells/wwwroot/BlazorDownloadFile.js @@ -1,23 +1,6 @@ // these methods are from: // https://www.meziantou.net/generating-and-downloading-a-file-in-a-blazor-webassembly-application.htm -function BlazorDownloadFileFast(name, contentType, content) { - // Convert the parameters to actual JS types - var nameStr = BINDING.conv_string(name); - var contentTypeStr = BINDING.conv_string(contentType); - var contentArray = Blazor.platform.toUint8Array(content); - // Create the URL - var file = new File([contentArray], nameStr, { type: contentTypeStr }); - var exportUrl = URL.createObjectURL(file); - // Create the element and click on it - var a = document.createElement("a"); - document.body.appendChild(a); - a.href = exportUrl; - a.download = nameStr; - a.target = "_self"; - a.click(); - // We don't need to keep the url, let's release the memory - URL.revokeObjectURL(exportUrl); -} + function BlazorDownloadFile(filename, contentType, content) { // Blazor marshall byte[] to a base64 string, so we first need to convert the string (content) to a Uint8Array to create the File var data = base64DecToArr(content); diff --git a/samples/excel/excel-library/working-with-cells/wwwroot/BlazorFastDownloadFile.js b/samples/excel/excel-library/working-with-cells/wwwroot/BlazorFastDownloadFile.js new file mode 100644 index 0000000000..227b509a42 --- /dev/null +++ b/samples/excel/excel-library/working-with-cells/wwwroot/BlazorFastDownloadFile.js @@ -0,0 +1,20 @@ +// these methods are from: +// https://www.meziantou.net/generating-and-downloading-a-file-in-a-blazor-webassembly-application.htm +export function BlazorDownloadFileFast(name, contentType, content) { + // Convert the parameters to actual JS types + var nameStr = name; + var contentTypeStr = contentType; + var contentArray = new Uint8Array(content); + // Create the URL + var file = new File([contentArray], nameStr, { type: contentTypeStr }); + var exportUrl = URL.createObjectURL(file); + // Create the element and click on it + var a = document.createElement("a"); + document.body.appendChild(a); + a.href = exportUrl; + a.download = nameStr; + a.target = "_self"; + a.click(); + // We don't need to keep the url, let's release the memory + URL.revokeObjectURL(exportUrl); +} diff --git a/samples/excel/excel-library/working-with-cells/wwwroot/index.html b/samples/excel/excel-library/working-with-cells/wwwroot/index.html index d4766c834d..dfc41088d6 100644 --- a/samples/excel/excel-library/working-with-cells/wwwroot/index.html +++ b/samples/excel/excel-library/working-with-cells/wwwroot/index.html @@ -25,6 +25,7 @@ + diff --git a/samples/excel/excel-library/working-with-charts/App.razor b/samples/excel/excel-library/working-with-charts/App.razor index 7bffe6cf81..ff3b155be2 100644 --- a/samples/excel/excel-library/working-with-charts/App.razor +++ b/samples/excel/excel-library/working-with-charts/App.razor @@ -3,7 +3,9 @@ @using Microsoft.JSInterop.WebAssembly @using Infragistics.Documents.Excel @using IgniteUI.Blazor.Controls +@using System.Runtime.InteropServices.JavaScript +@implements IDisposable
@@ -196,12 +198,30 @@ this.SaveFile(bytes, "ExelWorkbook.xlsx", string.Empty); } - private void SaveFile(byte[] bytes, string fileName, string mime) + JSObject module; + bool moduleDownloaded = false; + public async void SaveFile(byte[] bytes, string fileName, string mime) { - if (this.Runtime is WebAssemblyJSRuntime wasmRuntime) - wasmRuntime.InvokeUnmarshalled("BlazorDownloadFileFast", fileName, mime, bytes); - else if (this.Runtime is IJSInProcessRuntime inProc) + if (Runtime is WebAssemblyJSRuntime wasmRuntime) + { + if (!moduleDownloaded) + { + module = await JSHost.ImportAsync("BlazorFastDownload", "../BlazorFastDownloadFile.js"); + moduleDownloaded = true; + } + BlazorFastDownload.DownloadFile(fileName, mime, bytes); + } + else if (Runtime is IJSInProcessRuntime inProc) inProc.InvokeVoid("BlazorDownloadFile", fileName, mime, bytes); + + + } + public void Dispose() + { + if (moduleDownloaded && module != null) + { + module.Dispose(); + } } diff --git a/samples/excel/excel-library/working-with-charts/BlazorClientApp.csproj b/samples/excel/excel-library/working-with-charts/BlazorClientApp.csproj index 162ea7ce0f..22522feb89 100644 --- a/samples/excel/excel-library/working-with-charts/BlazorClientApp.csproj +++ b/samples/excel/excel-library/working-with-charts/BlazorClientApp.csproj @@ -1,10 +1,12 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples + + true @@ -12,13 +14,15 @@ - - - - + + + + - - + + + + diff --git a/samples/excel/excel-library/working-with-charts/BlazorFastDownload.cs b/samples/excel/excel-library/working-with-charts/BlazorFastDownload.cs new file mode 100644 index 0000000000..7982c963b7 --- /dev/null +++ b/samples/excel/excel-library/working-with-charts/BlazorFastDownload.cs @@ -0,0 +1,11 @@ +using System.Runtime.InteropServices.JavaScript; + +namespace Infragistics.Samples +{ + public partial class BlazorFastDownload + { + [JSImport("BlazorDownloadFileFast", "BlazorFastDownload")] + internal static partial void DownloadFile(string name, string contentType, byte[] content); + + } +} diff --git a/samples/excel/excel-library/working-with-charts/wwwroot/BlazorDownloadFile.js b/samples/excel/excel-library/working-with-charts/wwwroot/BlazorDownloadFile.js index 58ccc3e791..e3d98cf921 100644 --- a/samples/excel/excel-library/working-with-charts/wwwroot/BlazorDownloadFile.js +++ b/samples/excel/excel-library/working-with-charts/wwwroot/BlazorDownloadFile.js @@ -1,23 +1,6 @@ // these methods are from: // https://www.meziantou.net/generating-and-downloading-a-file-in-a-blazor-webassembly-application.htm -function BlazorDownloadFileFast(name, contentType, content) { - // Convert the parameters to actual JS types - var nameStr = BINDING.conv_string(name); - var contentTypeStr = BINDING.conv_string(contentType); - var contentArray = Blazor.platform.toUint8Array(content); - // Create the URL - var file = new File([contentArray], nameStr, { type: contentTypeStr }); - var exportUrl = URL.createObjectURL(file); - // Create the element and click on it - var a = document.createElement("a"); - document.body.appendChild(a); - a.href = exportUrl; - a.download = nameStr; - a.target = "_self"; - a.click(); - // We don't need to keep the url, let's release the memory - URL.revokeObjectURL(exportUrl); -} + function BlazorDownloadFile(filename, contentType, content) { // Blazor marshall byte[] to a base64 string, so we first need to convert the string (content) to a Uint8Array to create the File var data = base64DecToArr(content); diff --git a/samples/excel/excel-library/working-with-charts/wwwroot/BlazorFastDownloadFile.js b/samples/excel/excel-library/working-with-charts/wwwroot/BlazorFastDownloadFile.js new file mode 100644 index 0000000000..227b509a42 --- /dev/null +++ b/samples/excel/excel-library/working-with-charts/wwwroot/BlazorFastDownloadFile.js @@ -0,0 +1,20 @@ +// these methods are from: +// https://www.meziantou.net/generating-and-downloading-a-file-in-a-blazor-webassembly-application.htm +export function BlazorDownloadFileFast(name, contentType, content) { + // Convert the parameters to actual JS types + var nameStr = name; + var contentTypeStr = contentType; + var contentArray = new Uint8Array(content); + // Create the URL + var file = new File([contentArray], nameStr, { type: contentTypeStr }); + var exportUrl = URL.createObjectURL(file); + // Create the element and click on it + var a = document.createElement("a"); + document.body.appendChild(a); + a.href = exportUrl; + a.download = nameStr; + a.target = "_self"; + a.click(); + // We don't need to keep the url, let's release the memory + URL.revokeObjectURL(exportUrl); +} diff --git a/samples/excel/excel-library/working-with-charts/wwwroot/index.html b/samples/excel/excel-library/working-with-charts/wwwroot/index.html index bedbd18eff..e02a663d5c 100644 --- a/samples/excel/excel-library/working-with-charts/wwwroot/index.html +++ b/samples/excel/excel-library/working-with-charts/wwwroot/index.html @@ -27,7 +27,7 @@ - + diff --git a/samples/excel/excel-library/working-with-sparklines/App.razor b/samples/excel/excel-library/working-with-sparklines/App.razor index 9528780913..f97a817f73 100644 --- a/samples/excel/excel-library/working-with-sparklines/App.razor +++ b/samples/excel/excel-library/working-with-sparklines/App.razor @@ -12,7 +12,9 @@ @using Microsoft.JSInterop.WebAssembly @using Infragistics.Documents.Excel @using IgniteUI.Blazor.Controls +@using System.Runtime.InteropServices.JavaScript +@implements IDisposable
@@ -287,12 +289,30 @@ } - public void SaveFile(byte[] bytes, string fileName, string mime) + JSObject module; + bool moduleDownloaded = false; + public async void SaveFile(byte[] bytes, string fileName, string mime) { if (Runtime is WebAssemblyJSRuntime wasmRuntime) - wasmRuntime.InvokeUnmarshalled("BlazorDownloadFileFast", fileName, mime, bytes); + { + if (!moduleDownloaded) + { + module = await JSHost.ImportAsync("BlazorFastDownload", "../BlazorFastDownloadFile.js"); + moduleDownloaded = true; + } + BlazorFastDownload.DownloadFile(fileName, mime, bytes); + } else if (Runtime is IJSInProcessRuntime inProc) inProc.InvokeVoid("BlazorDownloadFile", fileName, mime, bytes); + + + } + public void Dispose() + { + if (moduleDownloaded && module != null) + { + module.Dispose(); + } } public double GetRandom(double min, double max) diff --git a/samples/excel/excel-library/working-with-sparklines/BlazorClientApp.csproj b/samples/excel/excel-library/working-with-sparklines/BlazorClientApp.csproj index 162ea7ce0f..22522feb89 100644 --- a/samples/excel/excel-library/working-with-sparklines/BlazorClientApp.csproj +++ b/samples/excel/excel-library/working-with-sparklines/BlazorClientApp.csproj @@ -1,10 +1,12 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples + + true @@ -12,13 +14,15 @@ - - - - + + + + - - + + + + diff --git a/samples/excel/excel-library/working-with-sparklines/BlazorFastDownload.cs b/samples/excel/excel-library/working-with-sparklines/BlazorFastDownload.cs new file mode 100644 index 0000000000..7982c963b7 --- /dev/null +++ b/samples/excel/excel-library/working-with-sparklines/BlazorFastDownload.cs @@ -0,0 +1,11 @@ +using System.Runtime.InteropServices.JavaScript; + +namespace Infragistics.Samples +{ + public partial class BlazorFastDownload + { + [JSImport("BlazorDownloadFileFast", "BlazorFastDownload")] + internal static partial void DownloadFile(string name, string contentType, byte[] content); + + } +} diff --git a/samples/excel/excel-library/working-with-sparklines/wwwroot/BlazorDownloadFile.js b/samples/excel/excel-library/working-with-sparklines/wwwroot/BlazorDownloadFile.js index 58ccc3e791..e3d98cf921 100644 --- a/samples/excel/excel-library/working-with-sparklines/wwwroot/BlazorDownloadFile.js +++ b/samples/excel/excel-library/working-with-sparklines/wwwroot/BlazorDownloadFile.js @@ -1,23 +1,6 @@ // these methods are from: // https://www.meziantou.net/generating-and-downloading-a-file-in-a-blazor-webassembly-application.htm -function BlazorDownloadFileFast(name, contentType, content) { - // Convert the parameters to actual JS types - var nameStr = BINDING.conv_string(name); - var contentTypeStr = BINDING.conv_string(contentType); - var contentArray = Blazor.platform.toUint8Array(content); - // Create the URL - var file = new File([contentArray], nameStr, { type: contentTypeStr }); - var exportUrl = URL.createObjectURL(file); - // Create the element and click on it - var a = document.createElement("a"); - document.body.appendChild(a); - a.href = exportUrl; - a.download = nameStr; - a.target = "_self"; - a.click(); - // We don't need to keep the url, let's release the memory - URL.revokeObjectURL(exportUrl); -} + function BlazorDownloadFile(filename, contentType, content) { // Blazor marshall byte[] to a base64 string, so we first need to convert the string (content) to a Uint8Array to create the File var data = base64DecToArr(content); diff --git a/samples/excel/excel-library/working-with-sparklines/wwwroot/BlazorFastDownloadFile.js b/samples/excel/excel-library/working-with-sparklines/wwwroot/BlazorFastDownloadFile.js new file mode 100644 index 0000000000..227b509a42 --- /dev/null +++ b/samples/excel/excel-library/working-with-sparklines/wwwroot/BlazorFastDownloadFile.js @@ -0,0 +1,20 @@ +// these methods are from: +// https://www.meziantou.net/generating-and-downloading-a-file-in-a-blazor-webassembly-application.htm +export function BlazorDownloadFileFast(name, contentType, content) { + // Convert the parameters to actual JS types + var nameStr = name; + var contentTypeStr = contentType; + var contentArray = new Uint8Array(content); + // Create the URL + var file = new File([contentArray], nameStr, { type: contentTypeStr }); + var exportUrl = URL.createObjectURL(file); + // Create the element and click on it + var a = document.createElement("a"); + document.body.appendChild(a); + a.href = exportUrl; + a.download = nameStr; + a.target = "_self"; + a.click(); + // We don't need to keep the url, let's release the memory + URL.revokeObjectURL(exportUrl); +} diff --git a/samples/gauges/bullet-graph/animation/BlazorClientApp.csproj b/samples/gauges/bullet-graph/animation/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/bullet-graph/animation/BlazorClientApp.csproj +++ b/samples/gauges/bullet-graph/animation/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/gauges/bullet-graph/background/BlazorClientApp.csproj b/samples/gauges/bullet-graph/background/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/bullet-graph/background/BlazorClientApp.csproj +++ b/samples/gauges/bullet-graph/background/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/gauges/bullet-graph/highlight-needle/BlazorClientApp.csproj b/samples/gauges/bullet-graph/highlight-needle/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/bullet-graph/highlight-needle/BlazorClientApp.csproj +++ b/samples/gauges/bullet-graph/highlight-needle/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/gauges/bullet-graph/labels/BlazorClientApp.csproj b/samples/gauges/bullet-graph/labels/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/bullet-graph/labels/BlazorClientApp.csproj +++ b/samples/gauges/bullet-graph/labels/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/gauges/bullet-graph/measures/BlazorClientApp.csproj b/samples/gauges/bullet-graph/measures/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/bullet-graph/measures/BlazorClientApp.csproj +++ b/samples/gauges/bullet-graph/measures/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/gauges/bullet-graph/ranges/BlazorClientApp.csproj b/samples/gauges/bullet-graph/ranges/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/bullet-graph/ranges/BlazorClientApp.csproj +++ b/samples/gauges/bullet-graph/ranges/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/gauges/bullet-graph/scale/BlazorClientApp.csproj b/samples/gauges/bullet-graph/scale/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/bullet-graph/scale/BlazorClientApp.csproj +++ b/samples/gauges/bullet-graph/scale/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/gauges/bullet-graph/tickmarks/BlazorClientApp.csproj b/samples/gauges/bullet-graph/tickmarks/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/bullet-graph/tickmarks/BlazorClientApp.csproj +++ b/samples/gauges/bullet-graph/tickmarks/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/gauges/bullet-graph/type-filled/BlazorClientApp.csproj b/samples/gauges/bullet-graph/type-filled/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/bullet-graph/type-filled/BlazorClientApp.csproj +++ b/samples/gauges/bullet-graph/type-filled/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/gauges/bullet-graph/type-horizontal/BlazorClientApp.csproj b/samples/gauges/bullet-graph/type-horizontal/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/bullet-graph/type-horizontal/BlazorClientApp.csproj +++ b/samples/gauges/bullet-graph/type-horizontal/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/gauges/bullet-graph/type-reversed/BlazorClientApp.csproj b/samples/gauges/bullet-graph/type-reversed/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/bullet-graph/type-reversed/BlazorClientApp.csproj +++ b/samples/gauges/bullet-graph/type-reversed/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/gauges/bullet-graph/type-segmented/BlazorClientApp.csproj b/samples/gauges/bullet-graph/type-segmented/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/bullet-graph/type-segmented/BlazorClientApp.csproj +++ b/samples/gauges/bullet-graph/type-segmented/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/gauges/bullet-graph/type-vertical/BlazorClientApp.csproj b/samples/gauges/bullet-graph/type-vertical/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/bullet-graph/type-vertical/BlazorClientApp.csproj +++ b/samples/gauges/bullet-graph/type-vertical/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/gauges/linear-gauge/animation/BlazorClientApp.csproj b/samples/gauges/linear-gauge/animation/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/linear-gauge/animation/BlazorClientApp.csproj +++ b/samples/gauges/linear-gauge/animation/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/gauges/linear-gauge/backing/BlazorClientApp.csproj b/samples/gauges/linear-gauge/backing/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/linear-gauge/backing/BlazorClientApp.csproj +++ b/samples/gauges/linear-gauge/backing/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/gauges/linear-gauge/highlight-needle/BlazorClientApp.csproj b/samples/gauges/linear-gauge/highlight-needle/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/linear-gauge/highlight-needle/BlazorClientApp.csproj +++ b/samples/gauges/linear-gauge/highlight-needle/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/gauges/linear-gauge/labels/BlazorClientApp.csproj b/samples/gauges/linear-gauge/labels/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/linear-gauge/labels/BlazorClientApp.csproj +++ b/samples/gauges/linear-gauge/labels/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/gauges/linear-gauge/needle/BlazorClientApp.csproj b/samples/gauges/linear-gauge/needle/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/linear-gauge/needle/BlazorClientApp.csproj +++ b/samples/gauges/linear-gauge/needle/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/gauges/linear-gauge/ranges/BlazorClientApp.csproj b/samples/gauges/linear-gauge/ranges/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/linear-gauge/ranges/BlazorClientApp.csproj +++ b/samples/gauges/linear-gauge/ranges/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/gauges/linear-gauge/scale/BlazorClientApp.csproj b/samples/gauges/linear-gauge/scale/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/linear-gauge/scale/BlazorClientApp.csproj +++ b/samples/gauges/linear-gauge/scale/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/gauges/linear-gauge/tickmarks/BlazorClientApp.csproj b/samples/gauges/linear-gauge/tickmarks/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/linear-gauge/tickmarks/BlazorClientApp.csproj +++ b/samples/gauges/linear-gauge/tickmarks/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/gauges/linear-gauge/type-curved/BlazorClientApp.csproj b/samples/gauges/linear-gauge/type-curved/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/linear-gauge/type-curved/BlazorClientApp.csproj +++ b/samples/gauges/linear-gauge/type-curved/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/gauges/linear-gauge/type-filled/BlazorClientApp.csproj b/samples/gauges/linear-gauge/type-filled/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/linear-gauge/type-filled/BlazorClientApp.csproj +++ b/samples/gauges/linear-gauge/type-filled/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/gauges/linear-gauge/type-horizontal/BlazorClientApp.csproj b/samples/gauges/linear-gauge/type-horizontal/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/linear-gauge/type-horizontal/BlazorClientApp.csproj +++ b/samples/gauges/linear-gauge/type-horizontal/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/gauges/linear-gauge/type-multi-range/BlazorClientApp.csproj b/samples/gauges/linear-gauge/type-multi-range/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/linear-gauge/type-multi-range/BlazorClientApp.csproj +++ b/samples/gauges/linear-gauge/type-multi-range/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/gauges/linear-gauge/type-multi-scale/BlazorClientApp.csproj b/samples/gauges/linear-gauge/type-multi-scale/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/linear-gauge/type-multi-scale/BlazorClientApp.csproj +++ b/samples/gauges/linear-gauge/type-multi-scale/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/gauges/linear-gauge/type-segmented/BlazorClientApp.csproj b/samples/gauges/linear-gauge/type-segmented/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/linear-gauge/type-segmented/BlazorClientApp.csproj +++ b/samples/gauges/linear-gauge/type-segmented/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/gauges/linear-gauge/type-vertical/BlazorClientApp.csproj b/samples/gauges/linear-gauge/type-vertical/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/linear-gauge/type-vertical/BlazorClientApp.csproj +++ b/samples/gauges/linear-gauge/type-vertical/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/gauges/radial-gauge/animation/BlazorClientApp.csproj b/samples/gauges/radial-gauge/animation/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/radial-gauge/animation/BlazorClientApp.csproj +++ b/samples/gauges/radial-gauge/animation/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/gauges/radial-gauge/backing/BlazorClientApp.csproj b/samples/gauges/radial-gauge/backing/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/radial-gauge/backing/BlazorClientApp.csproj +++ b/samples/gauges/radial-gauge/backing/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/gauges/radial-gauge/highlight-needle/BlazorClientApp.csproj b/samples/gauges/radial-gauge/highlight-needle/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/radial-gauge/highlight-needle/BlazorClientApp.csproj +++ b/samples/gauges/radial-gauge/highlight-needle/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/gauges/radial-gauge/labels/BlazorClientApp.csproj b/samples/gauges/radial-gauge/labels/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/radial-gauge/labels/BlazorClientApp.csproj +++ b/samples/gauges/radial-gauge/labels/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/gauges/radial-gauge/needle/BlazorClientApp.csproj b/samples/gauges/radial-gauge/needle/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/radial-gauge/needle/BlazorClientApp.csproj +++ b/samples/gauges/radial-gauge/needle/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/gauges/radial-gauge/optical-scaling/BlazorClientApp.csproj b/samples/gauges/radial-gauge/optical-scaling/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/radial-gauge/optical-scaling/BlazorClientApp.csproj +++ b/samples/gauges/radial-gauge/optical-scaling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/gauges/radial-gauge/ranges/BlazorClientApp.csproj b/samples/gauges/radial-gauge/ranges/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/radial-gauge/ranges/BlazorClientApp.csproj +++ b/samples/gauges/radial-gauge/ranges/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/gauges/radial-gauge/scale/BlazorClientApp.csproj b/samples/gauges/radial-gauge/scale/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/radial-gauge/scale/BlazorClientApp.csproj +++ b/samples/gauges/radial-gauge/scale/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/gauges/radial-gauge/tickmarks/BlazorClientApp.csproj b/samples/gauges/radial-gauge/tickmarks/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/radial-gauge/tickmarks/BlazorClientApp.csproj +++ b/samples/gauges/radial-gauge/tickmarks/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/gauges/radial-gauge/type-column/BlazorClientApp.csproj b/samples/gauges/radial-gauge/type-column/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/radial-gauge/type-column/BlazorClientApp.csproj +++ b/samples/gauges/radial-gauge/type-column/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/gauges/radial-gauge/type-curved/BlazorClientApp.csproj b/samples/gauges/radial-gauge/type-curved/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/radial-gauge/type-curved/BlazorClientApp.csproj +++ b/samples/gauges/radial-gauge/type-curved/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/gauges/radial-gauge/type-direction/BlazorClientApp.csproj b/samples/gauges/radial-gauge/type-direction/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/radial-gauge/type-direction/BlazorClientApp.csproj +++ b/samples/gauges/radial-gauge/type-direction/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/gauges/radial-gauge/type-full/BlazorClientApp.csproj b/samples/gauges/radial-gauge/type-full/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/radial-gauge/type-full/BlazorClientApp.csproj +++ b/samples/gauges/radial-gauge/type-full/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/gauges/radial-gauge/type-half/BlazorClientApp.csproj b/samples/gauges/radial-gauge/type-half/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/radial-gauge/type-half/BlazorClientApp.csproj +++ b/samples/gauges/radial-gauge/type-half/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/gauges/radial-gauge/type-quatre/BlazorClientApp.csproj b/samples/gauges/radial-gauge/type-quatre/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/radial-gauge/type-quatre/BlazorClientApp.csproj +++ b/samples/gauges/radial-gauge/type-quatre/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/gauges/radial-gauge/type-ring/BlazorClientApp.csproj b/samples/gauges/radial-gauge/type-ring/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/radial-gauge/type-ring/BlazorClientApp.csproj +++ b/samples/gauges/radial-gauge/type-ring/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/gauges/radial-gauge/type-segmented/BlazorClientApp.csproj b/samples/gauges/radial-gauge/type-segmented/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/radial-gauge/type-segmented/BlazorClientApp.csproj +++ b/samples/gauges/radial-gauge/type-segmented/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/gauges/radial-gauge/type-semi/BlazorClientApp.csproj b/samples/gauges/radial-gauge/type-semi/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/gauges/radial-gauge/type-semi/BlazorClientApp.csproj +++ b/samples/gauges/radial-gauge/type-semi/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/data-grid/accessibility/BlazorClientApp.csproj b/samples/grids/data-grid/accessibility/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/data-grid/accessibility/BlazorClientApp.csproj +++ b/samples/grids/data-grid/accessibility/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/data-grid/binding-data-service/BlazorClientApp.csproj b/samples/grids/data-grid/binding-data-service/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/data-grid/binding-data-service/BlazorClientApp.csproj +++ b/samples/grids/data-grid/binding-data-service/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/data-grid/binding-live-data/BlazorClientApp.csproj b/samples/grids/data-grid/binding-live-data/BlazorClientApp.csproj index adf64fbc5a..0338feac90 100644 --- a/samples/grids/data-grid/binding-live-data/BlazorClientApp.csproj +++ b/samples/grids/data-grid/binding-live-data/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/data-grid/binding-local-data/BlazorClientApp.csproj b/samples/grids/data-grid/binding-local-data/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/data-grid/binding-local-data/BlazorClientApp.csproj +++ b/samples/grids/data-grid/binding-local-data/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/data-grid/binding-remote-data/BlazorClientApp.csproj b/samples/grids/data-grid/binding-remote-data/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/data-grid/binding-remote-data/BlazorClientApp.csproj +++ b/samples/grids/data-grid/binding-remote-data/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/data-grid/cell-activation/BlazorClientApp.csproj b/samples/grids/data-grid/cell-activation/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/data-grid/cell-activation/BlazorClientApp.csproj +++ b/samples/grids/data-grid/cell-activation/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/data-grid/cell-editing/BlazorClientApp.csproj b/samples/grids/data-grid/cell-editing/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/data-grid/cell-editing/BlazorClientApp.csproj +++ b/samples/grids/data-grid/cell-editing/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/data-grid/cell-merging/BlazorClientApp.csproj b/samples/grids/data-grid/cell-merging/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/data-grid/cell-merging/BlazorClientApp.csproj +++ b/samples/grids/data-grid/cell-merging/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/data-grid/cell-selection/BlazorClientApp.csproj b/samples/grids/data-grid/cell-selection/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/data-grid/cell-selection/BlazorClientApp.csproj +++ b/samples/grids/data-grid/cell-selection/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/data-grid/column-animation/BlazorClientApp.csproj b/samples/grids/data-grid/column-animation/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/data-grid/column-animation/BlazorClientApp.csproj +++ b/samples/grids/data-grid/column-animation/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/data-grid/column-auto-generation/BlazorClientApp.csproj b/samples/grids/data-grid/column-auto-generation/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/data-grid/column-auto-generation/BlazorClientApp.csproj +++ b/samples/grids/data-grid/column-auto-generation/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/data-grid/column-chooser-picker/BlazorClientApp.csproj b/samples/grids/data-grid/column-chooser-picker/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/data-grid/column-chooser-picker/BlazorClientApp.csproj +++ b/samples/grids/data-grid/column-chooser-picker/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/data-grid/column-chooser-toolbar/BlazorClientApp.csproj b/samples/grids/data-grid/column-chooser-toolbar/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/data-grid/column-chooser-toolbar/BlazorClientApp.csproj +++ b/samples/grids/data-grid/column-chooser-toolbar/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/data-grid/column-filter-expressions/BlazorClientApp.csproj b/samples/grids/data-grid/column-filter-expressions/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/data-grid/column-filter-expressions/BlazorClientApp.csproj +++ b/samples/grids/data-grid/column-filter-expressions/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/data-grid/column-filter-operands/BlazorClientApp.csproj b/samples/grids/data-grid/column-filter-operands/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/data-grid/column-filter-operands/BlazorClientApp.csproj +++ b/samples/grids/data-grid/column-filter-operands/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/data-grid/column-filtering/BlazorClientApp.csproj b/samples/grids/data-grid/column-filtering/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/data-grid/column-filtering/BlazorClientApp.csproj +++ b/samples/grids/data-grid/column-filtering/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/data-grid/column-moving/BlazorClientApp.csproj b/samples/grids/data-grid/column-moving/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/data-grid/column-moving/BlazorClientApp.csproj +++ b/samples/grids/data-grid/column-moving/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/data-grid/column-options/BlazorClientApp.csproj b/samples/grids/data-grid/column-options/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/data-grid/column-options/BlazorClientApp.csproj +++ b/samples/grids/data-grid/column-options/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/data-grid/column-pinning-picker/BlazorClientApp.csproj b/samples/grids/data-grid/column-pinning-picker/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/data-grid/column-pinning-picker/BlazorClientApp.csproj +++ b/samples/grids/data-grid/column-pinning-picker/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/data-grid/column-pinning-toolbar/BlazorClientApp.csproj b/samples/grids/data-grid/column-pinning-toolbar/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/data-grid/column-pinning-toolbar/BlazorClientApp.csproj +++ b/samples/grids/data-grid/column-pinning-toolbar/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/data-grid/column-resizing/BlazorClientApp.csproj b/samples/grids/data-grid/column-resizing/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/data-grid/column-resizing/BlazorClientApp.csproj +++ b/samples/grids/data-grid/column-resizing/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/data-grid/column-scrolling/BlazorClientApp.csproj b/samples/grids/data-grid/column-scrolling/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/data-grid/column-scrolling/BlazorClientApp.csproj +++ b/samples/grids/data-grid/column-scrolling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/data-grid/column-sorting/BlazorClientApp.csproj b/samples/grids/data-grid/column-sorting/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/data-grid/column-sorting/BlazorClientApp.csproj +++ b/samples/grids/data-grid/column-sorting/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/data-grid/column-summaries/BlazorClientApp.csproj b/samples/grids/data-grid/column-summaries/BlazorClientApp.csproj index 1fbc0b1c3d..22385badc0 100644 --- a/samples/grids/data-grid/column-summaries/BlazorClientApp.csproj +++ b/samples/grids/data-grid/column-summaries/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -16,10 +16,10 @@ - - - - + + + + diff --git a/samples/grids/data-grid/column-types/BlazorClientApp.csproj b/samples/grids/data-grid/column-types/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/data-grid/column-types/BlazorClientApp.csproj +++ b/samples/grids/data-grid/column-types/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/data-grid/load-save-layout/BlazorClientApp.csproj b/samples/grids/data-grid/load-save-layout/BlazorClientApp.csproj index 5e47263b81..2bddbd842e 100644 --- a/samples/grids/data-grid/load-save-layout/BlazorClientApp.csproj +++ b/samples/grids/data-grid/load-save-layout/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,11 +12,11 @@ - - - - - + + + + + diff --git a/samples/grids/data-grid/localization/BlazorClientApp.csproj b/samples/grids/data-grid/localization/BlazorClientApp.csproj index 5e47263b81..2bddbd842e 100644 --- a/samples/grids/data-grid/localization/BlazorClientApp.csproj +++ b/samples/grids/data-grid/localization/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,11 +12,11 @@ - - - - - + + + + + diff --git a/samples/grids/data-grid/overview/BlazorClientApp.csproj b/samples/grids/data-grid/overview/BlazorClientApp.csproj index 5e47263b81..2bddbd842e 100644 --- a/samples/grids/data-grid/overview/BlazorClientApp.csproj +++ b/samples/grids/data-grid/overview/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,11 +12,11 @@ - - - - - + + + + + diff --git a/samples/grids/data-grid/pager/BlazorClientApp.csproj b/samples/grids/data-grid/pager/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/data-grid/pager/BlazorClientApp.csproj +++ b/samples/grids/data-grid/pager/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/data-grid/performance/BlazorClientApp.csproj b/samples/grids/data-grid/performance/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/data-grid/performance/BlazorClientApp.csproj +++ b/samples/grids/data-grid/performance/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/data-grid/row-group-descriptions/BlazorClientApp.csproj b/samples/grids/data-grid/row-group-descriptions/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/data-grid/row-group-descriptions/BlazorClientApp.csproj +++ b/samples/grids/data-grid/row-group-descriptions/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/data-grid/row-grouping/BlazorClientApp.csproj b/samples/grids/data-grid/row-grouping/BlazorClientApp.csproj index 2837681288..fde70e7045 100644 --- a/samples/grids/data-grid/row-grouping/BlazorClientApp.csproj +++ b/samples/grids/data-grid/row-grouping/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/data-grid/row-highlighting/BlazorClientApp.csproj b/samples/grids/data-grid/row-highlighting/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/data-grid/row-highlighting/BlazorClientApp.csproj +++ b/samples/grids/data-grid/row-highlighting/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/data-grid/row-paging/BlazorClientApp.csproj b/samples/grids/data-grid/row-paging/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/data-grid/row-paging/BlazorClientApp.csproj +++ b/samples/grids/data-grid/row-paging/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/data-grid/row-pinning/BlazorClientApp.csproj b/samples/grids/data-grid/row-pinning/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/data-grid/row-pinning/BlazorClientApp.csproj +++ b/samples/grids/data-grid/row-pinning/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/data-grid/row-selection/BlazorClientApp.csproj b/samples/grids/data-grid/row-selection/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/data-grid/row-selection/BlazorClientApp.csproj +++ b/samples/grids/data-grid/row-selection/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/data-grid/type-comparison-table/BlazorClientApp.csproj b/samples/grids/data-grid/type-comparison-table/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/data-grid/type-comparison-table/BlazorClientApp.csproj +++ b/samples/grids/data-grid/type-comparison-table/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/data-grid/type-heatmap-table/BlazorClientApp.csproj b/samples/grids/data-grid/type-heatmap-table/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/data-grid/type-heatmap-table/BlazorClientApp.csproj +++ b/samples/grids/data-grid/type-heatmap-table/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/data-grid/type-marketing-table/BlazorClientApp.csproj b/samples/grids/data-grid/type-marketing-table/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/data-grid/type-marketing-table/BlazorClientApp.csproj +++ b/samples/grids/data-grid/type-marketing-table/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/data-grid/type-matrix-table/BlazorClientApp.csproj b/samples/grids/data-grid/type-matrix-table/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/data-grid/type-matrix-table/BlazorClientApp.csproj +++ b/samples/grids/data-grid/type-matrix-table/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/data-grid/type-periodic-table/BlazorClientApp.csproj b/samples/grids/data-grid/type-periodic-table/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/data-grid/type-periodic-table/BlazorClientApp.csproj +++ b/samples/grids/data-grid/type-periodic-table/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/action-strip/BlazorClientApp.csproj b/samples/grids/grid/action-strip/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/action-strip/BlazorClientApp.csproj +++ b/samples/grids/grid/action-strip/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/advanced-filtering-options/BlazorClientApp.csproj b/samples/grids/grid/advanced-filtering-options/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/advanced-filtering-options/BlazorClientApp.csproj +++ b/samples/grids/grid/advanced-filtering-options/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/advanced-filtering-style/BlazorClientApp.csproj b/samples/grids/grid/advanced-filtering-style/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/advanced-filtering-style/BlazorClientApp.csproj +++ b/samples/grids/grid/advanced-filtering-style/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/binding-composite-data/BlazorClientApp.csproj b/samples/grids/grid/binding-composite-data/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/binding-composite-data/BlazorClientApp.csproj +++ b/samples/grids/grid/binding-composite-data/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/binding-crud-data/BlazorClientApp.csproj b/samples/grids/grid/binding-crud-data/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/binding-crud-data/BlazorClientApp.csproj +++ b/samples/grids/grid/binding-crud-data/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/binding-nested-data-1/BlazorClientApp.csproj b/samples/grids/grid/binding-nested-data-1/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/binding-nested-data-1/BlazorClientApp.csproj +++ b/samples/grids/grid/binding-nested-data-1/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/binding-remote-data/BlazorClientApp.csproj b/samples/grids/grid/binding-remote-data/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/binding-remote-data/BlazorClientApp.csproj +++ b/samples/grids/grid/binding-remote-data/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/cascading-combo/BlazorClientApp.csproj b/samples/grids/grid/cascading-combo/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/cascading-combo/BlazorClientApp.csproj +++ b/samples/grids/grid/cascading-combo/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/cell-editing-sample/BlazorClientApp.csproj b/samples/grids/grid/cell-editing-sample/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/cell-editing-sample/BlazorClientApp.csproj +++ b/samples/grids/grid/cell-editing-sample/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/cell-editing-styling/BlazorClientApp.csproj b/samples/grids/grid/cell-editing-styling/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/cell-editing-styling/BlazorClientApp.csproj +++ b/samples/grids/grid/cell-editing-styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/cell-selection-mode/BlazorClientApp.csproj b/samples/grids/grid/cell-selection-mode/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/cell-selection-mode/BlazorClientApp.csproj +++ b/samples/grids/grid/cell-selection-mode/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/cell-selection-style/BlazorClientApp.csproj b/samples/grids/grid/cell-selection-style/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/cell-selection-style/BlazorClientApp.csproj +++ b/samples/grids/grid/cell-selection-style/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/change-icons-custom/BlazorClientApp.csproj b/samples/grids/grid/change-icons-custom/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/change-icons-custom/BlazorClientApp.csproj +++ b/samples/grids/grid/change-icons-custom/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/clipboard-operations/BlazorClientApp.csproj b/samples/grids/grid/clipboard-operations/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/clipboard-operations/BlazorClientApp.csproj +++ b/samples/grids/grid/clipboard-operations/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/column-auto-sizing/BlazorClientApp.csproj b/samples/grids/grid/column-auto-sizing/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/column-auto-sizing/BlazorClientApp.csproj +++ b/samples/grids/grid/column-auto-sizing/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/column-collapsible-groups/BlazorClientApp.csproj b/samples/grids/grid/column-collapsible-groups/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/column-collapsible-groups/BlazorClientApp.csproj +++ b/samples/grids/grid/column-collapsible-groups/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/column-data-types/BlazorClientApp.csproj b/samples/grids/grid/column-data-types/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/column-data-types/BlazorClientApp.csproj +++ b/samples/grids/grid/column-data-types/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/column-hiding-options/BlazorClientApp.csproj b/samples/grids/grid/column-hiding-options/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/column-hiding-options/BlazorClientApp.csproj +++ b/samples/grids/grid/column-hiding-options/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/column-hiding-toolbar-style/BlazorClientApp.csproj b/samples/grids/grid/column-hiding-toolbar-style/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/column-hiding-toolbar-style/BlazorClientApp.csproj +++ b/samples/grids/grid/column-hiding-toolbar-style/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/column-hiding-toolbar/BlazorClientApp.csproj b/samples/grids/grid/column-hiding-toolbar/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/column-hiding-toolbar/BlazorClientApp.csproj +++ b/samples/grids/grid/column-hiding-toolbar/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/column-moving-options/BlazorClientApp.csproj b/samples/grids/grid/column-moving-options/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/column-moving-options/BlazorClientApp.csproj +++ b/samples/grids/grid/column-moving-options/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/column-moving-styles/BlazorClientApp.csproj b/samples/grids/grid/column-moving-styles/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/column-moving-styles/BlazorClientApp.csproj +++ b/samples/grids/grid/column-moving-styles/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/column-pinning-options/BlazorClientApp.csproj b/samples/grids/grid/column-pinning-options/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/column-pinning-options/BlazorClientApp.csproj +++ b/samples/grids/grid/column-pinning-options/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/column-pinning-right-side/BlazorClientApp.csproj b/samples/grids/grid/column-pinning-right-side/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/column-pinning-right-side/BlazorClientApp.csproj +++ b/samples/grids/grid/column-pinning-right-side/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/column-pinning-styles/BlazorClientApp.csproj b/samples/grids/grid/column-pinning-styles/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/column-pinning-styles/BlazorClientApp.csproj +++ b/samples/grids/grid/column-pinning-styles/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/column-pinning/BlazorClientApp.csproj b/samples/grids/grid/column-pinning/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/column-pinning/BlazorClientApp.csproj +++ b/samples/grids/grid/column-pinning/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/column-resize-styling/BlazorClientApp.csproj b/samples/grids/grid/column-resize-styling/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/column-resize-styling/BlazorClientApp.csproj +++ b/samples/grids/grid/column-resize-styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/column-resizing/BlazorClientApp.csproj b/samples/grids/grid/column-resizing/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/column-resizing/BlazorClientApp.csproj +++ b/samples/grids/grid/column-resizing/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/column-selection-group/BlazorClientApp.csproj b/samples/grids/grid/column-selection-group/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/column-selection-group/BlazorClientApp.csproj +++ b/samples/grids/grid/column-selection-group/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/column-selection-mode/BlazorClientApp.csproj b/samples/grids/grid/column-selection-mode/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/column-selection-mode/BlazorClientApp.csproj +++ b/samples/grids/grid/column-selection-mode/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/column-selection-styles/BlazorClientApp.csproj b/samples/grids/grid/column-selection-styles/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/column-selection-styles/BlazorClientApp.csproj +++ b/samples/grids/grid/column-selection-styles/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/column-sorting-indicators/BlazorClientApp.csproj b/samples/grids/grid/column-sorting-indicators/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/column-sorting-indicators/BlazorClientApp.csproj +++ b/samples/grids/grid/column-sorting-indicators/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/column-sorting-options/BlazorClientApp.csproj b/samples/grids/grid/column-sorting-options/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/column-sorting-options/BlazorClientApp.csproj +++ b/samples/grids/grid/column-sorting-options/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/column-sorting-style/BlazorClientApp.csproj b/samples/grids/grid/column-sorting-style/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/column-sorting-style/BlazorClientApp.csproj +++ b/samples/grids/grid/column-sorting-style/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/conditional-cell-style-1/BlazorClientApp.csproj b/samples/grids/grid/conditional-cell-style-1/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/conditional-cell-style-1/BlazorClientApp.csproj +++ b/samples/grids/grid/conditional-cell-style-1/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/conditional-cell-style-2/BlazorClientApp.csproj b/samples/grids/grid/conditional-cell-style-2/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/conditional-cell-style-2/BlazorClientApp.csproj +++ b/samples/grids/grid/conditional-cell-style-2/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/conditional-row-selectors/BlazorClientApp.csproj b/samples/grids/grid/conditional-row-selectors/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/conditional-row-selectors/BlazorClientApp.csproj +++ b/samples/grids/grid/conditional-row-selectors/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/custom-context-menu/BlazorClientApp.csproj b/samples/grids/grid/custom-context-menu/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/custom-context-menu/BlazorClientApp.csproj +++ b/samples/grids/grid/custom-context-menu/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/data-batch-editing-actions/BlazorClientApp.csproj b/samples/grids/grid/data-batch-editing-actions/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/data-batch-editing-actions/BlazorClientApp.csproj +++ b/samples/grids/grid/data-batch-editing-actions/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/data-paste-options/BlazorClientApp.csproj b/samples/grids/grid/data-paste-options/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/data-paste-options/BlazorClientApp.csproj +++ b/samples/grids/grid/data-paste-options/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/data-performance-virtualization/BlazorClientApp.csproj b/samples/grids/grid/data-performance-virtualization/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/data-performance-virtualization/BlazorClientApp.csproj +++ b/samples/grids/grid/data-performance-virtualization/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/data-searching/BlazorClientApp.csproj b/samples/grids/grid/data-searching/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/data-searching/BlazorClientApp.csproj +++ b/samples/grids/grid/data-searching/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/data-summary-formatter/BlazorClientApp.csproj b/samples/grids/grid/data-summary-formatter/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/data-summary-formatter/BlazorClientApp.csproj +++ b/samples/grids/grid/data-summary-formatter/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/data-summary-options/BlazorClientApp.csproj b/samples/grids/grid/data-summary-options/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/data-summary-options/BlazorClientApp.csproj +++ b/samples/grids/grid/data-summary-options/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/data-summary-template/BlazorClientApp.csproj b/samples/grids/grid/data-summary-template/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/data-summary-template/BlazorClientApp.csproj +++ b/samples/grids/grid/data-summary-template/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/data-validation-style/BlazorClientApp.csproj b/samples/grids/grid/data-validation-style/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/data-validation-style/BlazorClientApp.csproj +++ b/samples/grids/grid/data-validation-style/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/data-validator-service-cross-field/BlazorClientApp.csproj +++ b/samples/grids/grid/data-validator-service-cross-field/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/data-validator-service-extended/BlazorClientApp.csproj b/samples/grids/grid/data-validator-service-extended/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/data-validator-service-extended/BlazorClientApp.csproj +++ b/samples/grids/grid/data-validator-service-extended/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/data-validator-service/BlazorClientApp.csproj b/samples/grids/grid/data-validator-service/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/data-validator-service/BlazorClientApp.csproj +++ b/samples/grids/grid/data-validator-service/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/editing-columns/BlazorClientApp.csproj b/samples/grids/grid/editing-columns/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/editing-columns/BlazorClientApp.csproj +++ b/samples/grids/grid/editing-columns/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/editing-events/BlazorClientApp.csproj b/samples/grids/grid/editing-events/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/editing-events/BlazorClientApp.csproj +++ b/samples/grids/grid/editing-events/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/editing-excel-style-custom/BlazorClientApp.csproj b/samples/grids/grid/editing-excel-style-custom/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/editing-excel-style-custom/BlazorClientApp.csproj +++ b/samples/grids/grid/editing-excel-style-custom/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/editing-excel-style/BlazorClientApp.csproj b/samples/grids/grid/editing-excel-style/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/editing-excel-style/BlazorClientApp.csproj +++ b/samples/grids/grid/editing-excel-style/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/editing-lifecycle/BlazorClientApp.csproj b/samples/grids/grid/editing-lifecycle/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/editing-lifecycle/BlazorClientApp.csproj +++ b/samples/grids/grid/editing-lifecycle/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/excel-exporting/BlazorClientApp.csproj b/samples/grids/grid/excel-exporting/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/excel-exporting/BlazorClientApp.csproj +++ b/samples/grids/grid/excel-exporting/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/excel-style-filtering-sample-1/BlazorClientApp.csproj +++ b/samples/grids/grid/excel-style-filtering-sample-1/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/excel-style-filtering-sample-2/BlazorClientApp.csproj +++ b/samples/grids/grid/excel-style-filtering-sample-2/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/excel-style-filtering-sample-3/BlazorClientApp.csproj +++ b/samples/grids/grid/excel-style-filtering-sample-3/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/excel-style-filtering-style/BlazorClientApp.csproj b/samples/grids/grid/excel-style-filtering-style/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/excel-style-filtering-style/BlazorClientApp.csproj +++ b/samples/grids/grid/excel-style-filtering-style/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/external-advanced-filtering/BlazorClientApp.csproj b/samples/grids/grid/external-advanced-filtering/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/external-advanced-filtering/BlazorClientApp.csproj +++ b/samples/grids/grid/external-advanced-filtering/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/filtering-options/BlazorClientApp.csproj b/samples/grids/grid/filtering-options/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/filtering-options/BlazorClientApp.csproj +++ b/samples/grids/grid/filtering-options/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/filtering-strategy/BlazorClientApp.csproj b/samples/grids/grid/filtering-strategy/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/filtering-strategy/BlazorClientApp.csproj +++ b/samples/grids/grid/filtering-strategy/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/filtering-style/BlazorClientApp.csproj b/samples/grids/grid/filtering-style/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/filtering-style/BlazorClientApp.csproj +++ b/samples/grids/grid/filtering-style/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/filtering-template/BlazorClientApp.csproj b/samples/grids/grid/filtering-template/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/filtering-template/BlazorClientApp.csproj +++ b/samples/grids/grid/filtering-template/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/finjs/BlazorClientApp.csproj b/samples/grids/grid/finjs/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/finjs/BlazorClientApp.csproj +++ b/samples/grids/grid/finjs/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/groupby-custom/BlazorClientApp.csproj b/samples/grids/grid/groupby-custom/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/groupby-custom/BlazorClientApp.csproj +++ b/samples/grids/grid/groupby-custom/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/groupby-expressions/BlazorClientApp.csproj b/samples/grids/grid/groupby-expressions/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/groupby-expressions/BlazorClientApp.csproj +++ b/samples/grids/grid/groupby-expressions/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/groupby-paging/BlazorClientApp.csproj b/samples/grids/grid/groupby-paging/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/groupby-paging/BlazorClientApp.csproj +++ b/samples/grids/grid/groupby-paging/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/groupby-styling/BlazorClientApp.csproj b/samples/grids/grid/groupby-styling/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/groupby-styling/BlazorClientApp.csproj +++ b/samples/grids/grid/groupby-styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/groupby-summary-options/BlazorClientApp.csproj b/samples/grids/grid/groupby-summary-options/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/groupby-summary-options/BlazorClientApp.csproj +++ b/samples/grids/grid/groupby-summary-options/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/groupby-summary-styling/BlazorClientApp.csproj b/samples/grids/grid/groupby-summary-styling/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/groupby-summary-styling/BlazorClientApp.csproj +++ b/samples/grids/grid/groupby-summary-styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/infinite-scroll/BlazorClientApp.csproj b/samples/grids/grid/infinite-scroll/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/infinite-scroll/BlazorClientApp.csproj +++ b/samples/grids/grid/infinite-scroll/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/keyboard-custom-navigation/BlazorClientApp.csproj b/samples/grids/grid/keyboard-custom-navigation/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/keyboard-custom-navigation/BlazorClientApp.csproj +++ b/samples/grids/grid/keyboard-custom-navigation/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/keyboard-mrl-navigation/BlazorClientApp.csproj b/samples/grids/grid/keyboard-mrl-navigation/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/keyboard-mrl-navigation/BlazorClientApp.csproj +++ b/samples/grids/grid/keyboard-mrl-navigation/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/layout-display-density/BlazorClientApp.csproj b/samples/grids/grid/layout-display-density/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/layout-display-density/BlazorClientApp.csproj +++ b/samples/grids/grid/layout-display-density/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/master-detail/BlazorClientApp.csproj b/samples/grids/grid/master-detail/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/master-detail/BlazorClientApp.csproj +++ b/samples/grids/grid/master-detail/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/multi-cell-selection-mode/BlazorClientApp.csproj b/samples/grids/grid/multi-cell-selection-mode/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/multi-cell-selection-mode/BlazorClientApp.csproj +++ b/samples/grids/grid/multi-cell-selection-mode/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/multi-column-headers-export/BlazorClientApp.csproj b/samples/grids/grid/multi-column-headers-export/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/multi-column-headers-export/BlazorClientApp.csproj +++ b/samples/grids/grid/multi-column-headers-export/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/multi-column-headers-overview/BlazorClientApp.csproj b/samples/grids/grid/multi-column-headers-overview/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/multi-column-headers-overview/BlazorClientApp.csproj +++ b/samples/grids/grid/multi-column-headers-overview/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/multi-column-headers-styling/BlazorClientApp.csproj b/samples/grids/grid/multi-column-headers-styling/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/multi-column-headers-styling/BlazorClientApp.csproj +++ b/samples/grids/grid/multi-column-headers-styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/multi-column-headers-template/BlazorClientApp.csproj b/samples/grids/grid/multi-column-headers-template/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/multi-column-headers-template/BlazorClientApp.csproj +++ b/samples/grids/grid/multi-column-headers-template/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/multi-row-dragging/BlazorClientApp.csproj b/samples/grids/grid/multi-row-dragging/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/multi-row-dragging/BlazorClientApp.csproj +++ b/samples/grids/grid/multi-row-dragging/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/multi-row-layout-options/BlazorClientApp.csproj b/samples/grids/grid/multi-row-layout-options/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/multi-row-layout-options/BlazorClientApp.csproj +++ b/samples/grids/grid/multi-row-layout-options/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/multi-row-layout-style/BlazorClientApp.csproj b/samples/grids/grid/multi-row-layout-style/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/multi-row-layout-style/BlazorClientApp.csproj +++ b/samples/grids/grid/multi-row-layout-style/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/overview-dark/BlazorClientApp.csproj b/samples/grids/grid/overview-dark/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/overview-dark/BlazorClientApp.csproj +++ b/samples/grids/grid/overview-dark/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/overview/BlazorClientApp.csproj b/samples/grids/grid/overview/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/overview/BlazorClientApp.csproj +++ b/samples/grids/grid/overview/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/paste/BlazorClientApp.csproj b/samples/grids/grid/paste/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/paste/BlazorClientApp.csproj +++ b/samples/grids/grid/paste/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/remote-paging-data/App.razor b/samples/grids/grid/remote-paging-data/App.razor new file mode 100644 index 0000000000..8c2cdb9a96 --- /dev/null +++ b/samples/grids/grid/remote-paging-data/App.razor @@ -0,0 +1,100 @@ +@using IgniteUI.Blazor.Controls + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
+
+ +@code { + + protected override async Task OnAfterRenderAsync(bool firstRender) + { + var grid = this.grid; + var iD = this.iD; + 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 iD; + private IgbColumn productName; + private IgbColumn quantityPerUnit; + private IgbColumn unitPrice; + private IgbColumn orderDate; + private IgbColumn discontinued; + + private NwindData _nwindData = null; + public NwindData NwindData + { + get + { + if (_nwindData == null) + { + _nwindData = new NwindData(); + } + return _nwindData; + } + } + +} \ No newline at end of file diff --git a/samples/grids/grid/remote-paging-data/BlazorClientApp.csproj b/samples/grids/grid/remote-paging-data/BlazorClientApp.csproj new file mode 100644 index 0000000000..5ad0404ecd --- /dev/null +++ b/samples/grids/grid/remote-paging-data/BlazorClientApp.csproj @@ -0,0 +1,21 @@ + + + + net9.0 + 3.0 + Infragistics.Samples + Infragistics.Samples + + + + 1701;1702,IDE0028,BL0005,0219,CS1998 + + + + + + + + + + diff --git a/samples/grids/grid/remote-paging-data/BlazorClientApp.sln b/samples/grids/grid/remote-paging-data/BlazorClientApp.sln new file mode 100644 index 0000000000..1e2eda208a --- /dev/null +++ b/samples/grids/grid/remote-paging-data/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/grids/grid/remote-paging-data/NwindData.cs b/samples/grids/grid/remote-paging-data/NwindData.cs new file mode 100644 index 0000000000..919d8bd1b5 --- /dev/null +++ b/samples/grids/grid/remote-paging-data/NwindData.cs @@ -0,0 +1,561 @@ +using System; +using System.Collections.Generic; +public class NwindDataItem +{ + public double ProductID { get; set; } + public string ProductName { get; set; } + public double SupplierID { get; set; } + public double CategoryID { get; set; } + public string QuantityPerUnit { get; set; } + public double UnitPrice { get; set; } + public double UnitsInStock { get; set; } + public double UnitsOnOrder { get; set; } + public double ReorderLevel { get; set; } + public bool Discontinued { get; set; } + public string OrderDate { get; set; } + public double Rating { get; set; } + public List Locations { get; set; } +} +public class NwindDataItem_LocationsItem +{ + public string Shop { get; set; } + public string LastInventory { get; set; } +} + +public class NwindData + : List +{ + public NwindData() + { + this.Add(new NwindDataItem() + { + ProductID = 1, + ProductName = @"Chai", + SupplierID = 1, + CategoryID = 1, + QuantityPerUnit = @"10 boxes x 20 bags", + UnitPrice = 18, + UnitsInStock = 39, + UnitsOnOrder = 30, + ReorderLevel = 10, + Discontinued = false, + OrderDate = @"2012-02-12", + Rating = 5, + Locations = new List() + { + new NwindDataItem_LocationsItem() + { + Shop = @"Fun-Tasty Co.", + LastInventory = @"2018-06-12" + }, + new NwindDataItem_LocationsItem() + { + Shop = @"Farmer Market", + LastInventory = @"2018-04-04" + }} + + }); + this.Add(new NwindDataItem() + { + ProductID = 2, + ProductName = @"Chang", + SupplierID = 1, + CategoryID = 1, + QuantityPerUnit = @"24 - 12 oz bottles", + UnitPrice = 19, + UnitsInStock = 17, + UnitsOnOrder = 40, + ReorderLevel = 25, + Discontinued = true, + OrderDate = @"2003-03-17", + Rating = 5, + Locations = new List() + { + new NwindDataItem_LocationsItem() + { + Shop = @"Super Market", + LastInventory = @"2018-09-09" + }} + + }); + this.Add(new NwindDataItem() + { + ProductID = 3, + ProductName = @"Aniseed Syrup", + SupplierID = 1, + CategoryID = 2, + QuantityPerUnit = @"12 - 550 ml bottles", + UnitPrice = 10, + UnitsInStock = 13, + UnitsOnOrder = 70, + ReorderLevel = 25, + Discontinued = false, + OrderDate = @"2006-03-17", + Rating = 3, + Locations = new List() + { + new NwindDataItem_LocationsItem() + { + Shop = @"Farmer Market", + LastInventory = @"2018-04-04" + }, + new NwindDataItem_LocationsItem() + { + Shop = @"Street Market", + LastInventory = @"2018-12-12" + }, + new NwindDataItem_LocationsItem() + { + Shop = @"24/7 Market", + LastInventory = @"2018-11-11" + }} + + }); + this.Add(new NwindDataItem() + { + ProductID = 4, + ProductName = @"Chef Antons Cajun Seasoning", + SupplierID = 2, + CategoryID = 2, + QuantityPerUnit = @"48 - 6 oz jars", + UnitPrice = 22, + UnitsInStock = 53, + UnitsOnOrder = 30, + ReorderLevel = 0, + Discontinued = false, + OrderDate = @"2016-03-17", + Rating = 3, + Locations = new List() + { + new NwindDataItem_LocationsItem() + { + Shop = @"Fun-Tasty Co.", + LastInventory = @"2018-06-12" + }, + new NwindDataItem_LocationsItem() + { + Shop = @"Farmer Market", + LastInventory = @"2018-04-04" + }, + new NwindDataItem_LocationsItem() + { + Shop = @"Street Market", + LastInventory = @"2018-12-12" + }} + + }); + this.Add(new NwindDataItem() + { + ProductID = 5, + ProductName = @"Chef Antons Gumbo Mix", + SupplierID = 2, + CategoryID = 2, + QuantityPerUnit = @"36 boxes", + UnitPrice = 21.35, + UnitsInStock = 0, + UnitsOnOrder = 30, + ReorderLevel = 0, + Discontinued = true, + OrderDate = @"2011-11-11", + Rating = 5, + Locations = new List() + { + new NwindDataItem_LocationsItem() + { + Shop = @"Super Market", + LastInventory = @"2018-09-09" + }} + + }); + this.Add(new NwindDataItem() + { + ProductID = 6, + ProductName = @"Grandmas Boysenberry Spread", + SupplierID = 3, + CategoryID = 2, + QuantityPerUnit = @"12 - 8 oz jars", + UnitPrice = 25, + UnitsInStock = 0, + UnitsOnOrder = 30, + ReorderLevel = 25, + Discontinued = false, + OrderDate = @"2017-12-17", + Rating = 4, + Locations = new List() + { + new NwindDataItem_LocationsItem() + { + Shop = @"Super Market", + LastInventory = @"2018-09-09" + }} + + }); + this.Add(new NwindDataItem() + { + ProductID = 7, + ProductName = @"Uncle Bobs Organic Dried Pears", + SupplierID = 3, + CategoryID = 7, + QuantityPerUnit = @"12 - 1 lb pkgs.", + UnitPrice = 30, + UnitsInStock = 150, + UnitsOnOrder = 30, + ReorderLevel = 10, + Discontinued = false, + OrderDate = @"2016-07-17", + Rating = 5, + Locations = new List() + { + new NwindDataItem_LocationsItem() + { + Shop = @"Fun-Tasty Co.", + LastInventory = @"2018-06-12" + }, + new NwindDataItem_LocationsItem() + { + Shop = @"Farmer Market", + LastInventory = @"2018-04-04" + }, + new NwindDataItem_LocationsItem() + { + Shop = @"Street Market", + LastInventory = @"2018-12-12" + }} + + }); + this.Add(new NwindDataItem() + { + ProductID = 8, + ProductName = @"Northwoods Cranberry Sauce", + SupplierID = 3, + CategoryID = 2, + QuantityPerUnit = @"12 - 12 oz jars", + UnitPrice = 40, + UnitsInStock = 6, + UnitsOnOrder = 30, + ReorderLevel = 0, + Discontinued = false, + OrderDate = @"2018-01-17", + Rating = 4, + Locations = new List() + { + new NwindDataItem_LocationsItem() + { + Shop = @"Fun-Tasty Co.", + LastInventory = @"2018-06-12" + }, + new NwindDataItem_LocationsItem() + { + Shop = @"Farmer Market", + LastInventory = @"2018-04-04" + }} + + }); + this.Add(new NwindDataItem() + { + ProductID = 9, + ProductName = @"Mishi Kobe Niku", + SupplierID = 4, + CategoryID = 6, + QuantityPerUnit = @"18 - 500 g pkgs.", + UnitPrice = 97, + UnitsInStock = 29, + UnitsOnOrder = 30, + ReorderLevel = 0, + Discontinued = true, + OrderDate = @"2010-02-17", + Rating = 4, + Locations = new List() + { + new NwindDataItem_LocationsItem() + { + Shop = @"Farmer Market", + LastInventory = @"2018-04-04" + }} + + }); + this.Add(new NwindDataItem() + { + ProductID = 10, + ProductName = @"Ikura", + SupplierID = 4, + CategoryID = 8, + QuantityPerUnit = @"12 - 200 ml jars", + UnitPrice = 31, + UnitsInStock = 31, + UnitsOnOrder = 30, + ReorderLevel = 0, + Discontinued = false, + OrderDate = @"2008-05-17", + Rating = 3, + Locations = new List() + { + new NwindDataItem_LocationsItem() + { + Shop = @"Wall Market", + LastInventory = @"2018-12-06" + }} + + }); + this.Add(new NwindDataItem() + { + ProductID = 11, + ProductName = @"Queso Cabrales", + SupplierID = 5, + CategoryID = 4, + QuantityPerUnit = @"1 kg pkg.", + UnitPrice = 21, + UnitsInStock = 22, + UnitsOnOrder = 30, + ReorderLevel = 30, + Discontinued = false, + OrderDate = @"2009-01-17", + Rating = 5, + Locations = new List() + { + new NwindDataItem_LocationsItem() + { + Shop = @"Fun-Tasty Co.", + LastInventory = @"2018-06-12" + }, + new NwindDataItem_LocationsItem() + { + Shop = @"Farmer Market", + LastInventory = @"2018-04-04" + }} + + }); + this.Add(new NwindDataItem() + { + ProductID = 12, + ProductName = @"Queso Manchego La Pastora", + SupplierID = 5, + CategoryID = 4, + QuantityPerUnit = @"10 - 500 g pkgs.", + UnitPrice = 38, + UnitsInStock = 86, + UnitsOnOrder = 30, + ReorderLevel = 0, + Discontinued = false, + OrderDate = @"2015-11-17", + Rating = 3, + Locations = new List() + { + new NwindDataItem_LocationsItem() + { + Shop = @"Farmer Market", + LastInventory = @"2018-04-04" + }} + + }); + this.Add(new NwindDataItem() + { + ProductID = 13, + ProductName = @"Konbu", + SupplierID = 6, + CategoryID = 8, + QuantityPerUnit = @"2 kg box", + UnitPrice = 6, + UnitsInStock = 24, + UnitsOnOrder = 30, + ReorderLevel = 5, + Discontinued = false, + OrderDate = @"2015-03-17", + Rating = 2, + Locations = new List() + { + new NwindDataItem_LocationsItem() + { + Shop = @"Super Market", + LastInventory = @"2018-09-09" + }} + + }); + this.Add(new NwindDataItem() + { + ProductID = 14, + ProductName = @"Tofu", + SupplierID = 6, + CategoryID = 7, + QuantityPerUnit = @"40 - 100 g pkgs.", + UnitPrice = 23.25, + UnitsInStock = 35, + UnitsOnOrder = 30, + ReorderLevel = 0, + Discontinued = false, + OrderDate = @"2017-06-17", + Rating = 4, + Locations = new List() + { + new NwindDataItem_LocationsItem() + { + Shop = @"Farmer Market", + LastInventory = @"2018-04-04" + }, + new NwindDataItem_LocationsItem() + { + Shop = @"Street Market", + LastInventory = @"2018-12-12" + }} + + }); + this.Add(new NwindDataItem() + { + ProductID = 15, + ProductName = @"Genen Shouyu", + SupplierID = 6, + CategoryID = 2, + QuantityPerUnit = @"24 - 250 ml bottles", + UnitPrice = 15.5, + UnitsInStock = 39, + UnitsOnOrder = 30, + ReorderLevel = 5, + Discontinued = false, + OrderDate = @"2014-03-17", + Rating = 4, + Locations = new List() + { + new NwindDataItem_LocationsItem() + { + Shop = @"Local Market", + LastInventory = @"2018-07-03" + }, + new NwindDataItem_LocationsItem() + { + Shop = @"Wall Market", + LastInventory = @"2018-12-06" + }} + + }); + this.Add(new NwindDataItem() + { + ProductID = 16, + ProductName = @"Pavlova", + SupplierID = 7, + CategoryID = 3, + QuantityPerUnit = @"32 - 500 g boxes", + UnitPrice = 17.45, + UnitsInStock = 29, + UnitsOnOrder = 30, + ReorderLevel = 10, + Discontinued = false, + OrderDate = @"2018-03-28", + Rating = 2, + Locations = new List() + { + new NwindDataItem_LocationsItem() + { + Shop = @"Farmer Market", + LastInventory = @"2018-04-04" + }, + new NwindDataItem_LocationsItem() + { + Shop = @"Street Market", + LastInventory = @"2018-12-12" + }, + new NwindDataItem_LocationsItem() + { + Shop = @"24/7 Market", + LastInventory = @"2018-11-11" + }} + + }); + this.Add(new NwindDataItem() + { + ProductID = 17, + ProductName = @"Alice Mutton", + SupplierID = 7, + CategoryID = 6, + QuantityPerUnit = @"20 - 1 kg tins", + UnitPrice = 39, + UnitsInStock = 0, + UnitsOnOrder = 30, + ReorderLevel = 0, + Discontinued = true, + OrderDate = @"2015-08-17", + Rating = 2, + Locations = new List() + { + new NwindDataItem_LocationsItem() + { + Shop = @"Farmer Market", + LastInventory = @"2018-04-04" + }} + + }); + this.Add(new NwindDataItem() + { + ProductID = 18, + ProductName = @"Carnarvon Tigers", + SupplierID = 7, + CategoryID = 8, + QuantityPerUnit = @"16 kg pkg.", + UnitPrice = 62.5, + UnitsInStock = 42, + UnitsOnOrder = 30, + ReorderLevel = 0, + Discontinued = false, + OrderDate = @"2005-09-27", + Rating = 2, + Locations = new List() + { + new NwindDataItem_LocationsItem() + { + Shop = @"24/7 Market", + LastInventory = @"2018-11-11" + }, + new NwindDataItem_LocationsItem() + { + Shop = @"Super Market", + LastInventory = @"2018-09-09" + }} + + }); + this.Add(new NwindDataItem() + { + ProductID = 19, + ProductName = @"Teatime Chocolate Biscuits", + SupplierID = 8, + CategoryID = 3, + QuantityPerUnit = @"", + UnitPrice = 9.2, + UnitsInStock = 25, + UnitsOnOrder = 30, + ReorderLevel = 5, + Discontinued = false, + OrderDate = @"2001-03-17", + Rating = 2, + Locations = new List() + { + new NwindDataItem_LocationsItem() + { + Shop = @"Local Market", + LastInventory = @"2018-07-03" + }} + + }); + this.Add(new NwindDataItem() + { + ProductID = 20, + ProductName = @"Sir Rodneys Marmalade", + SupplierID = 8, + CategoryID = 3, + QuantityPerUnit = @"4 - 100 ml jars", + UnitPrice = 4.5, + UnitsInStock = 40, + UnitsOnOrder = 30, + ReorderLevel = 0, + Discontinued = false, + OrderDate = @"2005-03-17", + Rating = 5, + Locations = new List() + { + new NwindDataItem_LocationsItem() + { + Shop = @"Super Market", + LastInventory = @"2018-09-09" + }} + + }); + } +} diff --git a/samples/grids/grid/remote-paging-data/Program.cs b/samples/grids/grid/remote-paging-data/Program.cs new file mode 100644 index 0000000000..009d58a6d8 --- /dev/null +++ b/samples/grids/grid/remote-paging-data/Program.cs @@ -0,0 +1,30 @@ +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(IgbInputModule), + typeof(IgbPropertyEditorPanelModule), + typeof(IgbGridModule) + ); + await builder.Build().RunAsync(); + } + } +} diff --git a/samples/grids/grid/remote-paging-data/Properties/launchSettings.json b/samples/grids/grid/remote-paging-data/Properties/launchSettings.json new file mode 100644 index 0000000000..18bd6fb5bc --- /dev/null +++ b/samples/grids/grid/remote-paging-data/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/grids/grid/remote-paging-data/ReadMe.md b/samples/grids/grid/remote-paging-data/ReadMe.md new file mode 100644 index 0000000000..f9955e5d2e --- /dev/null +++ b/samples/grids/grid/remote-paging-data/ReadMe.md @@ -0,0 +1,70 @@ + + + +This folder contains implementation of Blazor application with example of Remote Paging Data feature using [Grid](https://www.infragistics.com/products/ignite-ui-blazor/blazor/components/general-getting-started.html) component. + + + + + +
+ View Docs + + + View Code + + + Run Sample + + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-blazor-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-blazor-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Setup + +- instal **.NET SDK** from this [website](https://dotnet.microsoft.com/learn/aspnet/blazor-tutorial/install) + +## Running App in Visual Studio 2019 + +NOTE: VS 2019 has better code highlighting and error detection than VS Code does. + +- open **Visual Studio 2019** as an administrator + +- open the **BlazorClientApp.sln** solution + +- right click solution and select **Restore NuGet Packages** menu item + +- click **Debug** menu and select **Start Debugging** or press **F5** key + + +## Running App in VS Code + +- open **VS Code** as an administrator + +- open this folder in **VS Code** + +- open a terminal window + +- to restore assemblies, run this command: +```dotnet restore``` + +- to run samples, run this command: +```dotnet watch run``` + +- wait for for message: +**Now listening on: http://localhost:4200** + +- open **http://localhost:4200** in your browser + + +## Resources + +- [Razor Component Models](https://www.codemag.com/article/1911052) +- [Razor Syntax](https://docs.microsoft.com/en-us/aspnet/core/blazor/components/?view=aspnetcore-3.1#razor-syntax) +- [Getting reference to components](https://docs.microsoft.com/en-us/aspnet/core/blazor/components/?view=aspnetcore-3.1#capture-references-to-components) diff --git a/samples/grids/grid/remote-paging-data/_Imports.razor b/samples/grids/grid/remote-paging-data/_Imports.razor new file mode 100644 index 0000000000..d27d337cb1 --- /dev/null +++ b/samples/grids/grid/remote-paging-data/_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/grids/grid/remote-paging-data/wwwroot/index.css b/samples/grids/grid/remote-paging-data/wwwroot/index.css new file mode 100644 index 0000000000..50ca13caa6 --- /dev/null +++ b/samples/grids/grid/remote-paging-data/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/grids/grid/remote-paging-data/wwwroot/index.html b/samples/grids/grid/remote-paging-data/wwwroot/index.html new file mode 100644 index 0000000000..dde85b4e54 --- /dev/null +++ b/samples/grids/grid/remote-paging-data/wwwroot/index.html @@ -0,0 +1,31 @@ + + + + + + + + + + Samples | IgniteUI for Blazor | Infragistics + + + + + + + + + + +
+ An unhandled error has occurred. + Reload + 🗙 +
+ + + + + + diff --git a/samples/grids/grid/remote-paging-grid/BlazorClientApp.csproj b/samples/grids/grid/remote-paging-grid/BlazorClientApp.csproj index 1be801087c..2e5a82090a 100644 --- a/samples/grids/grid/remote-paging-grid/BlazorClientApp.csproj +++ b/samples/grids/grid/remote-paging-grid/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -13,19 +13,19 @@ <<<<<<< 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/row-adding/BlazorClientApp.csproj +++ b/samples/grids/grid/row-adding/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/row-classes/BlazorClientApp.csproj b/samples/grids/grid/row-classes/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/row-classes/BlazorClientApp.csproj +++ b/samples/grids/grid/row-classes/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/row-drag-base/BlazorClientApp.csproj b/samples/grids/grid/row-drag-base/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/row-drag-base/BlazorClientApp.csproj +++ b/samples/grids/grid/row-drag-base/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/row-drag-to-grid/BlazorClientApp.csproj b/samples/grids/grid/row-drag-to-grid/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/row-drag-to-grid/BlazorClientApp.csproj +++ b/samples/grids/grid/row-drag-to-grid/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/row-editing-options/BlazorClientApp.csproj b/samples/grids/grid/row-editing-options/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/row-editing-options/BlazorClientApp.csproj +++ b/samples/grids/grid/row-editing-options/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/row-editing-style/BlazorClientApp.csproj b/samples/grids/grid/row-editing-style/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/row-editing-style/BlazorClientApp.csproj +++ b/samples/grids/grid/row-editing-style/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/row-paging-basic/BlazorClientApp.csproj b/samples/grids/grid/row-paging-basic/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/row-paging-basic/BlazorClientApp.csproj +++ b/samples/grids/grid/row-paging-basic/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/row-paging-options/BlazorClientApp.csproj b/samples/grids/grid/row-paging-options/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/row-paging-options/BlazorClientApp.csproj +++ b/samples/grids/grid/row-paging-options/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/row-pinning-drag/BlazorClientApp.csproj b/samples/grids/grid/row-pinning-drag/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/row-pinning-drag/BlazorClientApp.csproj +++ b/samples/grids/grid/row-pinning-drag/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/row-pinning-extra-column/BlazorClientApp.csproj b/samples/grids/grid/row-pinning-extra-column/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/row-pinning-extra-column/BlazorClientApp.csproj +++ b/samples/grids/grid/row-pinning-extra-column/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/row-pinning-options/BlazorClientApp.csproj b/samples/grids/grid/row-pinning-options/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/row-pinning-options/BlazorClientApp.csproj +++ b/samples/grids/grid/row-pinning-options/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/row-pinning-style/BlazorClientApp.csproj b/samples/grids/grid/row-pinning-style/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/row-pinning-style/BlazorClientApp.csproj +++ b/samples/grids/grid/row-pinning-style/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/row-reorder/BlazorClientApp.csproj b/samples/grids/grid/row-reorder/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/row-reorder/BlazorClientApp.csproj +++ b/samples/grids/grid/row-reorder/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/row-selection-mode/BlazorClientApp.csproj b/samples/grids/grid/row-selection-mode/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/row-selection-mode/BlazorClientApp.csproj +++ b/samples/grids/grid/row-selection-mode/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/row-selection-template-excel/BlazorClientApp.csproj b/samples/grids/grid/row-selection-template-excel/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/row-selection-template-excel/BlazorClientApp.csproj +++ b/samples/grids/grid/row-selection-template-excel/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/row-selection-template-numbers/BlazorClientApp.csproj b/samples/grids/grid/row-selection-template-numbers/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/row-selection-template-numbers/BlazorClientApp.csproj +++ b/samples/grids/grid/row-selection-template-numbers/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/row-styles/BlazorClientApp.csproj b/samples/grids/grid/row-styles/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/row-styles/BlazorClientApp.csproj +++ b/samples/grids/grid/row-styles/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/state-persistence-about/BlazorClientApp.csproj b/samples/grids/grid/state-persistence-about/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/state-persistence-about/BlazorClientApp.csproj +++ b/samples/grids/grid/state-persistence-about/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/state-persistence-main/BlazorClientApp.csproj b/samples/grids/grid/state-persistence-main/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/state-persistence-main/BlazorClientApp.csproj +++ b/samples/grids/grid/state-persistence-main/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/styling-custom-css/BlazorClientApp.csproj b/samples/grids/grid/styling-custom-css/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/styling-custom-css/BlazorClientApp.csproj +++ b/samples/grids/grid/styling-custom-css/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/toolbar-sample-1/BlazorClientApp.csproj b/samples/grids/grid/toolbar-sample-1/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/toolbar-sample-1/BlazorClientApp.csproj +++ b/samples/grids/grid/toolbar-sample-1/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/toolbar-sample-2/BlazorClientApp.csproj b/samples/grids/grid/toolbar-sample-2/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/toolbar-sample-2/BlazorClientApp.csproj +++ b/samples/grids/grid/toolbar-sample-2/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/toolbar-sample-3/BlazorClientApp.csproj b/samples/grids/grid/toolbar-sample-3/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/toolbar-sample-3/BlazorClientApp.csproj +++ b/samples/grids/grid/toolbar-sample-3/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/toolbar-sample-4/BlazorClientApp.csproj b/samples/grids/grid/toolbar-sample-4/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/toolbar-sample-4/BlazorClientApp.csproj +++ b/samples/grids/grid/toolbar-sample-4/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/grid/toolbar-style/BlazorClientApp.csproj b/samples/grids/grid/toolbar-style/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/grid/toolbar-style/BlazorClientApp.csproj +++ b/samples/grids/grid/toolbar-style/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/action-strip/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/action-strip/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/action-strip/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/action-strip/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/advanced-filtering-options/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/advanced-filtering-options/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/advanced-filtering-options/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/advanced-filtering-options/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/advanced-filtering-style/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/advanced-filtering-style/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/advanced-filtering-style/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/advanced-filtering-style/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/cell-editing-sample/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/cell-editing-sample/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/cell-editing-sample/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/cell-editing-sample/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/cell-editing-styling/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/cell-editing-styling/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/cell-editing-styling/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/cell-editing-styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/cell-selection-mode/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/cell-selection-mode/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/cell-selection-mode/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/cell-selection-mode/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/cell-selection-overview/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/cell-selection-overview/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/cell-selection-overview/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/cell-selection-overview/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/cell-selection-style/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/cell-selection-style/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/cell-selection-style/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/cell-selection-style/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/cell-selection-styling/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/cell-selection-styling/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/cell-selection-styling/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/cell-selection-styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/column-auto-sizing/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/column-auto-sizing/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/column-auto-sizing/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/column-auto-sizing/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/column-collapsible-groups/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/column-collapsible-groups/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/column-collapsible-groups/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/column-collapsible-groups/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/column-hiding-toolbar-style/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/column-hiding-toolbar-style/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/column-hiding-toolbar/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/column-hiding-toolbar/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/column-hiding-toolbar/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/column-hiding-toolbar/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/column-moving-options/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/column-moving-options/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/column-moving-options/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/column-moving-options/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/column-moving-styles/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/column-moving-styles/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/column-moving-styles/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/column-moving-styles/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/column-pinning-options/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/column-pinning-options/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/column-pinning-options/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/column-pinning-options/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/column-pinning-right-side/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/column-pinning-right-side/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/column-pinning-styles/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/column-pinning-styles/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/column-pinning-styles/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/column-pinning-styles/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/column-pinning/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/column-pinning/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/column-pinning/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/column-pinning/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/column-resize-styling/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/column-resize-styling/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/column-resize-styling/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/column-resize-styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/column-resizing/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/column-resizing/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/column-resizing/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/column-resizing/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/column-selection-group/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/column-selection-group/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/column-selection-group/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/column-selection-group/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/column-selection-mode/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/column-selection-mode/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/column-selection-mode/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/column-selection-mode/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/column-selection-styles/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/column-selection-styles/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/column-selection-styles/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/column-selection-styles/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/column-sorting-indicators/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/column-sorting-indicators/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/column-sorting-indicators/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/column-sorting-indicators/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/column-sorting-options/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/column-sorting-options/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/column-sorting-options/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/column-sorting-options/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/column-sorting-style/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/column-sorting-style/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/column-sorting-style/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/column-sorting-style/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/complex-feature-name1/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/complex-feature-name1/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/complex-feature-name1/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/complex-feature-name1/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/complex-feature-name2/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/complex-feature-name2/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/complex-feature-name2/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/complex-feature-name2/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/conditional-cell-style-1/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/conditional-cell-style-1/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/conditional-cell-style-2/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/conditional-cell-style-2/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/conditional-row-selectors/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/conditional-row-selectors/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/conditional-row-selectors/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/conditional-row-selectors/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/custom-filtering/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/custom-filtering/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/custom-filtering/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/custom-filtering/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/data-exporting-indicator/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/data-exporting-indicator/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/data-exporting-indicator/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/data-exporting-indicator/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/data-performance-virtualization/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/data-performance-virtualization/BlazorClientApp.csproj index de0bf37e44..6d01ee5559 100644 --- a/samples/grids/hierarchical-grid/data-performance-virtualization/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/data-performance-virtualization/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/data-summary-formatter/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/data-summary-formatter/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/data-summary-formatter/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/data-summary-formatter/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/data-summary-options-styling/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/data-summary-options-styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/data-summary-options/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/data-summary-options/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/data-summary-options/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/data-summary-options/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/data-summary-template/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/data-summary-template/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/data-summary-template/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/data-summary-template/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/editing-columns/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/editing-columns/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/editing-columns/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/editing-columns/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/editing-events/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/editing-events/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/editing-events/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/editing-events/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/editing-lifecycle/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/editing-lifecycle/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/editing-lifecycle/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/editing-lifecycle/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/excel-exporting/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/excel-exporting/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/excel-exporting/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/excel-exporting/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 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 @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 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 @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 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 @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-style/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/excel-style-filtering-style/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/filtering-options/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/filtering-options/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/filtering-options/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/filtering-options/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/filtering-style/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/filtering-style/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/filtering-style/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/filtering-style/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-options/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/hierarchical-grid-options/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-options/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/hierarchical-grid-options/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-styling/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/hierarchical-grid-styling/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-styling/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/hierarchical-grid-styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/layout-display-density/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/layout-display-density/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/layout-display-density/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/layout-display-density/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-export/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/multi-column-headers-export/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-overview/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/multi-column-headers-overview/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-styling/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/multi-column-headers-styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-template/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/multi-column-headers-template/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/overview/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/overview/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/overview/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/overview/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/remote-paging-hgrid/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/remote-paging-hgrid/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/remote-paging-hgrid/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/remote-paging-hgrid/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/remote-paging-hgrid/ReadMe.md b/samples/grids/hierarchical-grid/remote-paging-hgrid/ReadMe.md index f9955e5d2e..bae218f685 100644 --- a/samples/grids/hierarchical-grid/remote-paging-hgrid/ReadMe.md +++ b/samples/grids/hierarchical-grid/remote-paging-hgrid/ReadMe.md @@ -1,7 +1,7 @@ -This folder contains implementation of Blazor application with example of Remote Paging Data feature using [Grid](https://www.infragistics.com/products/ignite-ui-blazor/blazor/components/general-getting-started.html) component. +This folder contains implementation of Blazor application with example of Remote Paging Hgrid feature using [Hierarchical Grid](https://www.infragistics.com/products/ignite-ui-blazor/blazor/components/general-getting-started.html) component. @@ -13,10 +13,10 @@ This folder contains implementation of Blazor application with example of Remote View Code - + Run Sample - diff --git a/samples/grids/hierarchical-grid/row-adding/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/row-adding/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/row-adding/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/row-adding/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/row-classes/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/row-classes/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/row-classes/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/row-classes/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/row-drag-base/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/row-drag-base/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/row-drag-base/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/row-drag-base/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/row-editing-options/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/row-editing-options/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/row-editing-options/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/row-editing-options/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/row-editing-style/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/row-editing-style/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/row-editing-style/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/row-editing-style/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/row-pinning-extra-column/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/row-pinning-extra-column/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/row-pinning-options/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/row-pinning-options/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/row-pinning-options/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/row-pinning-options/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/row-pinning-style/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/row-pinning-style/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/row-pinning-style/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/row-pinning-style/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/row-reorder/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/row-reorder/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/row-reorder/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/row-reorder/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/row-selection-mode/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/row-selection-mode/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/row-selection-mode/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/row-selection-mode/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/row-selection-template-numbers/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/row-selection-template-numbers/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/row-styles/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/row-styles/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/row-styles/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/row-styles/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/state-persistence-about/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/state-persistence-about/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/state-persistence-about/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/state-persistence-about/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/state-persistence-main/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/state-persistence-main/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/state-persistence-main/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/state-persistence-main/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/toolbar-sample-3/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/toolbar-sample-3/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-3/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/toolbar-sample-3/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/toolbar-sample-4/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/toolbar-sample-4/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-4/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/toolbar-sample-4/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/hierarchical-grid/toolbar-style/BlazorClientApp.csproj b/samples/grids/hierarchical-grid/toolbar-style/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/hierarchical-grid/toolbar-style/BlazorClientApp.csproj +++ b/samples/grids/hierarchical-grid/toolbar-style/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/list/add-list-items/BlazorClientApp.csproj b/samples/grids/list/add-list-items/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/grids/list/add-list-items/BlazorClientApp.csproj +++ b/samples/grids/list/add-list-items/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/list/list-item-content/BlazorClientApp.csproj b/samples/grids/list/list-item-content/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/grids/list/list-item-content/BlazorClientApp.csproj +++ b/samples/grids/list/list-item-content/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/list/overview/BlazorClientApp.csproj b/samples/grids/list/overview/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/grids/list/overview/BlazorClientApp.csproj +++ b/samples/grids/list/overview/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/list/styling/BlazorClientApp.csproj b/samples/grids/list/styling/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/grids/list/styling/BlazorClientApp.csproj +++ b/samples/grids/list/styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/pivot-grid/aggregate-max-sales/BlazorClientApp.csproj b/samples/grids/pivot-grid/aggregate-max-sales/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/pivot-grid/aggregate-max-sales/BlazorClientApp.csproj +++ b/samples/grids/pivot-grid/aggregate-max-sales/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/pivot-grid/aggregate-units-sold/BlazorClientApp.csproj b/samples/grids/pivot-grid/aggregate-units-sold/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/pivot-grid/aggregate-units-sold/BlazorClientApp.csproj +++ b/samples/grids/pivot-grid/aggregate-units-sold/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/pivot-grid/data-selector/BlazorClientApp.csproj b/samples/grids/pivot-grid/data-selector/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/pivot-grid/data-selector/BlazorClientApp.csproj +++ b/samples/grids/pivot-grid/data-selector/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/pivot-grid/features/BlazorClientApp.csproj b/samples/grids/pivot-grid/features/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/pivot-grid/features/BlazorClientApp.csproj +++ b/samples/grids/pivot-grid/features/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/pivot-grid/state-persistence-about/BlazorClientApp.csproj b/samples/grids/pivot-grid/state-persistence-about/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/pivot-grid/state-persistence-about/BlazorClientApp.csproj +++ b/samples/grids/pivot-grid/state-persistence-about/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/pivot-grid/state-persistence-main/BlazorClientApp.csproj b/samples/grids/pivot-grid/state-persistence-main/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/pivot-grid/state-persistence-main/BlazorClientApp.csproj +++ b/samples/grids/pivot-grid/state-persistence-main/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/action-strip/BlazorClientApp.csproj b/samples/grids/tree-grid/action-strip/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/action-strip/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/action-strip/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/advanced-filtering-options/BlazorClientApp.csproj b/samples/grids/tree-grid/advanced-filtering-options/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/advanced-filtering-options/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/advanced-filtering-options/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/advanced-filtering-style/BlazorClientApp.csproj b/samples/grids/tree-grid/advanced-filtering-style/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/advanced-filtering-style/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/advanced-filtering-style/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/cell-editing-sample/BlazorClientApp.csproj b/samples/grids/tree-grid/cell-editing-sample/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/cell-editing-sample/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/cell-editing-sample/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/cell-editing-styling/BlazorClientApp.csproj b/samples/grids/tree-grid/cell-editing-styling/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/cell-editing-styling/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/cell-editing-styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/cell-selection-mode/BlazorClientApp.csproj b/samples/grids/tree-grid/cell-selection-mode/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/cell-selection-mode/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/cell-selection-mode/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/cell-selection-style/BlazorClientApp.csproj b/samples/grids/tree-grid/cell-selection-style/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/cell-selection-style/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/cell-selection-style/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/clipboard-operations/BlazorClientApp.csproj b/samples/grids/tree-grid/clipboard-operations/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/clipboard-operations/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/clipboard-operations/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/column-auto-sizing/BlazorClientApp.csproj b/samples/grids/tree-grid/column-auto-sizing/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/column-auto-sizing/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/column-auto-sizing/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/column-collapsible-groups/BlazorClientApp.csproj b/samples/grids/tree-grid/column-collapsible-groups/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/column-collapsible-groups/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/column-collapsible-groups/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/column-data-types/BlazorClientApp.csproj b/samples/grids/tree-grid/column-data-types/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/column-data-types/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/column-data-types/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/column-hiding-toolbar-style/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/column-hiding-toolbar-style/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/column-hiding-toolbar/BlazorClientApp.csproj b/samples/grids/tree-grid/column-hiding-toolbar/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/column-hiding-toolbar/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/column-hiding-toolbar/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/column-moving-options/BlazorClientApp.csproj b/samples/grids/tree-grid/column-moving-options/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/column-moving-options/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/column-moving-options/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/column-moving-styles/BlazorClientApp.csproj b/samples/grids/tree-grid/column-moving-styles/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/column-moving-styles/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/column-moving-styles/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/column-pinning-options/BlazorClientApp.csproj b/samples/grids/tree-grid/column-pinning-options/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/column-pinning-options/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/column-pinning-options/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/column-pinning-right-side/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/column-pinning-right-side/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/column-pinning-styles/BlazorClientApp.csproj b/samples/grids/tree-grid/column-pinning-styles/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/column-pinning-styles/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/column-pinning-styles/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/column-pinning-toolbar/BlazorClientApp.csproj b/samples/grids/tree-grid/column-pinning-toolbar/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/column-pinning-toolbar/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/column-pinning-toolbar/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/column-pinning/BlazorClientApp.csproj b/samples/grids/tree-grid/column-pinning/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/column-pinning/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/column-pinning/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/column-resize-styling/BlazorClientApp.csproj b/samples/grids/tree-grid/column-resize-styling/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/column-resize-styling/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/column-resize-styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/column-resizing/BlazorClientApp.csproj b/samples/grids/tree-grid/column-resizing/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/column-resizing/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/column-resizing/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/column-selection-group/BlazorClientApp.csproj b/samples/grids/tree-grid/column-selection-group/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/column-selection-group/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/column-selection-group/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/column-selection-mode/BlazorClientApp.csproj b/samples/grids/tree-grid/column-selection-mode/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/column-selection-mode/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/column-selection-mode/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/column-selection-style/BlazorClientApp.csproj b/samples/grids/tree-grid/column-selection-style/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/column-selection-style/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/column-selection-style/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/column-selection-styles/BlazorClientApp.csproj b/samples/grids/tree-grid/column-selection-styles/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/column-selection-styles/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/column-selection-styles/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/column-sorting-indicators/BlazorClientApp.csproj b/samples/grids/tree-grid/column-sorting-indicators/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/column-sorting-indicators/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/column-sorting-indicators/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/column-sorting-options/BlazorClientApp.csproj b/samples/grids/tree-grid/column-sorting-options/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/column-sorting-options/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/column-sorting-options/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/column-sorting-style/BlazorClientApp.csproj b/samples/grids/tree-grid/column-sorting-style/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/column-sorting-style/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/column-sorting-style/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/conditional-cell-style-1/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/conditional-cell-style-1/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/conditional-cell-style-2/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/conditional-cell-style-2/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/conditional-row-selectors/BlazorClientApp.csproj b/samples/grids/tree-grid/conditional-row-selectors/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/conditional-row-selectors/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/conditional-row-selectors/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/data-exporting-indicator/BlazorClientApp.csproj b/samples/grids/tree-grid/data-exporting-indicator/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/data-exporting-indicator/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/data-exporting-indicator/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/data-searching/BlazorClientApp.csproj b/samples/grids/tree-grid/data-searching/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/data-searching/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/data-searching/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/data-summaries-custom/BlazorClientApp.csproj b/samples/grids/tree-grid/data-summaries-custom/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/data-summaries-custom/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/data-summaries-custom/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/data-summary-children/BlazorClientApp.csproj b/samples/grids/tree-grid/data-summary-children/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/data-summary-children/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/data-summary-children/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/data-summary-options-styling/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/data-summary-options-styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/data-summary-options/BlazorClientApp.csproj b/samples/grids/tree-grid/data-summary-options/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/data-summary-options/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/data-summary-options/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/data-summary-template/BlazorClientApp.csproj b/samples/grids/tree-grid/data-summary-template/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/data-summary-template/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/data-summary-template/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/editing-columns/BlazorClientApp.csproj b/samples/grids/tree-grid/editing-columns/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/editing-columns/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/editing-columns/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/editing-events/BlazorClientApp.csproj b/samples/grids/tree-grid/editing-events/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/editing-events/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/editing-events/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/editing-lifecycle/BlazorClientApp.csproj b/samples/grids/tree-grid/editing-lifecycle/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/editing-lifecycle/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/editing-lifecycle/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/editing-style/BlazorClientApp.csproj b/samples/grids/tree-grid/editing-style/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/editing-style/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/editing-style/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/excel-exporting/BlazorClientApp.csproj b/samples/grids/tree-grid/excel-exporting/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/excel-exporting/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/excel-exporting/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 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 @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 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 @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 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 @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/excel-style-filtering-style/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/excel-style-filtering-style/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/filtering-options/BlazorClientApp.csproj b/samples/grids/tree-grid/filtering-options/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/filtering-options/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/filtering-options/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/filtering-style/BlazorClientApp.csproj b/samples/grids/tree-grid/filtering-style/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/filtering-style/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/filtering-style/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/finjs/BlazorClientApp.csproj b/samples/grids/tree-grid/finjs/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/finjs/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/finjs/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/keyboard-custom-navigation/BlazorClientApp.csproj b/samples/grids/tree-grid/keyboard-custom-navigation/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/keyboard-custom-navigation/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/keyboard-custom-navigation/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/layout-display-density/BlazorClientApp.csproj b/samples/grids/tree-grid/layout-display-density/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/layout-display-density/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/layout-display-density/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/multi-cell-selection-mode/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/multi-cell-selection-mode/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/multi-column-headers-export/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/multi-column-headers-export/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/multi-column-headers-overview/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/multi-column-headers-overview/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/multi-column-headers-styling/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/multi-column-headers-styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/multi-column-headers-template/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/multi-column-headers-template/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/overview-styling/BlazorClientApp.csproj b/samples/grids/tree-grid/overview-styling/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/overview-styling/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/overview-styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/overview/BlazorClientApp.csproj b/samples/grids/tree-grid/overview/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/overview/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/overview/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/row-adding/BlazorClientApp.csproj b/samples/grids/tree-grid/row-adding/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/row-adding/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/row-adding/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/row-classes/BlazorClientApp.csproj b/samples/grids/tree-grid/row-classes/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/row-classes/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/row-classes/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/row-drag-base/BlazorClientApp.csproj b/samples/grids/tree-grid/row-drag-base/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/row-drag-base/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/row-drag-base/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/row-editing-options/BlazorClientApp.csproj b/samples/grids/tree-grid/row-editing-options/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/row-editing-options/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/row-editing-options/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/row-editing-style/BlazorClientApp.csproj b/samples/grids/tree-grid/row-editing-style/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/row-editing-style/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/row-editing-style/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/row-paging-basic/BlazorClientApp.csproj b/samples/grids/tree-grid/row-paging-basic/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/row-paging-basic/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/row-paging-basic/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/row-paging-options/BlazorClientApp.csproj b/samples/grids/tree-grid/row-paging-options/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/row-paging-options/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/row-paging-options/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/row-paging-style/BlazorClientApp.csproj b/samples/grids/tree-grid/row-paging-style/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/row-paging-style/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/row-paging-style/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/row-pinning-extra-column/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/row-pinning-extra-column/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/row-pinning-options/BlazorClientApp.csproj b/samples/grids/tree-grid/row-pinning-options/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/row-pinning-options/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/row-pinning-options/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/row-pinning-style/BlazorClientApp.csproj b/samples/grids/tree-grid/row-pinning-style/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/row-pinning-style/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/row-pinning-style/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/row-reorder/BlazorClientApp.csproj b/samples/grids/tree-grid/row-reorder/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/row-reorder/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/row-reorder/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/row-selection-mode/BlazorClientApp.csproj b/samples/grids/tree-grid/row-selection-mode/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/row-selection-mode/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/row-selection-mode/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/row-selection-template-excel/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/row-selection-template-excel/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/row-selection-template-numbers/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/row-selection-template-numbers/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/row-styles/BlazorClientApp.csproj b/samples/grids/tree-grid/row-styles/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/row-styles/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/row-styles/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/state-persistence-about/BlazorClientApp.csproj b/samples/grids/tree-grid/state-persistence-about/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/state-persistence-about/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/state-persistence-about/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/state-persistence-main/BlazorClientApp.csproj b/samples/grids/tree-grid/state-persistence-main/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/state-persistence-main/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/state-persistence-main/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/toolbar-sample-1/BlazorClientApp.csproj b/samples/grids/tree-grid/toolbar-sample-1/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/toolbar-sample-1/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/toolbar-sample-1/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/toolbar-sample-2/BlazorClientApp.csproj b/samples/grids/tree-grid/toolbar-sample-2/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/toolbar-sample-2/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/toolbar-sample-2/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/toolbar-sample-3/BlazorClientApp.csproj b/samples/grids/tree-grid/toolbar-sample-3/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/toolbar-sample-3/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/toolbar-sample-3/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/toolbar-sample-4/BlazorClientApp.csproj b/samples/grids/tree-grid/toolbar-sample-4/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/toolbar-sample-4/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/toolbar-sample-4/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree-grid/toolbar-style/BlazorClientApp.csproj b/samples/grids/tree-grid/toolbar-style/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/toolbar-style/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/toolbar-style/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/grids/tree-grid/using-primary-foreign-keys/BlazorClientApp.csproj +++ b/samples/grids/tree-grid/using-primary-foreign-keys/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/grids/tree/basic-example/BlazorClientApp.csproj b/samples/grids/tree/basic-example/BlazorClientApp.csproj index b7f3323a0b..2a69eadf70 100644 --- a/samples/grids/tree/basic-example/BlazorClientApp.csproj +++ b/samples/grids/tree/basic-example/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -19,10 +19,10 @@ - - - - + + + + diff --git a/samples/inputs/badge/outlined/BlazorClientApp.csproj b/samples/inputs/badge/outlined/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/badge/outlined/BlazorClientApp.csproj +++ b/samples/inputs/badge/outlined/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/badge/shape/BlazorClientApp.csproj b/samples/inputs/badge/shape/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/badge/shape/BlazorClientApp.csproj +++ b/samples/inputs/badge/shape/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/badge/variants/BlazorClientApp.csproj b/samples/inputs/badge/variants/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/badge/variants/BlazorClientApp.csproj +++ b/samples/inputs/badge/variants/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/button-group/alignment/BlazorClientApp.csproj b/samples/inputs/button-group/alignment/BlazorClientApp.csproj index b7f3323a0b..2a69eadf70 100644 --- a/samples/inputs/button-group/alignment/BlazorClientApp.csproj +++ b/samples/inputs/button-group/alignment/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -19,10 +19,10 @@ - - - - + + + + diff --git a/samples/inputs/button-group/overview/BlazorClientApp.csproj b/samples/inputs/button-group/overview/BlazorClientApp.csproj index b7f3323a0b..2a69eadf70 100644 --- a/samples/inputs/button-group/overview/BlazorClientApp.csproj +++ b/samples/inputs/button-group/overview/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -19,10 +19,10 @@ - - - - + + + + diff --git a/samples/inputs/button-group/selection/BlazorClientApp.csproj b/samples/inputs/button-group/selection/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/button-group/selection/BlazorClientApp.csproj +++ b/samples/inputs/button-group/selection/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/button-group/size/BlazorClientApp.csproj b/samples/inputs/button-group/size/BlazorClientApp.csproj index b7f3323a0b..2a69eadf70 100644 --- a/samples/inputs/button-group/size/BlazorClientApp.csproj +++ b/samples/inputs/button-group/size/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -19,10 +19,10 @@ - - - - + + + + diff --git a/samples/inputs/button-group/styling/BlazorClientApp.csproj b/samples/inputs/button-group/styling/BlazorClientApp.csproj index b7f3323a0b..2a69eadf70 100644 --- a/samples/inputs/button-group/styling/BlazorClientApp.csproj +++ b/samples/inputs/button-group/styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -19,10 +19,10 @@ - - - - + + + + diff --git a/samples/inputs/button/contained/BlazorClientApp.csproj b/samples/inputs/button/contained/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/button/contained/BlazorClientApp.csproj +++ b/samples/inputs/button/contained/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/button/download/BlazorClientApp.csproj b/samples/inputs/button/download/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/button/download/BlazorClientApp.csproj +++ b/samples/inputs/button/download/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/button/fab/BlazorClientApp.csproj b/samples/inputs/button/fab/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/button/fab/BlazorClientApp.csproj +++ b/samples/inputs/button/fab/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/button/flat/BlazorClientApp.csproj b/samples/inputs/button/flat/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/button/flat/BlazorClientApp.csproj +++ b/samples/inputs/button/flat/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/button/outlined/BlazorClientApp.csproj b/samples/inputs/button/outlined/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/button/outlined/BlazorClientApp.csproj +++ b/samples/inputs/button/outlined/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/button/overview/BlazorClientApp.csproj b/samples/inputs/button/overview/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/button/overview/BlazorClientApp.csproj +++ b/samples/inputs/button/overview/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/button/size/BlazorClientApp.csproj b/samples/inputs/button/size/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/button/size/BlazorClientApp.csproj +++ b/samples/inputs/button/size/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/button/styling/BlazorClientApp.csproj b/samples/inputs/button/styling/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/button/styling/BlazorClientApp.csproj +++ b/samples/inputs/button/styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/checkbox/checking/BlazorClientApp.csproj b/samples/inputs/checkbox/checking/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/checkbox/checking/BlazorClientApp.csproj +++ b/samples/inputs/checkbox/checking/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/checkbox/disabled/BlazorClientApp.csproj b/samples/inputs/checkbox/disabled/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/checkbox/disabled/BlazorClientApp.csproj +++ b/samples/inputs/checkbox/disabled/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/checkbox/indeterminate/BlazorClientApp.csproj b/samples/inputs/checkbox/indeterminate/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/checkbox/indeterminate/BlazorClientApp.csproj +++ b/samples/inputs/checkbox/indeterminate/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/checkbox/label/BlazorClientApp.csproj b/samples/inputs/checkbox/label/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/checkbox/label/BlazorClientApp.csproj +++ b/samples/inputs/checkbox/label/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/checkbox/overview/BlazorClientApp.csproj b/samples/inputs/checkbox/overview/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/checkbox/overview/BlazorClientApp.csproj +++ b/samples/inputs/checkbox/overview/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/chip/multiple/BlazorClientApp.csproj b/samples/inputs/chip/multiple/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/chip/multiple/BlazorClientApp.csproj +++ b/samples/inputs/chip/multiple/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/chip/overview/BlazorClientApp.csproj b/samples/inputs/chip/overview/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/chip/overview/BlazorClientApp.csproj +++ b/samples/inputs/chip/overview/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/chip/size/BlazorClientApp.csproj b/samples/inputs/chip/size/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/chip/size/BlazorClientApp.csproj +++ b/samples/inputs/chip/size/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/chip/styling/BlazorClientApp.csproj b/samples/inputs/chip/styling/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/chip/styling/BlazorClientApp.csproj +++ b/samples/inputs/chip/styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/chip/variants/BlazorClientApp.csproj b/samples/inputs/chip/variants/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/chip/variants/BlazorClientApp.csproj +++ b/samples/inputs/chip/variants/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/circular-progress-indicator/dynamic/BlazorClientApp.csproj b/samples/inputs/circular-progress-indicator/dynamic/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/circular-progress-indicator/dynamic/BlazorClientApp.csproj +++ b/samples/inputs/circular-progress-indicator/dynamic/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/circular-progress-indicator/indeterminate/BlazorClientApp.csproj b/samples/inputs/circular-progress-indicator/indeterminate/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/circular-progress-indicator/indeterminate/BlazorClientApp.csproj +++ b/samples/inputs/circular-progress-indicator/indeterminate/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/circular-progress-indicator/simple/BlazorClientApp.csproj b/samples/inputs/circular-progress-indicator/simple/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/circular-progress-indicator/simple/BlazorClientApp.csproj +++ b/samples/inputs/circular-progress-indicator/simple/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/circular-progress-indicator/styling/BlazorClientApp.csproj b/samples/inputs/circular-progress-indicator/styling/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/circular-progress-indicator/styling/BlazorClientApp.csproj +++ b/samples/inputs/circular-progress-indicator/styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/color-editor/overview/App.razor b/samples/inputs/color-editor/overview/App.razor new file mode 100644 index 0000000000..c5b92d01c8 --- /dev/null +++ b/samples/inputs/color-editor/overview/App.razor @@ -0,0 +1,23 @@ +@using IgniteUI.Blazor.Controls + +
+
+ + + +
+
+ +@code { + + protected override async Task OnAfterRenderAsync(bool firstRender) + { + var colorEditor = this.colorEditor; + + } + + private IgbColorEditor colorEditor; + +} \ No newline at end of file diff --git a/samples/inputs/color-editor/overview/BlazorClientApp.csproj b/samples/inputs/color-editor/overview/BlazorClientApp.csproj new file mode 100644 index 0000000000..5ad0404ecd --- /dev/null +++ b/samples/inputs/color-editor/overview/BlazorClientApp.csproj @@ -0,0 +1,21 @@ + + + + net9.0 + 3.0 + Infragistics.Samples + Infragistics.Samples + + + + 1701;1702,IDE0028,BL0005,0219,CS1998 + + + + + + + + + + diff --git a/samples/inputs/color-editor/overview/BlazorClientApp.sln b/samples/inputs/color-editor/overview/BlazorClientApp.sln new file mode 100644 index 0000000000..1e2eda208a --- /dev/null +++ b/samples/inputs/color-editor/overview/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/inputs/color-editor/overview/Program.cs b/samples/inputs/color-editor/overview/Program.cs new file mode 100644 index 0000000000..2f7cfcdb9a --- /dev/null +++ b/samples/inputs/color-editor/overview/Program.cs @@ -0,0 +1,28 @@ +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(IgbColorEditorModule) + ); + await builder.Build().RunAsync(); + } + } +} diff --git a/samples/inputs/color-editor/overview/Properties/launchSettings.json b/samples/inputs/color-editor/overview/Properties/launchSettings.json new file mode 100644 index 0000000000..18bd6fb5bc --- /dev/null +++ b/samples/inputs/color-editor/overview/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/inputs/color-editor/overview/ReadMe.md b/samples/inputs/color-editor/overview/ReadMe.md new file mode 100644 index 0000000000..3512f5596b --- /dev/null +++ b/samples/inputs/color-editor/overview/ReadMe.md @@ -0,0 +1,70 @@ + + + +This folder contains implementation of Blazor application with example of Overview feature using [Color Editor](https://www.infragistics.com/products/ignite-ui-blazor/blazor/components/general-getting-started.html) component. + + + + + + + View Docs + + + View Code + + + Run Sample + + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-blazor-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-blazor-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Setup + +- instal **.NET SDK** from this [website](https://dotnet.microsoft.com/learn/aspnet/blazor-tutorial/install) + +## Running App in Visual Studio 2019 + +NOTE: VS 2019 has better code highlighting and error detection than VS Code does. + +- open **Visual Studio 2019** as an administrator + +- open the **BlazorClientApp.sln** solution + +- right click solution and select **Restore NuGet Packages** menu item + +- click **Debug** menu and select **Start Debugging** or press **F5** key + + +## Running App in VS Code + +- open **VS Code** as an administrator + +- open this folder in **VS Code** + +- open a terminal window + +- to restore assemblies, run this command: +```dotnet restore``` + +- to run samples, run this command: +```dotnet watch run``` + +- wait for for message: +**Now listening on: http://localhost:4200** + +- open **http://localhost:4200** in your browser + + +## Resources + +- [Razor Component Models](https://www.codemag.com/article/1911052) +- [Razor Syntax](https://docs.microsoft.com/en-us/aspnet/core/blazor/components/?view=aspnetcore-3.1#razor-syntax) +- [Getting reference to components](https://docs.microsoft.com/en-us/aspnet/core/blazor/components/?view=aspnetcore-3.1#capture-references-to-components) diff --git a/samples/inputs/color-editor/overview/_Imports.razor b/samples/inputs/color-editor/overview/_Imports.razor new file mode 100644 index 0000000000..d27d337cb1 --- /dev/null +++ b/samples/inputs/color-editor/overview/_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/inputs/color-editor/overview/wwwroot/index.css b/samples/inputs/color-editor/overview/wwwroot/index.css new file mode 100644 index 0000000000..50ca13caa6 --- /dev/null +++ b/samples/inputs/color-editor/overview/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/inputs/color-editor/overview/wwwroot/index.html b/samples/inputs/color-editor/overview/wwwroot/index.html new file mode 100644 index 0000000000..8833030d8e --- /dev/null +++ b/samples/inputs/color-editor/overview/wwwroot/index.html @@ -0,0 +1,30 @@ + + + + + + + + + + Samples | IgniteUI for Blazor | Infragistics + + + + + + + + + +
+ An unhandled error has occurred. + Reload + 🗙 +
+ + + + + + diff --git a/samples/inputs/combo/features/BlazorClientApp.csproj b/samples/inputs/combo/features/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/combo/features/BlazorClientApp.csproj +++ b/samples/inputs/combo/features/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/combo/overview/BlazorClientApp.csproj b/samples/inputs/combo/overview/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/combo/overview/BlazorClientApp.csproj +++ b/samples/inputs/combo/overview/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/combo/selection/BlazorClientApp.csproj b/samples/inputs/combo/selection/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/combo/selection/BlazorClientApp.csproj +++ b/samples/inputs/combo/selection/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/combo/simplified/BlazorClientApp.csproj b/samples/inputs/combo/simplified/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/combo/simplified/BlazorClientApp.csproj +++ b/samples/inputs/combo/simplified/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/combo/styling/BlazorClientApp.csproj b/samples/inputs/combo/styling/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/combo/styling/BlazorClientApp.csproj +++ b/samples/inputs/combo/styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/combo/templates/BlazorClientApp.csproj b/samples/inputs/combo/templates/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/combo/templates/BlazorClientApp.csproj +++ b/samples/inputs/combo/templates/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 b569bd7751..84bd298d83 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 @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 @@ -10,10 +10,10 @@
- - - - + + + +
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 b569bd7751..84bd298d83 100644 --- a/samples/inputs/date-time-input/min-max-value/BlazorClientApp.csproj +++ b/samples/inputs/date-time-input/min-max-value/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 @@ -10,10 +10,10 @@ - - - - + + + + diff --git a/samples/inputs/date-time-input/overview/BlazorClientApp.csproj b/samples/inputs/date-time-input/overview/BlazorClientApp.csproj index b569bd7751..84bd298d83 100644 --- a/samples/inputs/date-time-input/overview/BlazorClientApp.csproj +++ b/samples/inputs/date-time-input/overview/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 @@ -10,10 +10,10 @@ - - - - + + + + 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 b569bd7751..84bd298d83 100644 --- a/samples/inputs/date-time-input/step-up-down/BlazorClientApp.csproj +++ b/samples/inputs/date-time-input/step-up-down/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 @@ -10,10 +10,10 @@ - - - - + + + + diff --git a/samples/inputs/dropdown/group/BlazorClientApp.csproj b/samples/inputs/dropdown/group/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/dropdown/group/BlazorClientApp.csproj +++ b/samples/inputs/dropdown/group/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/dropdown/header/BlazorClientApp.csproj b/samples/inputs/dropdown/header/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/dropdown/header/BlazorClientApp.csproj +++ b/samples/inputs/dropdown/header/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/dropdown/item/BlazorClientApp.csproj b/samples/inputs/dropdown/item/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/dropdown/item/BlazorClientApp.csproj +++ b/samples/inputs/dropdown/item/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/dropdown/overview/BlazorClientApp.csproj b/samples/inputs/dropdown/overview/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/dropdown/overview/BlazorClientApp.csproj +++ b/samples/inputs/dropdown/overview/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/dropdown/position/BlazorClientApp.csproj b/samples/inputs/dropdown/position/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/dropdown/position/BlazorClientApp.csproj +++ b/samples/inputs/dropdown/position/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/dropdown/styling/BlazorClientApp.csproj b/samples/inputs/dropdown/styling/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/dropdown/styling/BlazorClientApp.csproj +++ b/samples/inputs/dropdown/styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/dropdown/target/BlazorClientApp.csproj b/samples/inputs/dropdown/target/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/dropdown/target/BlazorClientApp.csproj +++ b/samples/inputs/dropdown/target/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/icon-button/size/BlazorClientApp.csproj b/samples/inputs/icon-button/size/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/icon-button/size/BlazorClientApp.csproj +++ b/samples/inputs/icon-button/size/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/icon-button/styling/BlazorClientApp.csproj b/samples/inputs/icon-button/styling/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/icon-button/styling/BlazorClientApp.csproj +++ b/samples/inputs/icon-button/styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/icon-button/variant/BlazorClientApp.csproj b/samples/inputs/icon-button/variant/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/icon-button/variant/BlazorClientApp.csproj +++ b/samples/inputs/icon-button/variant/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/input/binding/BlazorClientApp.csproj b/samples/inputs/input/binding/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/input/binding/BlazorClientApp.csproj +++ b/samples/inputs/input/binding/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/input/helper-text/BlazorClientApp.csproj b/samples/inputs/input/helper-text/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/input/helper-text/BlazorClientApp.csproj +++ b/samples/inputs/input/helper-text/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/input/overview/BlazorClientApp.csproj b/samples/inputs/input/overview/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/input/overview/BlazorClientApp.csproj +++ b/samples/inputs/input/overview/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/input/prefix-suffix/BlazorClientApp.csproj b/samples/inputs/input/prefix-suffix/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/input/prefix-suffix/BlazorClientApp.csproj +++ b/samples/inputs/input/prefix-suffix/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/input/size/BlazorClientApp.csproj b/samples/inputs/input/size/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/input/size/BlazorClientApp.csproj +++ b/samples/inputs/input/size/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/input/styling/BlazorClientApp.csproj b/samples/inputs/input/styling/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/input/styling/BlazorClientApp.csproj +++ b/samples/inputs/input/styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/linear-progress-indicator/dynamic/BlazorClientApp.csproj b/samples/inputs/linear-progress-indicator/dynamic/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/linear-progress-indicator/dynamic/BlazorClientApp.csproj +++ b/samples/inputs/linear-progress-indicator/dynamic/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/linear-progress-indicator/simple/BlazorClientApp.csproj b/samples/inputs/linear-progress-indicator/simple/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/linear-progress-indicator/simple/BlazorClientApp.csproj +++ b/samples/inputs/linear-progress-indicator/simple/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/linear-progress-indicator/striped/BlazorClientApp.csproj b/samples/inputs/linear-progress-indicator/striped/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/linear-progress-indicator/striped/BlazorClientApp.csproj +++ b/samples/inputs/linear-progress-indicator/striped/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/linear-progress-indicator/styling/BlazorClientApp.csproj b/samples/inputs/linear-progress-indicator/styling/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/linear-progress-indicator/styling/BlazorClientApp.csproj +++ b/samples/inputs/linear-progress-indicator/styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/linear-progress-indicator/types/BlazorClientApp.csproj b/samples/inputs/linear-progress-indicator/types/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/linear-progress-indicator/types/BlazorClientApp.csproj +++ b/samples/inputs/linear-progress-indicator/types/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/radio/alignment/BlazorClientApp.csproj b/samples/inputs/radio/alignment/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/radio/alignment/BlazorClientApp.csproj +++ b/samples/inputs/radio/alignment/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/radio/disabled/BlazorClientApp.csproj b/samples/inputs/radio/disabled/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/radio/disabled/BlazorClientApp.csproj +++ b/samples/inputs/radio/disabled/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/radio/group/BlazorClientApp.csproj b/samples/inputs/radio/group/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/radio/group/BlazorClientApp.csproj +++ b/samples/inputs/radio/group/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/radio/invalid/BlazorClientApp.csproj b/samples/inputs/radio/invalid/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/radio/invalid/BlazorClientApp.csproj +++ b/samples/inputs/radio/invalid/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/radio/label/BlazorClientApp.csproj b/samples/inputs/radio/label/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/radio/label/BlazorClientApp.csproj +++ b/samples/inputs/radio/label/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/radio/styling/BlazorClientApp.csproj b/samples/inputs/radio/styling/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/radio/styling/BlazorClientApp.csproj +++ b/samples/inputs/radio/styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/rating/basic/BlazorClientApp.csproj b/samples/inputs/rating/basic/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/rating/basic/BlazorClientApp.csproj +++ b/samples/inputs/rating/basic/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/rating/custom/BlazorClientApp.csproj b/samples/inputs/rating/custom/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/rating/custom/BlazorClientApp.csproj +++ b/samples/inputs/rating/custom/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/rating/empty/BlazorClientApp.csproj b/samples/inputs/rating/empty/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/rating/empty/BlazorClientApp.csproj +++ b/samples/inputs/rating/empty/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/rating/single-selection/BlazorClientApp.csproj b/samples/inputs/rating/single-selection/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/rating/single-selection/BlazorClientApp.csproj +++ b/samples/inputs/rating/single-selection/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/rating/styling/BlazorClientApp.csproj b/samples/inputs/rating/styling/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/rating/styling/BlazorClientApp.csproj +++ b/samples/inputs/rating/styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/ripple/button/BlazorClientApp.csproj b/samples/inputs/ripple/button/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/ripple/button/BlazorClientApp.csproj +++ b/samples/inputs/ripple/button/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/ripple/color/BlazorClientApp.csproj b/samples/inputs/ripple/color/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/ripple/color/BlazorClientApp.csproj +++ b/samples/inputs/ripple/color/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/select/group/BlazorClientApp.csproj b/samples/inputs/select/group/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/select/group/BlazorClientApp.csproj +++ b/samples/inputs/select/group/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/select/header/BlazorClientApp.csproj b/samples/inputs/select/header/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/select/header/BlazorClientApp.csproj +++ b/samples/inputs/select/header/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/select/item/BlazorClientApp.csproj b/samples/inputs/select/item/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/select/item/BlazorClientApp.csproj +++ b/samples/inputs/select/item/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/select/overview/BlazorClientApp.csproj b/samples/inputs/select/overview/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/select/overview/BlazorClientApp.csproj +++ b/samples/inputs/select/overview/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/select/styling/BlazorClientApp.csproj b/samples/inputs/select/styling/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/select/styling/BlazorClientApp.csproj +++ b/samples/inputs/select/styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/slider/constraints/BlazorClientApp.csproj b/samples/inputs/slider/constraints/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/slider/constraints/BlazorClientApp.csproj +++ b/samples/inputs/slider/constraints/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/slider/disabled/BlazorClientApp.csproj b/samples/inputs/slider/disabled/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/slider/disabled/BlazorClientApp.csproj +++ b/samples/inputs/slider/disabled/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/slider/discrete/BlazorClientApp.csproj b/samples/inputs/slider/discrete/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/slider/discrete/BlazorClientApp.csproj +++ b/samples/inputs/slider/discrete/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/slider/labels/BlazorClientApp.csproj b/samples/inputs/slider/labels/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/slider/labels/BlazorClientApp.csproj +++ b/samples/inputs/slider/labels/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/slider/overview/BlazorClientApp.csproj b/samples/inputs/slider/overview/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/slider/overview/BlazorClientApp.csproj +++ b/samples/inputs/slider/overview/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/slider/styling/BlazorClientApp.csproj b/samples/inputs/slider/styling/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/slider/styling/BlazorClientApp.csproj +++ b/samples/inputs/slider/styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/slider/tick-labels/BlazorClientApp.csproj b/samples/inputs/slider/tick-labels/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/slider/tick-labels/BlazorClientApp.csproj +++ b/samples/inputs/slider/tick-labels/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/slider/ticks/BlazorClientApp.csproj b/samples/inputs/slider/ticks/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/slider/ticks/BlazorClientApp.csproj +++ b/samples/inputs/slider/ticks/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/slider/value-format/BlazorClientApp.csproj b/samples/inputs/slider/value-format/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/slider/value-format/BlazorClientApp.csproj +++ b/samples/inputs/slider/value-format/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/slider/value/BlazorClientApp.csproj b/samples/inputs/slider/value/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/slider/value/BlazorClientApp.csproj +++ b/samples/inputs/slider/value/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/switches/checking/BlazorClientApp.csproj b/samples/inputs/switches/checking/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/switches/checking/BlazorClientApp.csproj +++ b/samples/inputs/switches/checking/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/switches/disabled/BlazorClientApp.csproj b/samples/inputs/switches/disabled/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/switches/disabled/BlazorClientApp.csproj +++ b/samples/inputs/switches/disabled/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/switches/label/BlazorClientApp.csproj b/samples/inputs/switches/label/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/switches/label/BlazorClientApp.csproj +++ b/samples/inputs/switches/label/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/switches/overview/BlazorClientApp.csproj b/samples/inputs/switches/overview/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/switches/overview/BlazorClientApp.csproj +++ b/samples/inputs/switches/overview/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/textarea/form-integration/BlazorClientApp.csproj b/samples/inputs/textarea/form-integration/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/textarea/form-integration/BlazorClientApp.csproj +++ b/samples/inputs/textarea/form-integration/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/textarea/overview/BlazorClientApp.csproj b/samples/inputs/textarea/overview/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/textarea/overview/BlazorClientApp.csproj +++ b/samples/inputs/textarea/overview/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/textarea/resize/BlazorClientApp.csproj b/samples/inputs/textarea/resize/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/textarea/resize/BlazorClientApp.csproj +++ b/samples/inputs/textarea/resize/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/textarea/slots/BlazorClientApp.csproj b/samples/inputs/textarea/slots/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/textarea/slots/BlazorClientApp.csproj +++ b/samples/inputs/textarea/slots/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/inputs/textarea/styling/BlazorClientApp.csproj b/samples/inputs/textarea/styling/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/inputs/textarea/styling/BlazorClientApp.csproj +++ b/samples/inputs/textarea/styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/layouts/accordion/customization/BlazorClientApp.csproj b/samples/layouts/accordion/customization/BlazorClientApp.csproj index b569bd7751..84bd298d83 100644 --- a/samples/layouts/accordion/customization/BlazorClientApp.csproj +++ b/samples/layouts/accordion/customization/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 @@ -10,10 +10,10 @@ - - - - + + + + diff --git a/samples/layouts/accordion/nested-scenario/BlazorClientApp.csproj b/samples/layouts/accordion/nested-scenario/BlazorClientApp.csproj index b569bd7751..84bd298d83 100644 --- a/samples/layouts/accordion/nested-scenario/BlazorClientApp.csproj +++ b/samples/layouts/accordion/nested-scenario/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 @@ -10,10 +10,10 @@ - - - - + + + + diff --git a/samples/layouts/accordion/overview/BlazorClientApp.csproj b/samples/layouts/accordion/overview/BlazorClientApp.csproj index b569bd7751..84bd298d83 100644 --- a/samples/layouts/accordion/overview/BlazorClientApp.csproj +++ b/samples/layouts/accordion/overview/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 @@ -10,10 +10,10 @@ - - - - + + + + diff --git a/samples/layouts/avatar/icon/BlazorClientApp.csproj b/samples/layouts/avatar/icon/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/layouts/avatar/icon/BlazorClientApp.csproj +++ b/samples/layouts/avatar/icon/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/layouts/avatar/image/BlazorClientApp.csproj b/samples/layouts/avatar/image/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/layouts/avatar/image/BlazorClientApp.csproj +++ b/samples/layouts/avatar/image/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/layouts/avatar/initials/BlazorClientApp.csproj b/samples/layouts/avatar/initials/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/layouts/avatar/initials/BlazorClientApp.csproj +++ b/samples/layouts/avatar/initials/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/layouts/avatar/shape/BlazorClientApp.csproj b/samples/layouts/avatar/shape/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/layouts/avatar/shape/BlazorClientApp.csproj +++ b/samples/layouts/avatar/shape/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/layouts/avatar/size/BlazorClientApp.csproj b/samples/layouts/avatar/size/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/layouts/avatar/size/BlazorClientApp.csproj +++ b/samples/layouts/avatar/size/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/layouts/card/horizontal/BlazorClientApp.csproj b/samples/layouts/card/horizontal/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/layouts/card/horizontal/BlazorClientApp.csproj +++ b/samples/layouts/card/horizontal/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/layouts/card/overview/BlazorClientApp.csproj b/samples/layouts/card/overview/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/layouts/card/overview/BlazorClientApp.csproj +++ b/samples/layouts/card/overview/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/layouts/card/semi-horizontal/BlazorClientApp.csproj b/samples/layouts/card/semi-horizontal/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/layouts/card/semi-horizontal/BlazorClientApp.csproj +++ b/samples/layouts/card/semi-horizontal/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/layouts/card/styling/BlazorClientApp.csproj b/samples/layouts/card/styling/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/layouts/card/styling/BlazorClientApp.csproj +++ b/samples/layouts/card/styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/layouts/carousel/animations/BlazorClientApp.csproj b/samples/layouts/carousel/animations/BlazorClientApp.csproj index 49433e8e54..2a69eadf70 100644 --- a/samples/layouts/carousel/animations/BlazorClientApp.csproj +++ b/samples/layouts/carousel/animations/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -19,10 +19,10 @@ - - - - + + + + diff --git a/samples/layouts/carousel/components/BlazorClientApp.csproj b/samples/layouts/carousel/components/BlazorClientApp.csproj index 49433e8e54..2a69eadf70 100644 --- a/samples/layouts/carousel/components/BlazorClientApp.csproj +++ b/samples/layouts/carousel/components/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -19,10 +19,10 @@ - - - - + + + + diff --git a/samples/layouts/carousel/overview/BlazorClientApp.csproj b/samples/layouts/carousel/overview/BlazorClientApp.csproj index 49433e8e54..2a69eadf70 100644 --- a/samples/layouts/carousel/overview/BlazorClientApp.csproj +++ b/samples/layouts/carousel/overview/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -19,10 +19,10 @@ - - - - + + + + diff --git a/samples/layouts/carousel/thumbnail/BlazorClientApp.csproj b/samples/layouts/carousel/thumbnail/BlazorClientApp.csproj index 49433e8e54..2a69eadf70 100644 --- a/samples/layouts/carousel/thumbnail/BlazorClientApp.csproj +++ b/samples/layouts/carousel/thumbnail/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -19,10 +19,10 @@ - - - - + + + + diff --git a/samples/layouts/divider/dashed/BlazorClientApp.csproj b/samples/layouts/divider/dashed/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/layouts/divider/dashed/BlazorClientApp.csproj +++ b/samples/layouts/divider/dashed/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/layouts/divider/dashed/README.md b/samples/layouts/divider/dashed/README.md index 41c6f0616a..767447bee4 100644 --- a/samples/layouts/divider/dashed/README.md +++ b/samples/layouts/divider/dashed/README.md @@ -1,7 +1,7 @@ -This folder contains implementation of Blazor application with example of Sizing feature using [Icon](https://www.infragistics.com/products/ignite-ui-blazor/blazor/components/general-getting-started.html) component. +This folder contains implementation of Blazor application with example of Dashed feature using [Divider](https://www.infragistics.com/products/ignite-ui-blazor/blazor/components/general-getting-started.html) component. @@ -13,10 +13,10 @@ This folder contains implementation of Blazor application with example of Sizing View Code - + Run Sample - diff --git a/samples/layouts/divider/middle/BlazorClientApp.csproj b/samples/layouts/divider/middle/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/layouts/divider/middle/BlazorClientApp.csproj +++ b/samples/layouts/divider/middle/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/layouts/divider/middle/README.md b/samples/layouts/divider/middle/README.md index 41c6f0616a..bdb5125d7d 100644 --- a/samples/layouts/divider/middle/README.md +++ b/samples/layouts/divider/middle/README.md @@ -1,7 +1,7 @@ -This folder contains implementation of Blazor application with example of Sizing feature using [Icon](https://www.infragistics.com/products/ignite-ui-blazor/blazor/components/general-getting-started.html) component. +This folder contains implementation of Blazor application with example of Middle feature using [Divider](https://www.infragistics.com/products/ignite-ui-blazor/blazor/components/general-getting-started.html) component. @@ -13,10 +13,10 @@ This folder contains implementation of Blazor application with example of Sizing View Code - + Run Sample - diff --git a/samples/layouts/divider/overview/BlazorClientApp.csproj b/samples/layouts/divider/overview/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/layouts/divider/overview/BlazorClientApp.csproj +++ b/samples/layouts/divider/overview/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/layouts/divider/select/BlazorClientApp.csproj b/samples/layouts/divider/select/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/layouts/divider/select/BlazorClientApp.csproj +++ b/samples/layouts/divider/select/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/layouts/divider/select/README.md b/samples/layouts/divider/select/README.md index 41c6f0616a..933b3e47e3 100644 --- a/samples/layouts/divider/select/README.md +++ b/samples/layouts/divider/select/README.md @@ -1,7 +1,7 @@ -This folder contains implementation of Blazor application with example of Sizing feature using [Icon](https://www.infragistics.com/products/ignite-ui-blazor/blazor/components/general-getting-started.html) component. +This folder contains implementation of Blazor application with example of Select feature using [Divider](https://www.infragistics.com/products/ignite-ui-blazor/blazor/components/general-getting-started.html) component. @@ -13,10 +13,10 @@ This folder contains implementation of Blazor application with example of Sizing View Code - + Run Sample - diff --git a/samples/layouts/divider/vertical/BlazorClientApp.csproj b/samples/layouts/divider/vertical/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/layouts/divider/vertical/BlazorClientApp.csproj +++ b/samples/layouts/divider/vertical/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/layouts/divider/vertical/README.md b/samples/layouts/divider/vertical/README.md index 41c6f0616a..5399fa9144 100644 --- a/samples/layouts/divider/vertical/README.md +++ b/samples/layouts/divider/vertical/README.md @@ -1,7 +1,7 @@ -This folder contains implementation of Blazor application with example of Sizing feature using [Icon](https://www.infragistics.com/products/ignite-ui-blazor/blazor/components/general-getting-started.html) component. +This folder contains implementation of Blazor application with example of Vertical feature using [Divider](https://www.infragistics.com/products/ignite-ui-blazor/blazor/components/general-getting-started.html) component. @@ -13,10 +13,10 @@ This folder contains implementation of Blazor application with example of Sizing View Code - + Run Sample - diff --git a/samples/layouts/dock-manager/customize-buttons/BlazorClientApp.csproj b/samples/layouts/dock-manager/customize-buttons/BlazorClientApp.csproj index a1f4067a04..941d00db24 100644 --- a/samples/layouts/dock-manager/customize-buttons/BlazorClientApp.csproj +++ b/samples/layouts/dock-manager/customize-buttons/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,11 +12,11 @@ - + - - - + + + diff --git a/samples/layouts/dock-manager/embedding-frames/BlazorClientApp.csproj b/samples/layouts/dock-manager/embedding-frames/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/layouts/dock-manager/embedding-frames/BlazorClientApp.csproj +++ b/samples/layouts/dock-manager/embedding-frames/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/layouts/dock-manager/overview/BlazorClientApp.csproj b/samples/layouts/dock-manager/overview/BlazorClientApp.csproj index a1f4067a04..941d00db24 100644 --- a/samples/layouts/dock-manager/overview/BlazorClientApp.csproj +++ b/samples/layouts/dock-manager/overview/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,11 +12,11 @@ - + - - - + + + diff --git a/samples/layouts/dock-manager/styling/BlazorClientApp.csproj b/samples/layouts/dock-manager/styling/BlazorClientApp.csproj index a1f4067a04..941d00db24 100644 --- a/samples/layouts/dock-manager/styling/BlazorClientApp.csproj +++ b/samples/layouts/dock-manager/styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,11 +12,11 @@ - + - - - + + + diff --git a/samples/layouts/dock-manager/updating-panes/BlazorClientApp.csproj b/samples/layouts/dock-manager/updating-panes/BlazorClientApp.csproj index 442609d6f2..f7de08cc50 100644 --- a/samples/layouts/dock-manager/updating-panes/BlazorClientApp.csproj +++ b/samples/layouts/dock-manager/updating-panes/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -19,10 +19,10 @@ - - - - + + + + diff --git a/samples/layouts/expansion-panel/component-customization/BlazorClientApp.csproj b/samples/layouts/expansion-panel/component-customization/BlazorClientApp.csproj index b569bd7751..84bd298d83 100644 --- a/samples/layouts/expansion-panel/component-customization/BlazorClientApp.csproj +++ b/samples/layouts/expansion-panel/component-customization/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 @@ -10,10 +10,10 @@ - - - - + + + + diff --git a/samples/layouts/expansion-panel/properties-and-events/BlazorClientApp.csproj b/samples/layouts/expansion-panel/properties-and-events/BlazorClientApp.csproj index b569bd7751..84bd298d83 100644 --- a/samples/layouts/expansion-panel/properties-and-events/BlazorClientApp.csproj +++ b/samples/layouts/expansion-panel/properties-and-events/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 @@ -10,10 +10,10 @@ - - - - + + + + diff --git a/samples/layouts/expansion-panel/styling/BlazorClientApp.csproj b/samples/layouts/expansion-panel/styling/BlazorClientApp.csproj index b569bd7751..84bd298d83 100644 --- a/samples/layouts/expansion-panel/styling/BlazorClientApp.csproj +++ b/samples/layouts/expansion-panel/styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 @@ -10,10 +10,10 @@ - - - - + + + + diff --git a/samples/layouts/expansion-panel/usage/BlazorClientApp.csproj b/samples/layouts/expansion-panel/usage/BlazorClientApp.csproj index b569bd7751..84bd298d83 100644 --- a/samples/layouts/expansion-panel/usage/BlazorClientApp.csproj +++ b/samples/layouts/expansion-panel/usage/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 @@ -10,10 +10,10 @@ - - - - + + + + diff --git a/samples/layouts/icon/sizing/BlazorClientApp.csproj b/samples/layouts/icon/sizing/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/layouts/icon/sizing/BlazorClientApp.csproj +++ b/samples/layouts/icon/sizing/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/layouts/icon/styling/BlazorClientApp.csproj b/samples/layouts/icon/styling/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/layouts/icon/styling/BlazorClientApp.csproj +++ b/samples/layouts/icon/styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/layouts/stepper/animations/BlazorClientApp.csproj b/samples/layouts/stepper/animations/BlazorClientApp.csproj index d529a3945a..98ddfe0d1b 100644 --- a/samples/layouts/stepper/animations/BlazorClientApp.csproj +++ b/samples/layouts/stepper/animations/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/layouts/stepper/linear/BlazorClientApp.csproj b/samples/layouts/stepper/linear/BlazorClientApp.csproj index ce0209c72d..6e0608918b 100644 --- a/samples/layouts/stepper/linear/BlazorClientApp.csproj +++ b/samples/layouts/stepper/linear/BlazorClientApp.csproj @@ -12,11 +12,11 @@ - - + + - - + + diff --git a/samples/layouts/stepper/orientation/BlazorClientApp.csproj b/samples/layouts/stepper/orientation/BlazorClientApp.csproj index ce0209c72d..6e0608918b 100644 --- a/samples/layouts/stepper/orientation/BlazorClientApp.csproj +++ b/samples/layouts/stepper/orientation/BlazorClientApp.csproj @@ -12,11 +12,11 @@ - - + + - - + + diff --git a/samples/layouts/stepper/overview/BlazorClientApp.csproj b/samples/layouts/stepper/overview/BlazorClientApp.csproj index ce0209c72d..6e0608918b 100644 --- a/samples/layouts/stepper/overview/BlazorClientApp.csproj +++ b/samples/layouts/stepper/overview/BlazorClientApp.csproj @@ -12,11 +12,11 @@ - - + + - - + + diff --git a/samples/layouts/stepper/steptypes/BlazorClientApp.csproj b/samples/layouts/stepper/steptypes/BlazorClientApp.csproj index ce0209c72d..6e0608918b 100644 --- a/samples/layouts/stepper/steptypes/BlazorClientApp.csproj +++ b/samples/layouts/stepper/steptypes/BlazorClientApp.csproj @@ -12,11 +12,11 @@ - - + + - - + + diff --git a/samples/layouts/tabs/alignment/BlazorClientApp.csproj b/samples/layouts/tabs/alignment/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/layouts/tabs/alignment/BlazorClientApp.csproj +++ b/samples/layouts/tabs/alignment/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/layouts/tabs/overview/BlazorClientApp.csproj b/samples/layouts/tabs/overview/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/layouts/tabs/overview/BlazorClientApp.csproj +++ b/samples/layouts/tabs/overview/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/layouts/tabs/prefix-suffix/BlazorClientApp.csproj b/samples/layouts/tabs/prefix-suffix/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/layouts/tabs/prefix-suffix/BlazorClientApp.csproj +++ b/samples/layouts/tabs/prefix-suffix/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/layouts/tabs/scrolling/BlazorClientApp.csproj b/samples/layouts/tabs/scrolling/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/layouts/tabs/scrolling/BlazorClientApp.csproj +++ b/samples/layouts/tabs/scrolling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/maps/geo-map/binding-data-csv/BlazorClientApp.csproj b/samples/maps/geo-map/binding-data-csv/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/maps/geo-map/binding-data-csv/BlazorClientApp.csproj +++ b/samples/maps/geo-map/binding-data-csv/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 22b31263ac..9b3160fb91 100644 --- a/samples/maps/geo-map/binding-data-json-points/BlazorClientApp.csproj +++ b/samples/maps/geo-map/binding-data-json-points/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/maps/geo-map/binding-data-model/BlazorClientApp.csproj b/samples/maps/geo-map/binding-data-model/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/maps/geo-map/binding-data-model/BlazorClientApp.csproj +++ b/samples/maps/geo-map/binding-data-model/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/maps/geo-map/binding-multiple-shapes/BlazorClientApp.csproj b/samples/maps/geo-map/binding-multiple-shapes/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/BlazorClientApp.csproj +++ b/samples/maps/geo-map/binding-multiple-shapes/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/maps/geo-map/binding-multiple-sources/BlazorClientApp.csproj b/samples/maps/geo-map/binding-multiple-sources/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/maps/geo-map/binding-multiple-sources/BlazorClientApp.csproj +++ b/samples/maps/geo-map/binding-multiple-sources/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/maps/geo-map/binding-shp-points/BlazorClientApp.csproj b/samples/maps/geo-map/binding-shp-points/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/maps/geo-map/binding-shp-points/BlazorClientApp.csproj +++ b/samples/maps/geo-map/binding-shp-points/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/maps/geo-map/binding-shp-polygons/BlazorClientApp.csproj b/samples/maps/geo-map/binding-shp-polygons/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/maps/geo-map/binding-shp-polygons/BlazorClientApp.csproj +++ b/samples/maps/geo-map/binding-shp-polygons/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/maps/geo-map/binding-shp-polylines/BlazorClientApp.csproj b/samples/maps/geo-map/binding-shp-polylines/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/maps/geo-map/binding-shp-polylines/BlazorClientApp.csproj +++ b/samples/maps/geo-map/binding-shp-polylines/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/maps/geo-map/custom-tooltips/BlazorClientApp.csproj b/samples/maps/geo-map/custom-tooltips/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/maps/geo-map/custom-tooltips/BlazorClientApp.csproj +++ b/samples/maps/geo-map/custom-tooltips/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/maps/geo-map/display-all-imagery/BlazorClientApp.csproj b/samples/maps/geo-map/display-all-imagery/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/maps/geo-map/display-all-imagery/BlazorClientApp.csproj +++ b/samples/maps/geo-map/display-all-imagery/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/maps/geo-map/display-bing-imagery/BlazorClientApp.csproj b/samples/maps/geo-map/display-bing-imagery/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/maps/geo-map/display-bing-imagery/BlazorClientApp.csproj +++ b/samples/maps/geo-map/display-bing-imagery/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/maps/geo-map/display-esri-imagery/BlazorClientApp.csproj b/samples/maps/geo-map/display-esri-imagery/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/maps/geo-map/display-esri-imagery/BlazorClientApp.csproj +++ b/samples/maps/geo-map/display-esri-imagery/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/maps/geo-map/display-heat-imagery/BlazorClientApp.csproj b/samples/maps/geo-map/display-heat-imagery/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/maps/geo-map/display-heat-imagery/BlazorClientApp.csproj +++ b/samples/maps/geo-map/display-heat-imagery/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/maps/geo-map/display-osm-imagery/BlazorClientApp.csproj b/samples/maps/geo-map/display-osm-imagery/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/maps/geo-map/display-osm-imagery/BlazorClientApp.csproj +++ b/samples/maps/geo-map/display-osm-imagery/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/maps/geo-map/marker-template/BlazorClientApp.csproj b/samples/maps/geo-map/marker-template/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/maps/geo-map/marker-template/BlazorClientApp.csproj +++ b/samples/maps/geo-map/marker-template/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/maps/geo-map/marker-type/BlazorClientApp.csproj b/samples/maps/geo-map/marker-type/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/maps/geo-map/marker-type/BlazorClientApp.csproj +++ b/samples/maps/geo-map/marker-type/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/maps/geo-map/navigation/BlazorClientApp.csproj b/samples/maps/geo-map/navigation/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/maps/geo-map/navigation/BlazorClientApp.csproj +++ b/samples/maps/geo-map/navigation/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/maps/geo-map/overview/BlazorClientApp.csproj b/samples/maps/geo-map/overview/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/maps/geo-map/overview/BlazorClientApp.csproj +++ b/samples/maps/geo-map/overview/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/maps/geo-map/shape-styling/BlazorClientApp.csproj b/samples/maps/geo-map/shape-styling/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/maps/geo-map/shape-styling/BlazorClientApp.csproj +++ b/samples/maps/geo-map/shape-styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/maps/geo-map/synchronization/BlazorClientApp.csproj b/samples/maps/geo-map/synchronization/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/maps/geo-map/synchronization/BlazorClientApp.csproj +++ b/samples/maps/geo-map/synchronization/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/maps/geo-map/type-scatter-area-series/BlazorClientApp.csproj +++ b/samples/maps/geo-map/type-scatter-area-series/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 22b31263ac..9b3160fb91 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/BlazorClientApp.csproj +++ b/samples/maps/geo-map/type-scatter-bubble-series/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 22b31263ac..9b3160fb91 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/BlazorClientApp.csproj +++ b/samples/maps/geo-map/type-scatter-contour-series/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 c8a13963f1..5ad0404ecd 100644 --- a/samples/maps/geo-map/type-scatter-density-series/BlazorClientApp.csproj +++ b/samples/maps/geo-map/type-scatter-density-series/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 22b31263ac..9b3160fb91 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/BlazorClientApp.csproj +++ b/samples/maps/geo-map/type-scatter-symbol-series/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 22b31263ac..9b3160fb91 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/BlazorClientApp.csproj +++ b/samples/maps/geo-map/type-shape-polygon-series/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + 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 22b31263ac..9b3160fb91 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/BlazorClientApp.csproj +++ b/samples/maps/geo-map/type-shape-polyline-series/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/menus/nav-bar/overview/BlazorClientApp.csproj b/samples/menus/nav-bar/overview/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/menus/nav-bar/overview/BlazorClientApp.csproj +++ b/samples/menus/nav-bar/overview/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/menus/nav-bar/styling/BlazorClientApp.csproj b/samples/menus/nav-bar/styling/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/menus/nav-bar/styling/BlazorClientApp.csproj +++ b/samples/menus/nav-bar/styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/menus/nav-drawer/add-drawer-items/BlazorClientApp.csproj b/samples/menus/nav-drawer/add-drawer-items/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/menus/nav-drawer/add-drawer-items/BlazorClientApp.csproj +++ b/samples/menus/nav-drawer/add-drawer-items/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/menus/nav-drawer/add-mini/BlazorClientApp.csproj b/samples/menus/nav-drawer/add-mini/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/menus/nav-drawer/add-mini/BlazorClientApp.csproj +++ b/samples/menus/nav-drawer/add-mini/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/menus/nav-drawer/add-positions-navbar/BlazorClientApp.csproj b/samples/menus/nav-drawer/add-positions-navbar/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/menus/nav-drawer/add-positions-navbar/BlazorClientApp.csproj +++ b/samples/menus/nav-drawer/add-positions-navbar/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/menus/nav-drawer/styling/BlazorClientApp.csproj b/samples/menus/nav-drawer/styling/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/menus/nav-drawer/styling/BlazorClientApp.csproj +++ b/samples/menus/nav-drawer/styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/notifications/banner/banner-advanced-sample/BlazorClientApp.csproj b/samples/notifications/banner/banner-advanced-sample/BlazorClientApp.csproj index b7f3323a0b..2a69eadf70 100644 --- a/samples/notifications/banner/banner-advanced-sample/BlazorClientApp.csproj +++ b/samples/notifications/banner/banner-advanced-sample/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -19,10 +19,10 @@ - - - - + + + + diff --git a/samples/notifications/banner/banner-sample-1/BlazorClientApp.csproj b/samples/notifications/banner/banner-sample-1/BlazorClientApp.csproj index b7f3323a0b..2a69eadf70 100644 --- a/samples/notifications/banner/banner-sample-1/BlazorClientApp.csproj +++ b/samples/notifications/banner/banner-sample-1/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -19,10 +19,10 @@ - - - - + + + + diff --git a/samples/notifications/banner/banner-sample-2/BlazorClientApp.csproj b/samples/notifications/banner/banner-sample-2/BlazorClientApp.csproj index b7f3323a0b..2a69eadf70 100644 --- a/samples/notifications/banner/banner-sample-2/BlazorClientApp.csproj +++ b/samples/notifications/banner/banner-sample-2/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -19,10 +19,10 @@ - - - - + + + + diff --git a/samples/notifications/banner/banner-styling/BlazorClientApp.csproj b/samples/notifications/banner/banner-styling/BlazorClientApp.csproj index b7f3323a0b..2a69eadf70 100644 --- a/samples/notifications/banner/banner-styling/BlazorClientApp.csproj +++ b/samples/notifications/banner/banner-styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -19,10 +19,10 @@ - - - - + + + + diff --git a/samples/notifications/dialog/closing-variations/BlazorClientApp.csproj b/samples/notifications/dialog/closing-variations/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/notifications/dialog/closing-variations/BlazorClientApp.csproj +++ b/samples/notifications/dialog/closing-variations/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/notifications/dialog/form/BlazorClientApp.csproj b/samples/notifications/dialog/form/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/notifications/dialog/form/BlazorClientApp.csproj +++ b/samples/notifications/dialog/form/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/notifications/dialog/overview/BlazorClientApp.csproj b/samples/notifications/dialog/overview/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/notifications/dialog/overview/BlazorClientApp.csproj +++ b/samples/notifications/dialog/overview/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/notifications/dialog/styling/BlazorClientApp.csproj b/samples/notifications/dialog/styling/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/notifications/dialog/styling/BlazorClientApp.csproj +++ b/samples/notifications/dialog/styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/notifications/snackbar/action-text/BlazorClientApp.csproj b/samples/notifications/snackbar/action-text/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/notifications/snackbar/action-text/BlazorClientApp.csproj +++ b/samples/notifications/snackbar/action-text/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/notifications/snackbar/display-time/BlazorClientApp.csproj b/samples/notifications/snackbar/display-time/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/notifications/snackbar/display-time/BlazorClientApp.csproj +++ b/samples/notifications/snackbar/display-time/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/notifications/snackbar/overview/BlazorClientApp.csproj b/samples/notifications/snackbar/overview/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/notifications/snackbar/overview/BlazorClientApp.csproj +++ b/samples/notifications/snackbar/overview/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/notifications/snackbar/styling/BlazorClientApp.csproj b/samples/notifications/snackbar/styling/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/notifications/snackbar/styling/BlazorClientApp.csproj +++ b/samples/notifications/snackbar/styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/notifications/toast/overview/BlazorClientApp.csproj b/samples/notifications/toast/overview/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/notifications/toast/overview/BlazorClientApp.csproj +++ b/samples/notifications/toast/overview/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/notifications/toast/properties/BlazorClientApp.csproj b/samples/notifications/toast/properties/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/notifications/toast/properties/BlazorClientApp.csproj +++ b/samples/notifications/toast/properties/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/notifications/toast/styling/BlazorClientApp.csproj b/samples/notifications/toast/styling/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/notifications/toast/styling/BlazorClientApp.csproj +++ b/samples/notifications/toast/styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/scheduling/calendar/disabled-dates/BlazorClientApp.csproj b/samples/scheduling/calendar/disabled-dates/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/scheduling/calendar/disabled-dates/BlazorClientApp.csproj +++ b/samples/scheduling/calendar/disabled-dates/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/scheduling/calendar/formatting/BlazorClientApp.csproj b/samples/scheduling/calendar/formatting/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/scheduling/calendar/formatting/BlazorClientApp.csproj +++ b/samples/scheduling/calendar/formatting/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/scheduling/calendar/header/BlazorClientApp.csproj b/samples/scheduling/calendar/header/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/scheduling/calendar/header/BlazorClientApp.csproj +++ b/samples/scheduling/calendar/header/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/scheduling/calendar/multiple-months/BlazorClientApp.csproj b/samples/scheduling/calendar/multiple-months/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/scheduling/calendar/multiple-months/BlazorClientApp.csproj +++ b/samples/scheduling/calendar/multiple-months/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/scheduling/calendar/multiple-selection/BlazorClientApp.csproj b/samples/scheduling/calendar/multiple-selection/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/scheduling/calendar/multiple-selection/BlazorClientApp.csproj +++ b/samples/scheduling/calendar/multiple-selection/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/scheduling/calendar/overview/BlazorClientApp.csproj b/samples/scheduling/calendar/overview/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/scheduling/calendar/overview/BlazorClientApp.csproj +++ b/samples/scheduling/calendar/overview/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/scheduling/calendar/range-selection/BlazorClientApp.csproj b/samples/scheduling/calendar/range-selection/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/scheduling/calendar/range-selection/BlazorClientApp.csproj +++ b/samples/scheduling/calendar/range-selection/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/scheduling/calendar/size/BlazorClientApp.csproj b/samples/scheduling/calendar/size/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/scheduling/calendar/size/BlazorClientApp.csproj +++ b/samples/scheduling/calendar/size/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/scheduling/calendar/special-dates/BlazorClientApp.csproj b/samples/scheduling/calendar/special-dates/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/scheduling/calendar/special-dates/BlazorClientApp.csproj +++ b/samples/scheduling/calendar/special-dates/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/scheduling/calendar/styling/BlazorClientApp.csproj b/samples/scheduling/calendar/styling/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/scheduling/calendar/styling/BlazorClientApp.csproj +++ b/samples/scheduling/calendar/styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/scheduling/calendar/week-numbers/BlazorClientApp.csproj b/samples/scheduling/calendar/week-numbers/BlazorClientApp.csproj index 22b31263ac..9b3160fb91 100644 --- a/samples/scheduling/calendar/week-numbers/BlazorClientApp.csproj +++ b/samples/scheduling/calendar/week-numbers/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/scheduling/date-picker/dialog-mode/BlazorClientApp.csproj b/samples/scheduling/date-picker/dialog-mode/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/scheduling/date-picker/dialog-mode/BlazorClientApp.csproj +++ b/samples/scheduling/date-picker/dialog-mode/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/scheduling/date-picker/form/BlazorClientApp.csproj b/samples/scheduling/date-picker/form/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/scheduling/date-picker/form/BlazorClientApp.csproj +++ b/samples/scheduling/date-picker/form/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/scheduling/date-picker/format/BlazorClientApp.csproj b/samples/scheduling/date-picker/format/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/scheduling/date-picker/format/BlazorClientApp.csproj +++ b/samples/scheduling/date-picker/format/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/scheduling/date-picker/overview/BlazorClientApp.csproj b/samples/scheduling/date-picker/overview/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/scheduling/date-picker/overview/BlazorClientApp.csproj +++ b/samples/scheduling/date-picker/overview/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/samples/scheduling/date-picker/styling/BlazorClientApp.csproj b/samples/scheduling/date-picker/styling/BlazorClientApp.csproj index c8a13963f1..5ad0404ecd 100644 --- a/samples/scheduling/date-picker/styling/BlazorClientApp.csproj +++ b/samples/scheduling/date-picker/styling/BlazorClientApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 3.0 Infragistics.Samples Infragistics.Samples @@ -12,10 +12,10 @@ - - - - + + + +