1234567891011121314151617 |
- using Microsoft.AspNetCore.Components;
- using wispro.sp.share;
- namespace wispro.sp.web.Components
- {
- public partial class Chart
- {
- [Parameter]
- public int ChartType { get;set; }
- [Parameter]
- public ChartDatas chartDatas { get; set; }
-
- }
- }
|