public static ValueTask SetData(this IJSRuntime jsRuntime, ElementReference element, DotNetObjectReference <Network> component, NetworkData data) => jsRuntime.InvokeVoidAsync($"{VisNetworkInteropName}.setData", element, SerializeIgnoreNull(data));
// Gloabl public static ValueTask CreateNetwork(this IJSRuntime jsRuntime, ElementReference element, DotNetObjectReference <Network> component, NetworkOptions options, NetworkData data) => jsRuntime.InvokeVoidAsync($"{VisNetworkInteropName}.create", element, component, SerializeIgnoreNull(options), SerializeIgnoreNull(data));