Blazor コントロール
クイックスタート
コントロール > FlexChart > クイックスタート

This quick start guides you through the steps of adding the FlexChart control in your Blazor application, adding data to it and displaying the data in the control. In this example, we create a data source for FlexChart by creating list of countries and their GDP values for respective years and bind the list to the FlexChart control to display the data using Bar Chart in the control.

 FlexChart

Create a Blazor App

  1. Visual Studioで、[新しいプロジェクトの作成]を選択します。
  2. [新しいプロジェクトの作成]ウィンドウで、[Blazor Server アプリ]を選択し、[次へ]をクリックします。
  3. [新しいプロジェクトの構成]ウィンドウで、作成するプロジェクトの名前を[プロジェクト名]フィールドに入力します(この例ではBlazorIntroなど)。
  4. [場所]フィールドでプロジェクトの場所を設定し、[次へ]をクリックします。
  5. [追加情報]ウィンドウで[ターゲット フレームワーク]を設定して[作成]をクリックします。新しいクライアント側のBlazorアプリが作成されます。
    Note: Blazor Client-side app or WebAssembly app can be created using the Blazor WebAssembly App template. For details, check the Blazor WebAssembly topic in Blazor templates.

Back to Top

Configure References

  1. In the Solution Explorer, right click Dependencies and select Manage NuGet Packages.
  2. In NuGet Package Manager, select nuget.org as the Package source.
  3. Search for C1.Blazor.Chart package and click Install.
  4. Navigate to the Pages, open _Host.cshtml file.
  5. Register the client resources by adding the following lines of code to the <head> tag.
    Example Title
    コードのコピー
    <link rel="stylesheet" href="/_content/C1.Blazor.Core/styles.css" />
    <link rel="stylesheet" href="/_content/C1.Blazor.Chart/styles.css" />
    
  6. Add the following code to the <body> tag.
    HTML
    コードのコピー
    <script src="/_content/C1.Blazor.Core/scripts.js"></script>
    <script src="/_content/C1.Blazor.Chart/scripts.js"></script>
    
  7. Right click on Pages folder, click Add | Razor Component to add a new Razor page and then provide a name, say FlexChartBoxQuickStart.

Back to Top

Bind FlexChart to Data

To bind FlexChart to data, set the ItemsSource property of FlexChart class of which accepts the collection of items for the FlexChart control to create a Bar chart.

The Binding/BindingX properties should contain the names of properties of items from data source collection (FlexChart.ItemsSource property).

You need to set Binding property to specify a name of numeric property that should be plotted along y-axis and BindingX property to specify a name of property that should be plotted along x-axis. The property set by BindingX can be numeric as well as string (for category x-axis).

Also, the ItemsSource/Binding/BindingX can be also specified on a series level. If any of these properties isn't set, the series uses the corresponding properties of parent chart.

Razor
コードのコピー
@using Localization
@using C1.Chart;
@using C1.Blazor.Chart;

<FlexChart Class="chart" ChartType="ChartType.Bar" Stacking="Stacking.Stacked" 
           HeaderContent="Country GDP (M$)" HeaderStyle="font-size:24px"
           LegendPosition="Position.Bottom" LegendStyle="font-size:18px"
           BindingX="year" ItemsSource="@GdpDataSource.GetCountryGdp()">
    <SeriesCollection>
        <Series Name="US" Binding="US" />
        <Series Name="China" Binding="China" />
        <Series Name="India" Binding="India" />
        <Series Name="UK" Binding="UK" />
    </SeriesCollection>
    <AxisCollection>
        <Axis AxisType="AxisType.X" Position="Position.Bottom" />
        <Axis AxisType="AxisType.Y" Position="Position.Left"/>
    </AxisCollection>

Back to Top

Build and Run the Project

  1. Click Build | Build Solution to build the project.
  2. Press F5 to run the project.

Back to Top