-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathDemoImageSrcConstants.cs
More file actions
17 lines (14 loc) · 985 Bytes
/
DemoImageSrcConstants.cs
File metadata and controls
17 lines (14 loc) · 985 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
namespace BlazorExpress.ChartJS.Demo.RCL;
public static class DemoImageSrcConstants
{
#region Fields and Constants
public const string BarChart = $"{DemoStringConstants.StaticAssets_Images_Path}/bar-chart.png";
public const string BubbleChart = $"{DemoStringConstants.StaticAssets_Images_Path}/bubble-chart.png";
public const string DoughnutChart = $"{DemoStringConstants.StaticAssets_Images_Path}/doughnut-chart.png";
public const string LineChart = $"{DemoStringConstants.StaticAssets_Images_Path}/line-chart.png";
public const string PieChart = $"{DemoStringConstants.StaticAssets_Images_Path}/pie-chart.png";
public const string PolarAreaChart = $"{DemoStringConstants.StaticAssets_Images_Path}/polar-area-chart.png";
public const string RadarChart = $"{DemoStringConstants.StaticAssets_Images_Path}/radar-chart.png";
public const string ScatterChart = $"{DemoStringConstants.StaticAssets_Images_Path}/scatter-chart.png";
#endregion
}