Skip to content

Commit c445560

Browse files
committed
Update BubbleChartDataset styling for better visuals
Changed BackgroundColor to use ToRgbaString(0.5) for transparency and reduced BorderWidth from 3 to 1 for a cleaner appearance. NOTE: This commit message is auto-generated using GitHub Copilot.
1 parent 21edf79 commit c445560

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

BlazorExpress.ChartJS.Demo.RCL/Pages/Demos/BubbleChart/BubbleChart_Demo_01_Examples.razor

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,9 +114,9 @@
114114
{
115115
Label = $"Product {datasetsCount}",
116116
Data = GetRandomData(),
117-
BackgroundColor = new List<string> { c.ToRgbString() },
117+
BackgroundColor = new List<string> { c.ToRgbaString(0.5) },
118118
BorderColor = new List<string> { c.ToRgbString() },
119-
BorderWidth = 3,
119+
BorderWidth = 1,
120120
};
121121
}
122122

0 commit comments

Comments
 (0)