Base class for all theme elements. Each property can be Nothing/null meaning "inherit from parent element". This enables property-level inheritance matching ggplot2's theme inheritance system.
ThemeElement
01 Syntax
Microsoft.VisualBasic.Data.Plots.GgplotTheme.ThemeElement
02 Methods
| Name | Overloads | Summary |
|---|---|---|
| MergeFrom | 1 | Merges unset properties from a parent element into this element. |
| ToCssBody | 1 | Returns the CSS rule body (properties) for this element. |
| SetPropertyFromCss | 1 | Sets a property by name from a CSS value string. |
| Clone | 1 |
03 Properties
04 Members
MergeFrom(ThemeElement)
Merges unset properties from a parent element into this element. Only properties that are Nothing (unset) in this element are filled from the parent. This implements property-level inheritance.
ToCssBody
Returns the CSS rule body (properties) for this element.
SetPropertyFromCss(
String, String)Sets a property by name from a CSS value string. Used by the CSS parser.
IsBlank
If True, this element is "blank" (element_blank) and should not be rendered.
IsSet
True if this element has been explicitly set in the theme.
Clone()