You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: R/bpmnVisualization.R
+27-14Lines changed: 27 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -18,21 +18,29 @@
18
18
#' @description Display BPMN diagram based on BPMN definition in XML format
19
19
#'
20
20
#' @param bpmnXML A file name or xml document or string in BPMN XML format
21
-
#' @param overlays An element or a list of elements to be added to the diagram's existing elements.
22
-
#' Use overlay function to create an overlay object with content and relative position.
23
-
#' @param width Fixed width for widget (in css units). The default is \code{NULL}, which results in intelligent automatic sizing based on the widget's container.
24
-
#' @param height Fixed height for widget (in css units). The default is \code{NULL}, which results in intelligent automatic sizing based on the widget's container.
21
+
#' @param overlays An element or a list of elements to be added to the diagram's
22
+
#' existing elements.
23
+
#' Use overlay function to create an overlay object with content and
24
+
#' relative position.
25
+
#' @param width Fixed width for widget (in css units).
26
+
#' The default is \code{NULL}, which results in intelligent automatic
27
+
#' sizing based on the widget's container.
28
+
#' @param height Fixed height for widget (in css units).
29
+
#' The default is \code{NULL}, which results in intelligent automatic
30
+
#' sizing based on the widget's container.
25
31
#' @param elementId The id of the HTML element to enclose the widget.
26
32
#' Use an explicit element ID for the widget (rather than an automatically
27
-
#' generated one). Useful if you have other JavaScript that needs to explicitly
28
-
#' discover and interact with a specific widget instance.
33
+
#' generated one). Useful if you have other JavaScript that needs to
34
+
#' explicitly discover and interact with a specific widget instance.
29
35
#'
30
-
#' @returns A \code{bpmn-visualization} Widget that will intelligently print itself into HTML in a variety of contexts
31
-
#' including the R console, within R Markdown documents, and within Shiny output bindings.
36
+
#' @returns A \code{bpmn-visualization} Widget that will intelligently print
37
+
#' itself into HTML in a variety of contexts including the R console,
38
+
#' within R Markdown documents, and within Shiny output bindings.
0 commit comments