Chart.razor.cs 293 B

1234567891011121314151617
  1. using Microsoft.AspNetCore.Components;
  2. using wispro.sp.share;
  3. namespace wispro.sp.web.Components
  4. {
  5. public partial class Chart
  6. {
  7. [Parameter]
  8. public int ChartType { get;set; }
  9. [Parameter]
  10. public ChartDatas chartDatas { get; set; }
  11. }
  12. }