This commit is contained in:
NoryiE
2025-04-06 04:52:12 +00:00
parent 4dd6bbac7f
commit b3b1cb4e48
5 changed files with 18 additions and 7 deletions

View File

@@ -1,5 +1,5 @@
# Container : VisualElement
The Container class serves as a fundamental building block for organizing UI elements. It acts as a parent element that can hold and manage child elements, providing layout management, event propagation, and rendering capabilities. Used as base class for Frames, Windows, and other container-like elements.
The Container class serves as a fundamental building block for organizing UI elements. It acts as a parent element that can hold and manage child elements.
### Usage
```lua

View File

@@ -30,7 +30,7 @@ end)
|Method|Returns|Description|
|---|---|---|
|[Graph:addPoint](#graph-addpoint)|Graph|Adds a point to a series
|[Graph:addSeries](#graph-addseries)|-|Adds a series to the graph
|[Graph:addSeries](#graph-addseries)|Graph|Adds a series to the graph
|[Graph:changeSeriesVisibility](#graph-changeseriesvisibility)|Graph|Changes the visibility of a series
|[Graph:clear](#graph-clear)|Graph|Clears all points from a series
|[Graph:focusSeries](#graph-focusseries)|Graph|Focuses a series
@@ -64,6 +64,9 @@ end)
* `fgCol` `number` The foreground color of the series
* `pointCount` `number` The number of points in the series
### Returns
* `Graph` `self` The graph instance
## Graph:changeSeriesVisibility(name, visible)
### Parameters