Plot
Plot Widget API
Properties
ProgressBar
WidgetHasStatePlot.ProgressBar:
Iris.ProgressBar
A progress bar line with a state value to show the current state.
hasChildren = false
hasState = true
Arguments = {
Text: string? = "Progress Bar",
Format: string? = nil -- optional to override with a custom progress such as `29/54`
}
Events = {
hovered: () -> boolean,
changed: () -> boolean
}
States = {
progress: State<number>?
}
PlotLines
WidgetHasStatePlot.PlotLines:
Iris.PlotLines
A line graph for plotting a single line. Includes hovering to see a specific value on the graph, and automatic scaling. Has an overlay text option at the top of the plot for displaying any information.
hasChildren = false
hasState = true
Arguments = {
Text: string? = "Plot Lines",
Height: number? = 0,
Min: number? = min, -- Iris will use the minimum value from the values
Max: number? = max, -- Iris will use the maximum value from the values
TextOverlay: string? = ""
}
Events = {
hovered: () -> boolean
}
States = {
values: State<{number}>?,
hovered: State<{number}>? -- read-only property
}
PlotHistogram
WidgetHasStatePlot.PlotHistogram:
Iris.PlotHistogram
A hisogram graph for showing values. Includes hovering to see a specific block on the graph, and automatic scaling. Has an overlay text option at the top of the plot for displaying any information. Also supports a baseline option, which determines where the blocks start from.
hasChildren = false
hasState = true
Arguments = {
Text: string? = "Plot Histogram",
Height: number? = 0,
Min: number? = min, -- Iris will use the minimum value from the values
Max: number? = max, -- Iris will use the maximum value from the values
TextOverlay: string? = "",
BaseLine: number? = 0 -- by default, blocks swap side at 0
}
Events = {
hovered: () -> boolean
}
States = {
values: State<{number}>?,
hovered: State<{number}>? -- read-only property
}