Exemplo n.º 1
0
 public static bool InitializeLineChart(ChartJSChart <ChartJsLineDataset> lineChart)
 {
     return(RegisteredFunction.Invoke <bool>("BlazorComponents.ChartJSInterop.InitializeLineChart", new[] { lineChart }));
 }
Exemplo n.º 2
0
 public static bool UpdateRadarChart(ChartJSChart <ChartJSRadarDataset> radarChart)
 {
     return(RegisteredFunction.Invoke <bool>("BlazorComponents.ChartJSInterop.UpdateRadarChart", new[] { radarChart }));
 }
Exemplo n.º 3
0
 public static Task <bool> UpdateRadarChart(ChartJSChart <ChartJSRadarDataset> radarChart)
 {
     return(JSRuntime.Current.InvokeAsync <bool>("BlazorComponents.ChartJSInterop.UpdateRadarChart", new[] { radarChart }));
 }
Exemplo n.º 4
0
 public static Task <bool> InitializeLineChart(ChartJSChart <ChartJsLineDataset> lineChart)
 {
     return(JSRuntime.Current.InvokeAsync <bool>("BlazorComponents.ChartJSInterop.InitializeLineChart", new[] { lineChart }));
 }
Exemplo n.º 5
0
 public static Task <bool> UpdateBubbleChart(ChartJSChart <ChartJsBubbleDataset> bubbleChart)
 {
     return(JSRuntime.Current.InvokeAsync <bool>("BlazorComponents.ChartJSInterop.UpdateBubbleChart", new[] { bubbleChart }));
 }