API Reference
VisNetwork
VisNetwork component for creating interactive network diagrams
Inheritance
- Element
- VisNetwork
Constructors
public VisNetwork() #Initializes a new instance of the VisNetwork class.
Methods
public VisNetwork AddEdge(VisNetworkEdgeOptions edgeOptions) #VisNetworkAdds an edge to the network.
Parameters
- configure System.Action{HtmlForgeX.VisNetworkEdgeOptions}
- Action to configure the edge.
Returns
The current VisNetwork instance.
public VisNetwork AddEdge(Object from, Object to, Action<VisNetworkEdgeOptions> configure = null) #VisNetworkAdds an edge connecting two nodes.
Parameters
- from System.Object
- Source node identifier.
- to System.Object
- Target node identifier.
- configure System.Action{HtmlForgeX.VisNetworkEdgeOptions} = null
- Optional action to configure additional edge properties.
Returns
The current VisNetwork instance.
AddEdge(HtmlForgeX.VisNetworkEdge edge) #Adds a VisNetworkEdge to the diagram (legacy support).
Parameters
- edge HtmlForgeX.VisNetworkEdge
- Edge to add.
Returns
The current VisNetwork instance.
AddEdge(HtmlForgeX.VisNetworkEdgeOptions edgeOptions) #Adds a VisNetworkEdgeOptions to the diagram.
Parameters
- edgeOptions HtmlForgeX.VisNetworkEdgeOptions
- Edge options to add.
Returns
The current VisNetwork instance.
public VisNetwork AddEdge(Object edge) #VisNetworkAdds a raw edge object to the diagram (legacy support).
Parameters
- edge System.Object
- Object containing edge definition.
Returns
The current VisNetwork instance.
public VisNetwork AddEdges(IEnumerable<VisNetworkEdgeOptions> edges) #VisNetworkAdds multiple edges to the network.
Parameters
- edges HtmlForgeX.VisNetworkEdgeOptions[]
- Collection of edge configurations.
Returns
The current VisNetwork instance.
AddEdges(System.Collections.Generic.IEnumerable{HtmlForgeX.VisNetworkEdgeOptions} edges) #Adds multiple edges to the network.
Parameters
- edges System.Collections.Generic.IEnumerable{HtmlForgeX.VisNetworkEdgeOptions}
- Collection of edge configurations.
Returns
The current VisNetwork instance.
public VisNetwork AddHtmlNode(VisNetworkHtmlNode node) #VisNetworkAdds a VisNetworkHtmlNode with full HTML support to the diagram. This requires the visjs-html-nodes plugin which will be automatically loaded.
Parameters
- node HtmlForgeX.VisNetworkHtmlNode
- The HTML node to add.
Returns
The current VisNetwork instance.
public VisNetwork AddNode(VisNetworkNode node) #VisNetworkAdds a node to the network.
Parameters
- configure System.Action{HtmlForgeX.VisNetworkNodeOptions}
- Action to configure the node.
Returns
The current VisNetwork instance.
public VisNetwork AddNode(Object id, Action<VisNetworkNodeOptions> configure = null) #VisNetworkAdds a node with the specified ID.
Parameters
- id System.Object
- The node identifier.
- configure System.Action{HtmlForgeX.VisNetworkNodeOptions} = null
- Optional action to configure additional node properties.
Returns
The current VisNetwork instance.
AddNode(HtmlForgeX.VisNetworkNode node) #Adds a strongly typed VisNetworkNode to the diagram (legacy support).
Parameters
- node HtmlForgeX.VisNetworkNode
- Node to add.
Returns
The current VisNetwork instance.
public VisNetwork AddNode(Object node) #VisNetworkAdds a raw node object to the diagram (legacy support).
Parameters
- node System.Object
- Object containing node definition.
Returns
The current VisNetwork instance.
public VisNetwork AddNodes(IEnumerable<VisNetworkNodeOptions> nodes) #VisNetworkAdds multiple nodes to the network.
Parameters
- nodes HtmlForgeX.VisNetworkNodeOptions[]
- Collection of node configurations.
Returns
The current VisNetwork instance.
AddNodes(System.Collections.Generic.IEnumerable{HtmlForgeX.VisNetworkNodeOptions} nodes) #Adds multiple nodes to the network.
Parameters
- nodes System.Collections.Generic.IEnumerable{HtmlForgeX.VisNetworkNodeOptions}
- Collection of node configurations.
Returns
The current VisNetwork instance.
public VisNetwork Cluster(Action<VisNetworkClusteringOptions> configure) #VisNetworkClusters nodes based on custom join condition.
Parameters
- configure System.Action{HtmlForgeX.VisNetworkClusteringOptions}
- Action to configure clustering options.
Returns
The current VisNetwork instance.
public VisNetwork ClusterByConnection(Object nodeId, Action<VisNetworkClusterByConnectionOptions> configure = null) #VisNetworkClusters a node and all nodes connected to it.
Parameters
- nodeId System.Object
- The node ID to cluster with its connections.
- configure System.Action{HtmlForgeX.VisNetworkClusterByConnectionOptions} = null
- Optional action to configure clustering options.
Returns
The current VisNetwork instance.
public VisNetwork ClusterByGroup(String groupName, Action<VisNetworkClusteringOptions> configure = null) #VisNetworkClusters nodes by their group property.
Parameters
- groupName System.String
- The group name to cluster.
- configure System.Action{HtmlForgeX.VisNetworkClusteringOptions} = null
- Optional action to configure clustering options.
Returns
The current VisNetwork instance.
public VisNetwork ClusterByHubsize(Int32 hubsize = 3, Action<VisNetworkClusterByHubsizeOptions> configure = null) #VisNetworkClusters nodes that have equal or more edges than the specified hubsize.
Parameters
- hubsize System.Int32 = 3
- Minimum number of edges to be considered a hub. Default is 3.
- configure System.Action{HtmlForgeX.VisNetworkClusterByHubsizeOptions} = null
- Optional action to configure clustering options.
Returns
The current VisNetwork instance.
public VisNetwork ClusterOutliers(Action<VisNetworkClusteringOptions> configure = null) #VisNetworkClusters all nodes with only one edge (outliers).
Parameters
- configure System.Action{HtmlForgeX.VisNetworkClusteringOptions} = null
- Optional action to configure clustering options.
Returns
The current VisNetwork instance.
public VisNetwork DownloadAsJson(String filename = "network-export", Action<VisNetworkExportOptions> configure = null, Nullable<Int32> delay = null) #VisNetworkDownloads the network data as a JSON file.
Parameters
- filename System.String = "network-export"
- The filename for the download (without extension).
- configure System.Action{HtmlForgeX.VisNetworkExportOptions} = null
- Optional action to configure export options.
- delay System.Nullable{System.Int32} = null
- Optional delay in milliseconds before executing.
Returns
The current VisNetwork instance.
public VisNetwork ExecuteMethod(String methodName, Nullable<Int32> delay = null, params Object[] parameters) #VisNetworkExecutes a custom JavaScript method on the network.
Parameters
- methodName System.String
- The method name to call.
- delay System.Nullable{System.Int32} = null
- Optional delay in milliseconds before executing the method.
- parameters System.Object[]
- Optional parameters for the method.
Returns
The current VisNetwork instance.
public VisNetwork ExecuteMethodDelayed(String methodName, Int32 delay, params Object[] parameters) #VisNetworkExecutes a custom JavaScript method after a delay.
Parameters
- methodName System.String
- The method name to call.
- delay System.Int32
- Delay in milliseconds.
- parameters System.Object[]
- Optional parameters for the method.
Returns
The current VisNetwork instance.
public VisNetwork Export(Action<VisNetworkExportOptions> configure = null, String callback = null, Nullable<Int32> delay = null) #VisNetworkExports the current network state to a JSON string.
Parameters
- configure System.Action{HtmlForgeX.VisNetworkExportOptions} = null
- Optional action to configure export options.
- callback System.String = null
- JavaScript callback function to receive the exported data.
- delay System.Nullable{System.Int32} = null
- Optional delay in milliseconds before executing.
Returns
The current VisNetwork instance.
public VisNetwork ExportAsImage(String format = "png", String filename = "network-image", Nullable<Int32> delay = null) #VisNetworkExports the network as an image.
Parameters
- format System.String = "png"
- The image format (png or jpg).
- filename System.String = "network-image"
- The filename for the download (without extension).
- delay System.Nullable{System.Int32} = null
- Optional delay in milliseconds before executing.
Returns
The current VisNetwork instance.
public VisNetwork ExportPositions(String callback = null, Nullable<Int32> delay = null) #VisNetworkExports node positions to a JSON object.
Parameters
- callback System.String = null
- JavaScript callback function to receive the positions.
- delay System.Nullable{System.Int32} = null
- Optional delay in milliseconds before executing.
Returns
The current VisNetwork instance.
public VisNetwork Fit(Action<VisNetworkFitOptions> configure = null, Nullable<Int32> delay = null) #VisNetworkFits the network view to show all nodes or specified nodes.
Parameters
- configure System.Action{HtmlForgeX.VisNetworkFitOptions} = null
- Optional action to configure fit options.
- delay System.Nullable{System.Int32} = null
- Optional delay in milliseconds before executing the fit method.
Returns
The current VisNetwork instance.
public VisNetwork Focus(Object nodeId, Action<VisNetworkFocusOptions> configure = null, Nullable<Int32> delay = null) #VisNetworkFocuses the view on a specific node.
Parameters
- nodeId System.Object
- The node ID to focus on.
- configure System.Action{HtmlForgeX.VisNetworkFocusOptions} = null
- Optional action to configure focus options.
- delay System.Nullable{System.Int32} = null
- Optional delay in milliseconds before executing the focus method.
Returns
The current VisNetwork instance.
public VisNetwork Import(String importDataJson, Boolean clearExisting = true, Nullable<Int32> delay = null) #VisNetworkImports network data from a JSON object.
Parameters
- importDataJson System.String
- The JSON data to import.
- clearExisting System.Boolean = true
- Whether to clear existing nodes and edges.
- delay System.Nullable{System.Int32} = null
- Optional delay in milliseconds before executing.
Returns
The current VisNetwork instance.
public VisNetwork ImportPositions(String positionsJson, Boolean animate = false, Nullable<Int32> delay = null) #VisNetworkImports node positions from a JSON object.
Parameters
- positionsJson System.String
- The JSON object containing node positions.
- animate System.Boolean = false
- Whether to animate the position changes.
- delay System.Nullable{System.Int32} = null
- Optional delay in milliseconds before executing.
Returns
The current VisNetwork instance.
public VisNetwork MoveTo(Action<VisNetworkMoveToOptions> configure, Nullable<Int32> delay = null) #VisNetworkMoves the view to a specific position.
Parameters
- configure System.Action{HtmlForgeX.VisNetworkMoveToOptions}
- Action to configure move options.
- delay System.Nullable{System.Int32} = null
- Optional delay in milliseconds before executing the move method.
Returns
The current VisNetwork instance.
OnAddedToDocument() #Called when the element is added to a Document. Ensures that offline embedding rules are applied to all nodes.
public VisNetwork OpenCluster(Object nodeId, Action<VisNetworkOpenClusterOptions> configure = null) #VisNetworkOpens (releases nodes from) a cluster.
Parameters
- nodeId System.Object
- The cluster node ID to open.
- configure System.Action{HtmlForgeX.VisNetworkOpenClusterOptions} = null
- Optional action to configure opening options.
Returns
The current VisNetwork instance.
ProcessCustomShapes(System.Collections.Generic.List{System.Object} arg1, System.String arg2) #Processes nodes to handle custom shapes by converting ctxRenderer strings to functions.
Parameters
- arg1 System.Collections.Generic.List{System.Object}
- arg2 System.String
public VisNetwork Redraw(Nullable<Int32> delay = null) #VisNetworkRedraws the network.
Parameters
- delay System.Nullable{System.Int32} = null
Returns
The current VisNetwork instance.
RegisterLibraries() #Registers the required libraries for VisNetwork.
public VisNetwork SelectEdges(Object[] edgeIds, Nullable<Int32> delay = null) #VisNetworkSelects edges in the network.
Parameters
- edgeIds System.Object[]
- The edge IDs to select.
- delay System.Nullable{System.Int32} = null
- Optional delay in milliseconds before executing the select method.
Returns
The current VisNetwork instance.
public VisNetwork SelectNodes(Object[] nodeIds, Boolean highlightEdges = true, Nullable<Int32> delay = null) #VisNetworkSelects nodes in the network.
Parameters
- nodeIds System.Object[]
- The node IDs to select.
- highlightEdges System.Boolean = true
- Whether to highlight connected edges.
- delay System.Nullable{System.Int32} = null
- Optional delay in milliseconds before executing the select method.
Returns
The current VisNetwork instance.
public VisNetwork SetSeed(Int32 seed) #VisNetworkSets the seed for the random layout.
Parameters
- seed System.Int32
- The random seed value.
Returns
The current VisNetwork instance.
public VisNetwork Settings(Action<VisNetworkSettings> configure) #VisNetworkSettings sub‑builder to group less common toggles and keep the root surface tidy.
Parameters
- configure System.Action{HtmlForgeX.VisNetworkSettings}
public VisNetwork Stabilize(Nullable<Int32> iterations = null, Nullable<Int32> delay = null) #VisNetworkStabilizes the network.
Parameters
- iterations System.Nullable{System.Int32} = null
- Optional number of iterations.
- delay System.Nullable{System.Int32} = null
- Optional delay in milliseconds before executing the stabilize method.
Returns
The current VisNetwork instance.
public VisNetwork StartSimulation(Nullable<Int32> delay = null) #VisNetworkStarts the physics simulation.
Parameters
- delay System.Nullable{System.Int32} = null
Returns
The current VisNetwork instance.
public VisNetwork StopSimulation(Nullable<Int32> delay = null) #VisNetworkStops the physics simulation.
Parameters
- delay System.Nullable{System.Int32} = null
Returns
The current VisNetwork instance.
public override String ToString() #StringGenerates the HTML and JavaScript required to render the diagram.
Returns
HTML string representing the network diagram.
public VisNetwork UnselectAll(Nullable<Int32> delay = null) #VisNetworkClears all selections.
Parameters
- delay System.Nullable{System.Int32} = null
Returns
The current VisNetwork instance.
public VisNetwork WithEvents(Action<VisNetworkEvents> configure) #VisNetworkConfigures event handlers for the network.
Parameters
- configure System.Action{HtmlForgeX.VisNetworkEvents}
- Action to configure events.
Returns
The current VisNetwork instance.
public VisNetwork WithGroup(String groupName, Action<VisNetworkGroupOptions> configure) #VisNetworkConfigures node groups for consistent styling.
Parameters
- groupName System.String
- Name of the group.
- configure System.Action{HtmlForgeX.VisNetworkGroupOptions}
- Action to configure group options.
Returns
The current VisNetwork instance.
public VisNetwork WithHierarchicalLayout(VisNetworkLayoutDirection direction = Ud) #VisNetworkEnables hierarchical layout.
Parameters
- direction HtmlForgeX.VisNetworkLayoutDirection = Ud
- The direction of the hierarchy.
Returns
The current VisNetwork instance.
public VisNetwork WithId(String id) #VisNetworkSets the unique identifier for the network container.
Parameters
- id System.String
- The identifier to use.
Returns
The current VisNetwork instance.
public VisNetwork WithInteraction(Action<VisNetworkInteractionOptions> configure) #VisNetworkConfigures interaction options.
Parameters
- configure System.Action{HtmlForgeX.VisNetworkInteractionOptions}
- Action to configure interaction options.
Returns
The current VisNetwork instance.
public VisNetwork WithLayout(Action<VisNetworkLayoutOptions> configure) #VisNetworkConfigures the layout algorithm.
Parameters
- configure System.Action{HtmlForgeX.VisNetworkLayoutOptions}
- Action to configure layout options.
Returns
The current VisNetwork instance.
public VisNetwork WithLoadingBar(Boolean enable = true) #VisNetworkEnables the loading bar display while the network is being rendered.
Parameters
- enable System.Boolean = true
- True to enable the loading bar.
Returns
The current VisNetwork instance.
public VisNetwork WithManipulation(Action<VisNetworkManipulationOptions> configure) #VisNetworkConfigures manipulation options.
Parameters
- configure System.Action{HtmlForgeX.VisNetworkManipulationOptions}
- Action to configure manipulation options.
Returns
The current VisNetwork instance.
public VisNetwork WithOptions(Action<VisNetworkOptions> configure) #VisNetworkConfigures the network options.
Parameters
- configure System.Action{HtmlForgeX.VisNetworkOptions}
- Action to configure the options.
Returns
The current VisNetwork instance.
public VisNetwork WithOptions(String key, Object value) #VisNetworkSets a specific option using a key-value pair (for backward compatibility).
Parameters
- key System.String
- The option key (e.g., "nodes", "edges", "physics")
- value System.Object
- The option value
Returns
The current VisNetwork instance for method chaining
public VisNetwork WithPhysics(Action<VisNetworkPhysicsOptions> configure) #VisNetworkConfigures the physics simulation.
Parameters
- configure System.Action{HtmlForgeX.VisNetworkPhysicsOptions}
- Action to configure physics options.
Returns
The current VisNetwork instance.
public VisNetwork WithPhysics(Boolean enabled = true) #VisNetworkEnables or disables physics simulation.
Parameters
- enabled System.Boolean = true
- True to enable physics.
Returns
The current VisNetwork instance.
public VisNetwork WithSize(String width, String height) #VisNetworkSets the size of the network container.
Parameters
- width System.String
- Width (e.g., "100%", "800px").
- height System.String
- Height (e.g., "600px", "100vh").
Returns
The current VisNetwork instance.
Inherited Methods
public TablerAccordion Accordion(Action<TablerAccordion> config) #TablerAccordionParameters
- config Action<TablerAccordion>
public TablerActionsAndNotesCard ActionsAndNotesCard(Action<TablerActionsAndNotesCard> config) #TablerActionsAndNotesCardParameters
- config Action<TablerActionsAndNotesCard>
public TablerActionSummaryCard ActionSummaryCard(Action<TablerActionSummaryCard> config) #TablerActionSummaryCardParameters
- config Action<TablerActionSummaryCard>
public TablerActivityFeedCard ActivityFeedCard(Action<TablerActivityFeedCard> config) #TablerActivityFeedCardParameters
- config Action<TablerActivityFeedCard>
public override Element Add(Element element) #ElementParameters
- element Element
public TablerAlert Alert(String title, String message, TablerColor alertColor = Default, TablerAlertType alertType = Regular) #TablerAlertParameters
- title String
- message String
- alertColor TablerColor = Default
- alertType TablerAlertType = Regular
public TablerAnalyticsSummaryCard AnalyticsSummaryCard(Action<TablerAnalyticsSummaryCard> config) #TablerAnalyticsSummaryCardParameters
- config Action<TablerAnalyticsSummaryCard>
public ApexCharts ApexChart(Action<ApexCharts> config) #ApexChartsParameters
- config Action<ApexCharts>
public TablerApexChartCard ApexChartCard(Action<TablerApexChartCard> config) #TablerApexChartCardParameters
- config Action<TablerApexChartCard>
public TablerAuditLogCard AuditLogCard(Action<TablerAuditLogCard> config) #TablerAuditLogCardParameters
- config Action<TablerAuditLogCard>
public TablerAvatar Avatar() #TablerAvatarParameters
- config Action<TablerAvatar>
public TablerAvatarGroup AvatarGroup(Action<TablerAvatarGroup> config) #TablerAvatarGroupParameters
- config Action<TablerAvatarGroup>
public TablerBadge Badge(String text, TablerBadgeColor color, TablerBadgeVisualStyle style, TablerBadgeSize size, Boolean pill = true, String href = null) #TablerBadgeParameters
- text String
- color TablerBadgeColor = null
public TablerBadgeSpan BadgeSpan(String text, TablerColor color = Blue) #TablerBadgeSpanParameters
- text String
- color TablerColor = Blue
public TablerBadgeStatus BadgeStatus(String text, TablerColor color) #TablerBadgeStatusParameters
- text String
- color TablerColor
public TablerBreakdownCard BreakdownCard(Action<TablerBreakdownCard> config) #TablerBreakdownCardParameters
- config Action<TablerBreakdownCard>
public TablerButton Button(String text, TablerButtonVariant variant = Primary) #TablerButtonParameters
- text String
- config Action<TablerButton> = Primary
public TablerCalendarWorkspaceCard CalendarWorkspaceCard(Action<TablerCalendarWorkspaceCard> config) #TablerCalendarWorkspaceCardParameters
- config Action<TablerCalendarWorkspaceCard>
public TablerCard Card(Int32 count, Action<TablerCard> config) #TablerCardParameters
- config Action<TablerCard>
public TablerCardBasic CardBasic(String title, String text) #TablerCardBasicParameters
- title String
- text String
public TablerCarousel Carousel(Action<TablerCarousel> config) #TablerCarouselParameters
- config Action<TablerCarousel>
public TablerCategoryBarChartCard CategoryBarChartCard(Action<TablerCategoryBarChartCard> config) #TablerCategoryBarChartCardParameters
- config Action<TablerCategoryBarChartCard>
public ChartJs ChartJs(Action<ChartJs> config) #ChartJsParameters
- config Action<ChartJs>
public TablerColumn Column(TablerColumnNumber number, Action<TablerColumn> config) #TablerColumnParameters
- config Action<TablerColumn>
public TablerControlBar ControlBar(Action<TablerControlBar> config) #TablerControlBarParameters
- config Action<TablerControlBar>
public TablerCookieBanner CookieBanner(Action<TablerCookieBanner> config) #TablerCookieBannerParameters
- config Action<TablerCookieBanner>
public TablerCountdown Countdown(Action<TablerCountdown> config = null) #TablerCountdownParameters
- config Action<TablerCountdown> = null
public TablerCountUp CountUp(Action<TablerCountUp> config) #TablerCountUpParameters
- config Action<TablerCountUp>
public TablerDataGrid DataGrid(Action<TablerDataGrid> config) #TablerDataGridParameters
- config Action<TablerDataGrid>
public TablerDataGridCard DataGridCard(Action<TablerDataGridCard> config) #TablerDataGridCardParameters
- config Action<TablerDataGridCard>
public TablerDataTableCard DataTableCard(Action<TablerDataTableCard> config) #TablerDataTableCardParameters
- config Action<TablerDataTableCard>
public VisNetwork DiagramNetwork(Action<VisNetwork> config) #VisNetworkParameters
- config Action<VisNetwork>
public TablerDistributionCard DistributionCard(Action<TablerDistributionCard> config) #TablerDistributionCardParameters
- config Action<TablerDistributionCard>
public HtmlTag Div(Action<HtmlTag> config) #HtmlTagParameters
- config Action<HtmlTag>
public TablerEmptyState EmptyState(Action<TablerEmptyState> config) #TablerEmptyStateParameters
- config Action<TablerEmptyState>
public TablerEmptyStateCard EmptyStateCard(Action<TablerEmptyStateCard> config) #TablerEmptyStateCardParameters
- config Action<TablerEmptyStateCard>
public override Boolean Equals(Object obj) #BooleanParameters
- obj Object
public FancyTree FancyTree(Action<FancyTree> config) #FancyTreeParameters
- config Action<FancyTree>
public TablerFlagIcon Flag(Country country) #TablerFlagIconParameters
- iso2 String
public TablerFlagList Flags(Action<TablerFlagList> config) #TablerFlagListParameters
- config Action<TablerFlagList>
public TablerForm Form(Action<TablerForm> config) #TablerFormParameters
- config Action<TablerForm>
public FullCalendar FullCalendar(Action<FullCalendar> config) #FullCalendarParameters
- config Action<FullCalendar>
public TablerGaugeCard GaugeCard(Action<TablerGaugeCard> config) #TablerGaugeCardParameters
- config Action<TablerGaugeCard>
public TablerGeoSummaryCard GeoSummaryCard(Action<TablerGeoSummaryCard> config) #TablerGeoSummaryCardParameters
- config Action<TablerGeoSummaryCard>
public HeaderLevel HeaderLevel(HeaderLevelTag level, String text) #HeaderLevelParameters
- level HeaderLevelTag
- text String
public TablerHeroCard HeroCard(Action<TablerHeroCard> config) #TablerHeroCardParameters
- config Action<TablerHeroCard>
public TablerHighlightCard HighlightCard(Action<TablerHighlightCard> config) #TablerHighlightCardParameters
- config Action<TablerHighlightCard>
public TablerIconElement Icon(TablerIconType icon, Action<TablerIconElement> config) #TablerIconElementParameters
- icon FontAwesomeSolid
- config Action<FontAwesomeIcon> = null
public TablerIconFont IconFont(TablerIconType icon) #TablerIconFontParameters
- icon String
public TablerIncidentTimelineCard IncidentTimelineCard(Action<TablerIncidentTimelineCard> config) #TablerIncidentTimelineCardParameters
- config Action<TablerIncidentTimelineCard>
public TablerInsightSummaryCard InsightSummaryCard(Action<TablerInsightSummaryCard> config) #TablerInsightSummaryCardParameters
- config Action<TablerInsightSummaryCard>
public TablerLightboxGallery LightboxGallery(Action<TablerLightboxGallery> config) #TablerLightboxGalleryParameters
- config Action<TablerLightboxGallery>
public TablerLineComparisonCard LineComparisonCard(Action<TablerLineComparisonCard> config) #TablerLineComparisonCardParameters
- config Action<TablerLineComparisonCard>
public TablerButton LinkButton(String text, String href, TablerButtonVariant variant = Primary) #TablerButtonParameters
- text String
- href String
- variant TablerButtonVariant = Primary
public TablerListCard ListCard(Action<TablerListCard> config) #TablerListCardParameters
- config Action<TablerListCard>
public TablerListGroup ListGroup(Action<TablerListGroup> config) #TablerListGroupParameters
- config Action<TablerListGroup>
public TablerLogs Logs(List<String> code, RGBColor backgroundColor, RGBColor textColor) #TablerLogsParameters
- code String
- theme TablerLogsTheme = Dark
- backgroundClass String = null
- textClass String = null
public TablerMapSummaryCard MapSummaryCard(Action<TablerMapSummaryCard> config) #TablerMapSummaryCardParameters
- config Action<TablerMapSummaryCard>
public TablerMetricCard MetricCard(Action<TablerMetricCard> config) #TablerMetricCardParameters
- config Action<TablerMetricCard>
public TablerModal Modal(Action<TablerModal> config) #TablerModalParameters
- config Action<TablerModal>
public TablerNarrativeCard NarrativeCard(Action<TablerNarrativeCard> config) #TablerNarrativeCardParameters
- config Action<TablerNarrativeCard>
public TablerNarrativeSummaryCard NarrativeSummaryCard(Action<TablerNarrativeSummaryCard> config) #TablerNarrativeSummaryCardParameters
- config Action<TablerNarrativeSummaryCard>
public TablerPageHeader PageHeader(Action<TablerPageHeader> config) #TablerPageHeaderParameters
- config Action<TablerPageHeader>
public TablerPeopleReviewCard PeopleReviewCard(Action<TablerPeopleReviewCard> config) #TablerPeopleReviewCardParameters
- config Action<TablerPeopleReviewCard>
public TablerPlaceholder Placeholder(Action<TablerPlaceholder> config) #TablerPlaceholderParameters
- config Action<TablerPlaceholder>
public TablerPlaceholderCard PlaceholderCard(Action<TablerPlaceholderCard> config) #TablerPlaceholderCardParameters
- config Action<TablerPlaceholderCard>
public TablerPlaceholderContainer Placeholders(Action<TablerPlaceholderContainer> config) #TablerPlaceholderContainerParameters
- config Action<TablerPlaceholderContainer>
public TablerPresenceListCard PresenceListCard(Action<TablerPresenceListCard> config) #TablerPresenceListCardParameters
- config Action<TablerPresenceListCard>
public TablerProgressBar ProgressBar(TablerProgressBarType type, Int32 percentage, Nullable<TablerColor> tablerBackground = null) #TablerProgressBarParameters
- config Action<TablerProgressBar>
public TablerProgressListCard ProgressListCard(Action<TablerProgressListCard> config) #TablerProgressListCardParameters
- config Action<TablerProgressListCard>
public EasyQRCodeElement QRCode(String text) #EasyQRCodeElementParameters
- text String
public QuillEditor QuillEditor(Action<QuillEditor> config = null) #QuillEditorParameters
- config Action<QuillEditor> = null
public TablerReviewListCard ReviewListCard(Action<TablerReviewListCard> config) #TablerReviewListCardParameters
- config Action<TablerReviewListCard>
public TablerRow Row(Action<TablerRow> config) #TablerRowParameters
- config Action<TablerRow>
public TablerScheduleSummaryCard ScheduleSummaryCard(Action<TablerScheduleSummaryCard> config) #TablerScheduleSummaryCardParameters
- config Action<TablerScheduleSummaryCard>
public ScrollingText ScrollingText(Action<ScrollingText> config) #ScrollingTextParameters
- config Action<ScrollingText>
public TablerScrollSpy ScrollSpy(Action<TablerScrollSpy> config) #TablerScrollSpyParameters
- config Action<TablerScrollSpy>
public SmartTab SmartTab(Action<SmartTab> config) #SmartTabParameters
- config Action<SmartTab>
public SmartWizard SmartWizard(Action<SmartWizard> config) #SmartWizardParameters
- config Action<SmartWizard>
public TablerSocialTileCard SocialTileCard(Action<TablerSocialTileCard> config) #TablerSocialTileCardParameters
- config Action<TablerSocialTileCard>
public Span Span(String content = "") #SpanParameters
- content String = ""
public TablerSparkline Sparkline(Action<TablerSparkline> config) #TablerSparklineParameters
- config Action<TablerSparkline>
public TablerSpinner Spinner(Action<TablerSpinner> config) #TablerSpinnerParameters
- config Action<TablerSpinner>
public TablerStatTileCard StatTileCard(Action<TablerStatTileCard> config) #TablerStatTileCardParameters
- config Action<TablerStatTileCard>
public TablerStatusIndicator StatusIndicator(Action<TablerStatusIndicator> config) #TablerStatusIndicatorParameters
- config Action<TablerStatusIndicator>
public TablerStatusStrip StatusStrip(Action<TablerStatusStrip> config) #TablerStatusStripParameters
- config Action<TablerStatusStrip>
public TablerSummaryStrip SummaryStrip(Action<TablerSummaryStrip> config) #TablerSummaryStripParameters
- config Action<TablerSummaryStrip>
public Table Table(Object objects, TableType tableType) #TableParameters
- objects IEnumerable<Object>
- tableType TableType
public TablerInput TablerInput(String name, Action<TablerInput> config = null) #TablerInputParameters
- name String
- config Action<TablerInput> = null
public TablerProgressBar TablerProgress(Action<TablerProgressBar> config) #TablerProgressBarParameters
- config Action<TablerProgressBar>
public TablerSelect TablerSelect(String name, Action<TablerSelect> config = null) #TablerSelectParameters
- name String
- config Action<TablerSelect> = null
public TablerSteps TablerSteps(Action<TablerSteps> config) #TablerStepsParameters
- config Action<TablerSteps>
public TablerTextarea TablerTextarea(String name, Action<TablerTextarea> config = null) #TablerTextareaParameters
- name String
- config Action<TablerTextarea> = null
public TablerTableSummaryCard TableSummaryCard(Action<TablerTableSummaryCard> config) #TablerTableSummaryCardParameters
- config Action<TablerTableSummaryCard>
public TablerTabs Tabs(Action<TablerTabs> config) #TablerTabsParameters
- config Action<TablerTabs>
public TablerTags Tags(Action<TablerTags> config) #TablerTagsParameters
- config Action<TablerTags>
public TablerTaskList Tasks(Action<TablerTaskList> config) #TablerTaskListParameters
- config Action<TablerTaskList>
public TablerText Text() #TablerTextParameters
- content String
- color RGBColor = null
- fontSize String = null
public TablerTimeline Timeline(Action<TablerTimeline> config) #TablerTimelineParameters
- config Action<TablerTimeline>
public TablerTimelineSummaryCard TimelineSummaryCard(Action<TablerTimelineSummaryCard> config) #TablerTimelineSummaryCardParameters
- config Action<TablerTimelineSummaryCard>
public TablerToast Toast(Action<TablerToast> config) #TablerToastParameters
- title String
- message String
- type TablerToastType = Default
public TablerTrackingSummaryCard TrackingSummaryCard(Action<TablerTrackingSummaryCard> config) #TablerTrackingSummaryCardParameters
- config Action<TablerTrackingSummaryCard>
public TablerVectorMapCard VectorMapCard(Action<TablerVectorMapCard> config) #TablerVectorMapCardParameters
- config Action<TablerVectorMapCard>
public TablerWorkflowStepsCard WorkflowStepsCard(Action<TablerWorkflowStepsCard> config) #TablerWorkflowStepsCardParameters
- config Action<TablerWorkflowStepsCard>
public TablerWorkflowSummaryCard WorkflowSummaryCard(Action<TablerWorkflowSummaryCard> config) #TablerWorkflowSummaryCardParameters
- config Action<TablerWorkflowSummaryCard>