Skip to content

Commit

Permalink
Deploying to gh-pages from master @ 7fbccce 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
joadan committed Nov 3, 2023
1 parent 7f8f4e7 commit d692518
Show file tree
Hide file tree
Showing 13 changed files with 27 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ else

<RowCol Lg=4 Sm=12>
<ChartCard>
<OrderChart PointType=SeriesType.RangeArea />
<RangeAreaChart />
</ChartCard>
</RowCol>
</Row>
Expand Down
24 changes: 24 additions & 0 deletions _content/razor_source/Components/ChartGallery/RangeAreaChart.razor
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
@using BlazorApexCharts.Docs.Data;
<ApexChart TItem="MeteoSample"
Title="RangeArea"
Options="options">

<ApexRangeAreaSeries TItem="MeteoSample"
Items="temperatures"
Name="Temperatures"
XValue="@(e => e.Month)"
Top="@(e => e.HighestTemperature)"
Bottom="@(e => e.LowestTemperature)"
/>
</ApexChart>

@code {
private List<MeteoSample> temperatures { get; set; } = SampleData.GetMeteoSample();
private ApexChartOptions<MeteoSample> options = new();

protected override void OnInitialized()
{
options = new ApexChartOptions<MeteoSample>();
options.Chart = new Chart { Sparkline = new ChartSparkline { Enabled = true } };
}
}
Binary file modified _framework/BlazorApexCharts.Docs.Wasm.dll
Binary file not shown.
Binary file modified _framework/BlazorApexCharts.Docs.Wasm.dll.br
Binary file not shown.
Binary file modified _framework/BlazorApexCharts.Docs.Wasm.dll.gz
Binary file not shown.
Binary file modified _framework/BlazorApexCharts.Docs.Wasm.pdb.gz
Binary file not shown.
Binary file modified _framework/BlazorApexCharts.Docs.dll
Binary file not shown.
Binary file modified _framework/BlazorApexCharts.Docs.dll.br
Binary file not shown.
Binary file modified _framework/BlazorApexCharts.Docs.dll.gz
Binary file not shown.
Binary file modified _framework/BlazorApexCharts.Docs.pdb.gz
Binary file not shown.
4 changes: 2 additions & 2 deletions _framework/blazor.boot.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"resources": {
"assembly": {
"Blazor-ApexCharts.dll": "sha256-WFR6bnNHBEcP4mT1jc8\/JUNqfXTTiZai7T99\/ofejWI=",
"BlazorApexCharts.Docs.dll": "sha256-DX42loknVeYIYieZbShIer5+obOlp5N4V9cBDG9bDcg=",
"BlazorApexCharts.Docs.Wasm.dll": "sha256-Bvyz09LLajaKPojvoh97DRRmnGREZGvuV3H\/BqcGuEI=",
"BlazorApexCharts.Docs.dll": "sha256-b8RvhtVvGVvKpEBQVrsgGxFenBu5mRboyqG6DXWUFQA=",
"BlazorApexCharts.Docs.Wasm.dll": "sha256-6QiAQJ1VmJQqMN9+W1JuhcZULKSxLxf3ekCmMUbvMNI=",
"Bogus.dll": "sha256-IgFEwQyP1GQSj7cjhmsEcYuEABesDe9Y3oby2kbVnnc=",
"ColorCode.Core.dll": "sha256-aIfJCjDE9QfwEHpKt97+\/fHH0ahMOa\/TdeVTcU3lBsY=",
"ColorCode.HTML.dll": "sha256-HKP0W0ZaaitLH4eoIUYTqVMArDi2WugRXgZOSjrj9\/k=",
Expand Down
Binary file modified _framework/blazor.boot.json.br
Binary file not shown.
Binary file modified _framework/blazor.boot.json.gz
Binary file not shown.

0 comments on commit d692518

Please sign in to comment.