Blazor コントロール
系列のコレクション
コントロール > FlexChart > 要素 > 系列のコレクション

Series collection is a set of related data points that are plotted on a chart. By default, FlexChart displays a column chart with dummy data series at design-time. However, you need to provide the control with data to render the chart at runtime.

Series Collection

In FlexChart, a series is represented by the Series collection property of FlexChart class as shown in the code below. This example uses the sample created in the Quick Start section.

Razor
コードのコピー
<SeriesCollection>
   <Series Name="US" Binding="US" />
   <Series Name="China" Binding="China" />
   <Series Name="India" Binding="India" />
    <Series Name="UK" Binding="UK" />
</SeriesCollection>