Exemplo n.º 1
0
 /// <summary>
 /// Updates the size of the chart.
 /// </summary>
 /// <param name="newWidth"></param>
 /// <param name="newHeight"></param>
 public void UpdateSize(int newWidth, int newHeight)
 {
     ChartJSInterop.UpdateSize(GetChart().CanvasId, newWidth, newHeight);
 }
 public void UpdateChart(ChartJSRadarChart updatedChart)
 {
     ChartJSInterop.UpdateRadarChart(updatedChart);
 }
 protected override void OnAfterRender()
 {
     ChartJSInterop.InitializeRadarChart(Chart);
 }
 public void UpdateChart(ChartJSPieChart updatedChart)
 {
     ChartJSInterop.UpdatePieChart(updatedChart);
 }
Exemplo n.º 5
0
 public void UpdateChart(ChartJSLineChart updatedChart)
 {
     ChartJSInterop.UpdateLineChart(updatedChart);
 }
Exemplo n.º 6
0
 void DisplayChart()
 {
     ChartJSInterop.InitializeLineChart(Chart);
 }