Skip to content

Commit

Permalink
Merge pull request #237 from apexcharts/prefomance-issue
Browse files Browse the repository at this point in the history
Updated performance sample
  • Loading branch information
joadan authored May 22, 2023
2 parents 672a05e + b96d6b4 commit 0ecdca1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"BlazorApexCharts.Docs.Server": {
"commandName": "Project",
"launchBrowser": true,
"launchUrl": "features/performance",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
Expand Down
11 changes: 7 additions & 4 deletions docs/BlazorApexCharts.Docs/BlazorApexCharts.Docs.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@
<TargetFramework>net6.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
<Compile Remove="Components\Issues\**" />
<Content Remove="Components\Issues\**" />
<EmbeddedResource Remove="Components\Issues\**" />
<None Remove="Components\Issues\**" />
</ItemGroup>


<ItemGroup>
<SupportedPlatform Include="browser" />
Expand All @@ -21,8 +28,4 @@
<ProjectReference Include="..\..\src\Blazor-ApexCharts\Blazor-ApexCharts.csproj" />
</ItemGroup>

<ItemGroup>
<Folder Include="Components\Issues\" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ else

@code {
private ApexChart<TimeSeries> chart;
private List<int> points = new List<int> { 100, 1000, 5000, 10000, 15000, 20000 };
private List<int> points = new List<int> {0, 100, 1000, 5000, 10000, 15000, 20000 };
private int pointsToLoad = 100;
private List<TimeSeries> timeSeries = new TimeSeriesGenerator(25000).TimeSeries;
private string message;
Expand Down

0 comments on commit 0ecdca1

Please sign in to comment.