You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For data visualization, you can use the predefined palettes <code>ColorUtility.CategoricalTwelveColors</code> for a 12-color palette and <code>ColorUtility.CategoricalSixColors</code> for a 6-color palette.
26
26
These palettes offer a range of distinct and visually appealing colors that can be applied to represent different categories or data elements in your visualizations.
<SectionHeadingSize="HeadingSize.H4"Text="Add data dynamically for a specific dataset"PageUrl="@pageUrl"HashTagName="add-data-dynamically-for-a-specific-dataset"/>
39
+
<SectionHeadingSize="HeadingSize.H4"Text="Add data dynamically for a specific dataset"PageUrl="@pageUrl"HashTagName="add-data-dynamically-for-a-specific-dataset"/>
<ButtonColor="ButtonColor.Primary"Class="my-1 mr-1"@onclick="async () => await NoFillAsync()"Size="ButtonSize.Small"Type="ButtonType.Button"> No fill</Button>
5
+
<ButtonColor="ButtonColor.Primary"Class="my-1 mr-1"@onclick="async () => await FillToNextAsync()"Size="ButtonSize.Small"Type="ButtonType.Button"> Fill to next (relative index +1)</Button>
6
+
<ButtonColor="ButtonColor.Primary"Class="my-1 mr-1"@onclick="async () => await FillToZeroAsync()"Size="ButtonSize.Small"Type="ButtonType.Button"> Fill to specific (absolute index 0) </Button>
7
+
<ButtonColor="ButtonColor.Primary"Class="my-1 mr-1"@onclick="async () => await FillToReferenceAsync()"Size="ButtonSize.Small"Type="ButtonType.Button"> Fill to specific (by object reference)</Button>
8
+
<ButtonColor="ButtonColor.Primary"Class="my-1 mr-1"@onclick="async () => await FillToStartAsync()"Size="ButtonSize.Small"Type="ButtonType.Button"> Fill to start </Button>
9
+
<ButtonColor="ButtonColor.Primary"Class="my-1 mr-1"@onclick="async () => await FillToEndAsync()"Size="ButtonSize.Small"Type="ButtonType.Button"> Fill to end</Button>
10
+
<ButtonColor="ButtonColor.Primary"Class="my-1 mr-1"@onclick="async () => await FillToValueAsync()"Size="ButtonSize.Small"Type="ButtonType.Button"> Fill to value 50</Button>
0 commit comments