Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions BlazorBootstrap.Demo.RCL/Components/Layout/MainLayout.razor
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
}
</ul>
</div>
<div class="col-6 col-lg-2 offset-lg-1 mb-3">
<div class="col-6 col-lg-2 mb-3">
<h5>Links</h5>
<ul class="list-unstyled">
<li class="mb-2"><a href="/">Home</a></li>
Expand All @@ -96,7 +96,13 @@
<li class="mb-2"><a href="@StackoverflowUrl" target="_blank" rel="noopener">Stack Overflow</a></li>
</ul>
</div>
<div class="col-6 col-lg-2 mb-3"></div>
<div class="col-6 col-lg-2 mb-3">
<h5>Blazor Express</h5>
<ul class="list-unstyled">
<li class="mb-2"><a href="https://bulma.blazorexpress.com/" target="_blank" rel="noopener">BlazorExpress.Bulma</a></li>
<li class="mb-2"><a href="https://chartjs.blazorexpress.com/" target="_blank" rel="noopener">BlazorExpress.ChartJS</a></li>
</ul>
</div>
</div>
</FooterSection>
</BlazorBootstrapLayout>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,13 @@
<li class="mb-2"><a href="@StackoverflowUrl" target="_blank" rel="noopener">Stack Overflow</a></li>
</ul>
</div>
<div class="col-6 col-lg-2 mb-3"></div>
<div class="col-6 col-lg-2 mb-3">
<h5>Other Packages</h5>
<ul class="list-unstyled">
<li class="mb-2"><a href="https://bulma.blazorexpress.com/" target="_blank" rel="noopener">BlazorExpress.Bulma</a></li>
<li class="mb-2"><a href="https://chartjs.blazorexpress.com/" target="_blank" rel="noopener">BlazorExpress.ChartJS</a></li>
</ul>
</div>
</div>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@
<Section Size="HeadingSize.H4" Name="Data labels" PageUrl="@pageUrl" Link="data-labels" />
<Demo Type="typeof(BarChart_Demo_05_Stacked_BarChart_with_Datalabels)" Tabs="true" />

<ChartJSCallout />

@code {
private const string pageUrl = RouteConstants.Demos_BarChart_Documentation;
private const string pageTitle = "Blazor Bar Chart";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@
</div>
</Section>

<ChartJSCallout />

@code {
private const string pageUrl = RouteConstants.Demos_Charts_Documentation;
private const string pageTitle = "Blazor Charts";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@
<Demo Type="typeof(DoughnutChart_Demo_02_Datalabels)" Tabs="true" />
</Section>

<ChartJSCallout />

@code {
private const string pageUrl = RouteConstants.Demos_DoughnutChart_Documentation;
private const string pageTitle = "Blazor Doughnut Chart";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@
<Demo Type="typeof(LineChart_Demo_06_Dataset_Fill)" Tabs="true" />
</Section>

<ChartJSCallout />

@code {
private const string pageUrl = RouteConstants.Demos_LineChart_Documentation;
private const string pageTitle = "Blazor Line Chart";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@
<Demo Type="typeof(PieChart_Demo_03_Change_Legend_Position)" Tabs="true" />
</Section>

<ChartJSCallout />

@code {
private const string pageUrl = RouteConstants.Demos_PieChart_Documentation;
private const string pageTitle = "Blazor Pie Chart";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@
<Demo Type="typeof(PolarAreaChart_Demo_01_Examples)" Tabs="true" />
</Section>

<ChartJSCallout />

@code {
private const string pageUrl = RouteConstants.Demos_PolarAreaChart_Documentation;
private const string pageTitle = "Blazor Polar Area Chart";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@
<Demo Type="typeof(RadarChart_Demo_01_Examples)" Tabs="true"/>
</Section>

<ChartJSCallout />

@code {
private const string pageUrl = RouteConstants.Demos_RadarChart_Documentation;
private const string pageTitle = "Blazor Radar Chart";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@
<Demo Type="typeof(ScatterChart_Demo_02_Dynamic_Data)" Tabs="true" />
</Section>

<ChartJSCallout />

@code {
private const string pageUrl = RouteConstants.Demos_ScatterChart_Documentation;
private const string pageTitle = "Blazor Scatter Chart";
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
@namespace BlazorBootstrap.Demo.RCL

<Callout Color="CalloutColor.Warning" HideHeading="true">
<h4>Using charts only</h4>
<p>If you only need chart components (without the rest of the Blazor Bootstrap UI), install the <b>BlazorExpress.ChartJS</b> package from NuGet.</p>
<pre class="mb-2">> dotnet add package BlazorExpress.ChartJS</pre>
<p>For setup and usage details, see the <a href="https://chartjs.blazorexpress.com/docs/getting-started/introduction" target="_blank" rel="noopener">BlazorExpress.ChartJS getting started guide</a>.</p>
</Callout>
Loading