Uses of Class
org.vaadin.firitin.element.svg.SvgElement
Packages that use SvgElement
-
Uses of SvgElement in org.vaadin.firitin.components
Methods in org.vaadin.firitin.components that return SvgElement -
Uses of SvgElement in org.vaadin.firitin.element.svg
Subclasses of SvgElement in org.vaadin.firitin.element.svgModifier and TypeClassDescriptionclassA typed Java API for the SVG<circle>element.classA typed Java API for the SVG<clipPath>element.classA typed Java API for the SVG<defs>element.classA typed Java API for the SVG<ellipse>element.classA typed Java API for the SVG<g>(group) element.classA typed Java API for the SVG<image>element.classA typed Java API for the SVG<linearGradient>element.classA typed Java API for the SVG<line>element.classA typed Java API for the SVG<mask>element.classA typed Java API for the SVG<path>element.classA typed Java API for the SVG<pattern>element.classA typed Java API for the SVG<polygon>element.classA typed Java API for the SVG<polyline>element.classA typed Java API for the SVG<radialGradient>element.classA typed Java API for the SVG<rect>element.classA typed Java API for the SVG<stop>element.classBase class for SVG graphics elements that can be rendered with fill and stroke.classA typed Java API for the SVG<symbol>element.classA typed Java API for the SVG<text>element.classA typed Java API for the SVG<textPath>element.classA typed Java API for the SVG<tspan>element.classA typed Java API for the SVG<use>element.Methods in org.vaadin.firitin.element.svg with type parameters of type SvgElementModifier and TypeMethodDescription<T extends SvgElement>
TSvgElement.height(double height) Sets the height of the SVG element.<T extends SvgElement>
TSets the height of the SVG element with a unit.<T extends SvgElement>
TSets the ID of this element.<T extends SvgElement>
TSvgElement.preserveAspectRatio(String ratio) Sets the preserveAspectRatio attribute with a custom value.<T extends SvgElement>
TSvgElement.preserveAspectRatio(SvgElement.PreserveAspectRatio ratio) Sets the preserveAspectRatio attribute.<T extends SvgElement>
TSvgElement.size(double width, double height) Sets the size of the SVG element.<T extends SvgElement>
TSets the size of the SVG element with units.<T extends SvgElement>
TSvgElement.viewBox(double minX, double minY, double width, double height) Sets the viewBox attribute, which defines the position and dimension of the SVG viewport.<T extends SvgElement>
TSvgElement.width(double width) Sets the width of the SVG element.<T extends SvgElement>
TSets the width of the SVG element with a unit.Methods in org.vaadin.firitin.element.svg that return SvgElementMethods in org.vaadin.firitin.element.svg with parameters of type SvgElementModifier and TypeMethodDescriptionClipPathElement.add(SvgElement... shapes) Adds shape elements to this clip path.DefsElement.add(SvgElement... definitions) Adds definition elements to this defs container.GElement.add(SvgElement... children) Appends child elements to this group.MaskElement.add(SvgElement... elements) Adds content elements to this mask.PatternElement.add(SvgElement... elements) Adds content elements to this pattern.SymbolElement.add(SvgElement... children) Adds child elements to this symbol.TextElement.add(SvgElement... children) Adds child elements to this text element.UseElement.ref(SvgElement element) Sets the reference to the given element.Constructors in org.vaadin.firitin.element.svg with parameters of type SvgElementModifierConstructorDescriptionUseElement(SvgElement element) Creates a use element referencing the given element.