Trait

scalatags.generic

SvgAttrs

Related Doc: package generic

Permalink

trait SvgAttrs[Builder, Output <: FragT, FragT] extends Util[Builder, Output, FragT]

Linear Supertypes
Util[Builder, Output, FragT], LowPriUtil[Builder, Output, FragT], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SvgAttrs
  2. Util
  3. LowPriUtil
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. abstract type ConcreteHtmlTag[T <: Output] <: TypedTag[Builder, T, FragT]

    Permalink
    Definition Classes
    Util
  2. implicit class SeqNode[A] extends Modifier[Builder]

    Permalink

    Allows you to modify a ConcreteHtmlTag by adding a Seq containing other nest-able objects to its list of children.

    Allows you to modify a ConcreteHtmlTag by adding a Seq containing other nest-able objects to its list of children.

    Definition Classes
    Util

Abstract Value Members

  1. implicit abstract def SeqFrag[A](xs: Seq[A])(implicit ev: (A) ⇒ Frag[Builder, FragT]): Frag[Builder, FragT]

    Permalink

    Renders an Seq of FragT into a single FragT

    Renders an Seq of FragT into a single FragT

    Definition Classes
    LowPriUtil
  2. implicit abstract def UnitFrag(u: Unit): Frag[Builder, FragT]

    Permalink

    Lets you put Unit into a scalatags tree, as a no-op.

    Lets you put Unit into a scalatags tree, as a no-op.

    Definition Classes
    LowPriUtil
  3. abstract def makeAbstractTypedTag[T <: Output](tag: String, void: Boolean, namespaceConfig: Namespace): ConcreteHtmlTag[T]

    Permalink
    Definition Classes
    Util
  4. implicit abstract def stringAttrX: AttrValue[Builder, String]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Util
  5. implicit abstract def stringPixelStyleX: PixelStyleValue[Builder, String]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Util
  6. implicit abstract def stringStyleX: StyleValue[Builder, String]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Util
  7. abstract def tag(s: String, void: Boolean = false): TypedTag[Builder, Output, FragT]

    Permalink
    Definition Classes
    Util

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. implicit def ArrayFrag[A](xs: Array[A])(implicit ev: (A) ⇒ Frag[Builder, FragT]): Frag[Builder, FragT]

    Permalink

    Renders an Seq of FragT into a single FragT

    Renders an Seq of FragT into a single FragT

    Definition Classes
    LowPriUtil
  5. implicit def ArrayNode[A](xs: Array[A])(implicit ev: (A) ⇒ Modifier[Builder]): SeqNode[A]

    Permalink

    Allows you to modify a ConcreteHtmlTag by adding an Array containing other nest-able objects to its list of children.

    Allows you to modify a ConcreteHtmlTag by adding an Array containing other nest-able objects to its list of children.

    Definition Classes
    Util
  6. implicit def OptionFrag[A](xs: Option[A])(implicit ev: (A) ⇒ Frag[Builder, FragT]): Frag[Builder, FragT]

    Permalink

    Renders an Option of FragT into a single FragT

    Renders an Option of FragT into a single FragT

    Definition Classes
    LowPriUtil
  7. implicit def OptionNode[A](xs: Option[A])(implicit ev: (A) ⇒ Modifier[Builder]): SeqNode[A]

    Permalink

    Allows you to modify a ConcreteHtmlTag by adding an Option containing other nest-able objects to its list of children.

    Allows you to modify a ConcreteHtmlTag by adding an Option containing other nest-able objects to its list of children.

    Definition Classes
    Util
  8. lazy val accentHeight: Attr

    Permalink

    This attribute defines the distance from the origin to the top of accent characters, measured by a distance within the font coordinate system.

    This attribute defines the distance from the origin to the top of accent characters, measured by a distance within the font coordinate system. If the attribute is not specified, the effect is as if the attribute were set to the value of the ascent attribute.

    Value <number>

    MDN

  9. lazy val accumulate: Attr

    Permalink

    This attribute controls whether or not the animation is cumulative.

    This attribute controls whether or not the animation is cumulative. It is frequently useful for repeated animations to build upon the previous results, accumulating with each iteration. This attribute said to the animation if the value is added to the previous animated attribute's value on each iteration.

    Value none | sum

    MDN

  10. lazy val additive: Attr

    Permalink

    This attribute controls whether or not the animation is additive.

    This attribute controls whether or not the animation is additive. It is frequently useful to define animation as an offset or delta to an attribute's value, rather than as absolute values. This attribute said to the animation if their values are added to the original animated attribute's value.

    Value replace | sum

    MDN

  11. lazy val alignmentBaseline: Attr

    Permalink

    The alignment-baseline attribute specifies how an object is aligned with respect to its parent.

    The alignment-baseline attribute specifies how an object is aligned with respect to its parent. This property specifies which baseline of this element is to be aligned with the corresponding baseline of the parent. For example, this allows alphabetic baselines in Roman text to stay aligned across font size changes. It defaults to the baseline with the same name as the computed value of the alignment-baseline property. As a presentation attribute, it also can be used as a property directly inside a CSS stylesheet, see css alignment-baseline for further information.

    Value: auto | baseline | before-edge | text-before-edge | middle | central | after-edge | text-after-edge | ideographic | alphabetic | hanging | mathematical | inherit

    MDN

  12. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  13. lazy val ascent: Attr

    Permalink

    This attribute defines the maximum unaccented depth of the font within the font coordinate system.

    This attribute defines the maximum unaccented depth of the font within the font coordinate system. If the attribute is not specified, the effect is as if the attribute were set to the vert-origin-y value for the corresponding font.

    Value <number>

    MDN

  14. def attr(s: String, ns: Namespace = null, raw: Boolean = false): Attr

    Permalink

    Constructs an Attr attribute object from a string; can be used inline:

    Constructs an Attr attribute object from a string; can be used inline:

    div(
      attr("hello-world-special-attr") := "foo
    )

    Or assigned to a name and used later

    val hello = attr("hello-world-special-attr")
    div(
      hello := "foo
    )
    Definition Classes
    Util
  15. lazy val attributeName: Attr

    Permalink

    This attribute indicates the name of the attribute in the parent element that is going to be changed during an animation.

    This attribute indicates the name of the attribute in the parent element that is going to be changed during an animation.

    Value <attributeName>

    MDN

  16. lazy val attributeType: Attr

    Permalink

    This attribute specifies the namespace in which the target attribute and its associated values are defined.

    This attribute specifies the namespace in which the target attribute and its associated values are defined.

    Value CSS | XML | auto

    MDN

  17. lazy val azimuth: Attr

    Permalink

    The azimuth attribute represent the direction angle for the light source on the XY plane (clockwise), in degrees from the x axis.

    The azimuth attribute represent the direction angle for the light source on the XY plane (clockwise), in degrees from the x axis. If the attribute is not specified, then the effect is as if a value of 0 were specified.

    Value <number>

    MDN

  18. lazy val baseFrequency: Attr

    Permalink

    The baseFrequency attribute represent The base frequencies parameter for the noise function of the <feturbulence> primitive.

    The baseFrequency attribute represent The base frequencies parameter for the noise function of the <feturbulence> primitive. If two <number>s are provided, the first number represents a base frequency in the X direction and the second value represents a base frequency in the Y direction. If one number is provided, then that value is used for both X and Y. Negative values are forbidden. If the attribute is not specified, then the effect is as if a value of 0 were specified.

    Value <number-optional-number>

    MDN

  19. lazy val baselineShift: Attr

    Permalink

    The baseline-shift attribute allows repositioning of the dominant-baseline relative to the dominant-baseline of the parent text content element.

    The baseline-shift attribute allows repositioning of the dominant-baseline relative to the dominant-baseline of the parent text content element. The shifted object might be a sub- or superscript. As a presentation attribute, it also can be used as a property directly inside a CSS stylesheet, see css baseline-shift for further information.

    Value auto | baseline | sup | sub | <percentage> | <length> | inherit

    MDN

  20. lazy val begin: Attr

    Permalink

    This attribute defines when an animation should begin.

    This attribute defines when an animation should begin. The attribute value is a semicolon separated list of values. The interpretation of a list of start times is detailed in the SMIL specification in "Evaluation of begin and end time lists". Each individual value can be one of the following: <offset-value>, <syncbase-value>, <event-value>, <repeat-value>, <accessKey-value>, <wallclock-sync-value> or the keyword indefinite.

    Value <begin-value-list>

    MDN

  21. lazy val bias: Attr

    Permalink

    The bias attribute shifts the range of the filter.

    The bias attribute shifts the range of the filter. After applying the kernelMatrix of the <feConvolveMatrix> element to the input image to yield a number and applied the divisor attribute, the bias attribute is added to each component. This allows representation of values that would otherwise be clamped to 0 or 1. If bias is not specified, then the effect is as if a value of 0 were specified.

    Value <number>

    MDN

  22. lazy val calcMode: Attr

    Permalink

    This attribute specifies the interpolation mode for the animation.

    This attribute specifies the interpolation mode for the animation. The default mode is linear, however if the attribute does not support linear interpolation (e.g. for strings), the calcMode attribute is ignored and discrete interpolation is used.

    Value discrete | linear | paced | spline

    MDN

  23. lazy val class: Attr

    Permalink

    Assigns a class name or set of class names to an element.

    Assigns a class name or set of class names to an element. You may assign the same class name or names to any number of elements. If you specify multiple class names, they must be separated by whitespace characters. The class name of an element has two key roles: -As a style sheet selector, for use when an author wants to assign style information to a set of elements. -For general usage by the browser. The class can be used to style SVG content using CSS.

    Value <list-of-class-names>

    MDN

  24. lazy val clip: Attr

    Permalink

    The clip attribute has the same parameter values as defined for the css clip property.

    The clip attribute has the same parameter values as defined for the css clip property. Unitless values, which indicate current user coordinates, are permitted on the coordinate values on the <shape>. The value of auto defines a clipping path along the bounds of the viewport created by the given element. As a presentation attribute, it also can be used as a property directly inside a CSS stylesheet, see css clip for further information.

    Value auto | <shape> | inherit

    MDN

  25. lazy val clipPath: Attr

    Permalink

    The clip-path attribute bind the element is applied to with a given <clipPath> element As a presentation attribute, it also can be used as a property directly inside a CSS stylesheet

    The clip-path attribute bind the element is applied to with a given <clipPath> element As a presentation attribute, it also can be used as a property directly inside a CSS stylesheet

    Value <FuncIRI> | none | inherit

    MDN

  26. lazy val clipPathUnits: Attr

    Permalink

    The clipPathUnits attribute defines the coordinate system for the contents of the <clipPath> element.

    The clipPathUnits attribute defines the coordinate system for the contents of the <clipPath> element. the clipPathUnits attribute is not specified, then the effect is as if a value of userSpaceOnUse were specified. Note that values defined as a percentage inside the content of the <clipPath> are not affected by this attribute. It means that even if you set the value of maskContentUnits to objectBoundingBox, percentage values will be calculated as if the value of the attribute were userSpaceOnUse.

    Value userSpaceOnUse | objectBoundingBox

    MDN

  27. lazy val clipRule: Attr

    Permalink

    The clip-rule attribute only applies to graphics elements that are contained within a <clipPath> element.

    The clip-rule attribute only applies to graphics elements that are contained within a <clipPath> element. The clip-rule attribute basically works as the fill-rule attribute, except that it applies to <clipPath> definitions.

    Value nonezero | evenodd | inherit

    MDN

  28. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. lazy val color: Attr

    Permalink

    The color attribute is used to provide a potential indirect value (currentColor) for the fill, stroke, stop-color, flood-color and lighting-color attributes.

    The color attribute is used to provide a potential indirect value (currentColor) for the fill, stroke, stop-color, flood-color and lighting-color attributes. As a presentation attribute, it also can be used as a property directly inside a CSS stylesheet, see css color for further information.

    Value <color> | inherit

    MDN

  30. lazy val colorInterpolation: Attr

    Permalink

    The color-interpolation attribute specifies the color space for gradient interpolations, color animations and alpha compositing.When a child element is blended into a background, the value of the color-interpolation attribute on the child determines the type of blending, not the value of the color-interpolation on the parent.

    The color-interpolation attribute specifies the color space for gradient interpolations, color animations and alpha compositing.When a child element is blended into a background, the value of the color-interpolation attribute on the child determines the type of blending, not the value of the color-interpolation on the parent. For gradients which make use of the xlink:href attribute to reference another gradient, the gradient uses the color-interpolation attribute value from the gradient element which is directly referenced by the fill or stroke attribute. When animating colors, color interpolation is performed according to the value of the color-interpolation attribute on the element being animated. As a presentation attribute, it also can be used as a property directly inside a CSS stylesheet, see css color-interpolation for further information

    Value auto | sRGB | linearRGB | inherit

    MDN

  31. lazy val colorInterpolationFilters: Attr

    Permalink

    The color-interpolation-filters attribute specifies the color space for imaging operations performed via filter effects.

    The color-interpolation-filters attribute specifies the color space for imaging operations performed via filter effects. Note that color-interpolation-filters has a different initial value than color-interpolation. color-interpolation-filters has an initial value of linearRGB, whereas color-interpolation has an initial value of sRGB. Thus, in the default case, filter effects operations occur in the linearRGB color space, whereas all other color interpolations occur by default in the sRGB color space. As a presentation attribute, it also can be used as a property directly inside a CSS stylesheet, see css color-interpolation-filters for further information

    Value auto | sRGB | linearRGB | inherit

    MDN

  32. lazy val colorProfile: Attr

    Permalink

    The color-profile attribute is used to define which color profile a raster image included through the <image> element should use.

    The color-profile attribute is used to define which color profile a raster image included through the <image> element should use. As a presentation attribute, it also can be used as a property directly inside a CSS stylesheet, see css color-profile for further information.

    Value auto | sRGB | <name> | <IRI> | inherit

    MDN

  33. lazy val colorRendering: Attr

    Permalink

    The color-rendering attribute provides a hint to the SVG user agent about how to optimize its color interpolation and compositing operations.

    The color-rendering attribute provides a hint to the SVG user agent about how to optimize its color interpolation and compositing operations. color-rendering takes precedence over color-interpolation-filters. For example, assume color-rendering: optimizeSpeed and color-interpolation-filters: linearRGB. In this case, the SVG user agent should perform color operations in a way that optimizes performance, which might mean sacrificing the color interpolation precision as specified by color-interpolation-filters: linearRGB. As a presentation attribute, it also can be used as a property directly inside a CSS stylesheet, see css color-rendering for further information

    Value auto | optimizeSpeed | optimizeQuality | inherit

    MDN

  34. lazy val contentScriptType: Attr

    Permalink

    The contentScriptType attribute on the <svg> element specifies the default scripting language for the given document fragment.

    The contentScriptType attribute on the <svg> element specifies the default scripting language for the given document fragment. This attribute sets the default scripting language used to process the value strings in event attributes. This language must be used for all instances of script that do not specify their own scripting language. The value content-type specifies a media type, per MIME Part Two: Media Types [RFC2046]. The default value is application/ecmascript

    Value <content-type>

    MDN

  35. lazy val contentStyleType: Attr

    Permalink

    This attribute specifies the style sheet language for the given document fragment.

    This attribute specifies the style sheet language for the given document fragment. The contentStyleType is specified on the <svg> element. By default, if it's not defined, the value is text/css

    Value <content-type>

    MDN

  36. def css(s: String): Style

    Permalink

    Constructs a CSS Style from a string, can be used inline

    Constructs a CSS Style from a string, can be used inline

    div(
      css("-moz-special-style") := "foo"
    )

    Or assigned to a name and used later

    val mozSpecial := css("-moz-special-style")
    div(
      mozSpecial := "foo"
    )
    Definition Classes
    Util
  37. lazy val cursor: Attr

    Permalink

    The cursor attribute specifies the mouse cursor displayed when the mouse pointer is over an element.This attribute behave exactly like the css cursor property except that if the browser suport the <cursor> element, it should allow to use it with the <funciri> notation.

    The cursor attribute specifies the mouse cursor displayed when the mouse pointer is over an element.This attribute behave exactly like the css cursor property except that if the browser suport the <cursor> element, it should allow to use it with the <funciri> notation. As a presentation attribute, it also can be used as a property directly inside a CSS stylesheet, see css cursor for further information.

    Value auto | crosshair | default | pointer | move | e-resize | ne-resize | nw-resize | n-resize | se-resize | sw-resize | s-resize | w-resize| text | wait | help | inherit

    MDN

  38. lazy val cx: Attr

    Permalink

    For the <circle> and the <ellipse> element, this attribute define the x-axis coordinate of the center of the element.

    For the <circle> and the <ellipse> element, this attribute define the x-axis coordinate of the center of the element. If the attribute is not specified, the effect is as if a value of "0" were specified.For the <radialGradient> element, this attribute define the x-axis coordinate of the largest (i.e., outermost) circle for the radial gradient. The gradient will be drawn such that the 100% gradient stop is mapped to the perimeter of this largest (i.e., outermost) circle. If the attribute is not specified, the effect is as if a value of 50% were specified

    Value <coordinate>

    MDN

  39. lazy val cy: Attr

    Permalink

    For the <circle> and the <ellipse> element, this attribute define the y-axis coordinate of the center of the element.

    For the <circle> and the <ellipse> element, this attribute define the y-axis coordinate of the center of the element. If the attribute is not specified, the effect is as if a value of "0" were specified.For the <radialGradient> element, this attribute define the x-axis coordinate of the largest (i.e., outermost) circle for the radial gradient. The gradient will be drawn such that the 100% gradient stop is mapped to the perimeter of this largest (i.e., outermost) circle. If the attribute is not specified, the effect is as if a value of 50% were specified

    Value <coordinate>

    MDN

  40. lazy val d: Attr

    Permalink

    MDN

  41. lazy val diffuseConstant: Attr

    Permalink

    MDN

  42. lazy val direction: Attr

    Permalink

    MDN

  43. lazy val display: Attr

    Permalink

    MDN

  44. lazy val divisor: Attr

    Permalink

    MDN

  45. lazy val dominantBaseline: Attr

    Permalink

    MDN

  46. lazy val dur: Attr

    Permalink

    MDN

  47. lazy val dx: Attr

    Permalink

    MDN

  48. lazy val dy: Attr

    Permalink

    MDN

  49. lazy val edgeMode: Attr

    Permalink

    MDN

  50. lazy val elevation: Attr

    Permalink

    MDN

  51. lazy val end: Attr

    Permalink

    MDN

  52. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  53. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  54. lazy val externalResourcesRequired: Attr

    Permalink

    MDN

  55. lazy val fill: Attr

    Permalink

    MDN

  56. lazy val fillOpacity: Attr

    Permalink

    MDN

  57. lazy val fillRule: Attr

    Permalink

    MDN

  58. lazy val filter: Attr

    Permalink

    MDN

  59. lazy val filterRes: Attr

    Permalink

    MDN

  60. lazy val filterUnits: Attr

    Permalink

    MDN

  61. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  62. lazy val floodColor: Attr

    Permalink

    MDN

  63. lazy val floodOpacity: Attr

    Permalink

    MDN

  64. lazy val fontFamily: Attr

    Permalink

    MDN

  65. lazy val fontSize: Attr

    Permalink

    MDN

  66. lazy val fontSizeAdjust: Attr

    Permalink

    MDN

  67. lazy val fontStretch: Attr

    Permalink

    MDN

  68. lazy val fontVariant: Attr

    Permalink

    MDN

  69. lazy val fontWeight: Attr

    Permalink

    MDN

  70. def frag(frags: Frag[Builder, FragT]*): Frag[Builder, FragT]

    Permalink
    Definition Classes
    Util
  71. lazy val from: Attr

    Permalink

    MDN

  72. lazy val fx: Attr

    Permalink

    MDN

  73. lazy val fy: Attr

    Permalink

    MDN

  74. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  75. lazy val gradientTransform: Attr

    Permalink

    MDN

  76. lazy val gradientUnits: Attr

    Permalink

    MDN

  77. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  78. lazy val height: Attr

    Permalink

    MDN

  79. lazy val id: Attr

    Permalink
  80. lazy val imageRendering: Attr

    Permalink

    MDN

  81. lazy val in: Attr

    Permalink

    MDN

  82. lazy val in2: Attr

    Permalink

    MDN

  83. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  84. lazy val k1: Attr

    Permalink

    MDN

  85. lazy val k2: Attr

    Permalink

    MDN

  86. lazy val k3: Attr

    Permalink

    MDN

  87. lazy val k4: Attr

    Permalink

    MDN

  88. lazy val kernelMatrix: Attr

    Permalink

    MDN

  89. lazy val kernelUnitLength: Attr

    Permalink

    MDN

  90. lazy val kerning: Attr

    Permalink

    MDN

  91. lazy val keySplines: Attr

    Permalink

    MDN

  92. lazy val keyTimes: Attr

    Permalink

    MDN

  93. lazy val letterSpacing: Attr

    Permalink

    MDN

  94. lazy val lightingColor: Attr

    Permalink

    MDN

  95. lazy val limitingConeAngle: Attr

    Permalink

    MDN

  96. lazy val local: Attr

    Permalink

    MDN

  97. lazy val markerEnd: Attr

    Permalink

    MDN

  98. lazy val markerHeight: Attr

    Permalink

    MDN

  99. lazy val markerMid: Attr

    Permalink

    MDN

  100. lazy val markerStart: Attr

    Permalink

    MDN

  101. lazy val markerUnits: Attr

    Permalink

    MDN

  102. lazy val markerWidth: Attr

    Permalink

    MDN

  103. lazy val mask: Attr

    Permalink

    MDN

  104. lazy val maskContentUnits: Attr

    Permalink

    MDN

  105. lazy val maskUnits: Attr

    Permalink

    MDN

  106. lazy val max: Attr

    Permalink

    MDN

  107. lazy val min: Attr

    Permalink

    MDN

  108. lazy val mode: Attr

    Permalink

    MDN

  109. def modifier(mods: Modifier[Builder]*): Modifier[Builder]

    Permalink
    Definition Classes
    Util
  110. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  111. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  112. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  113. lazy val numOctaves: Attr

    Permalink

    MDN

  114. lazy val offset: Attr

    Permalink
  115. lazy val opacity: Attr

    Permalink

    MDN

  116. lazy val operator: Attr

    Permalink

    MDN

  117. lazy val order: Attr

    Permalink

    MDN

  118. lazy val orient: Attr

    Permalink

    The ‘orient’ attribute indicates how the marker is rotated when it is placed at its position on the markable element.

    The ‘orient’ attribute indicates how the marker is rotated when it is placed at its position on the markable element.

    W3C

  119. lazy val overflow: Attr

    Permalink

    MDN

  120. lazy val paintOrder: Attr

    Permalink

    MDN

  121. lazy val pathLength: Attr

    Permalink

    MDN

  122. lazy val patternContentUnits: Attr

    Permalink

    MDN

  123. lazy val patternTransform: Attr

    Permalink

    MDN

  124. lazy val patternUnits: Attr

    Permalink

    MDN

  125. lazy val pointerEvents: Attr

    Permalink

    MDN

  126. lazy val points: Attr

    Permalink

    MDN

  127. lazy val pointsAtX: Attr

    Permalink

    MDN

  128. lazy val pointsAtY: Attr

    Permalink

    MDN

  129. lazy val pointsAtZ: Attr

    Permalink

    MDN

  130. lazy val preserveAlpha: Attr

    Permalink

    MDN

  131. lazy val preserveAspectRatio: Attr

    Permalink

    MDN

  132. lazy val primitiveUnits: Attr

    Permalink

    MDN

  133. lazy val r: Attr

    Permalink

    MDN

  134. lazy val radius: Attr

    Permalink

    MDN

  135. lazy val refX: Attr

    Permalink

    The ‘refX’ attribute defines the reference point of the marker which is to be placed exactly at the marker's position on the markable element.

    The ‘refX’ attribute defines the reference point of the marker which is to be placed exactly at the marker's position on the markable element. It is interpreted as being in the coordinate system of the marker contents, after application of the ‘viewBox’ and ‘preserveAspectRatio’ attributes.

    W3C

  136. lazy val refY: Attr

    Permalink

    The ‘refY’ attribute defines the reference point of the marker which is to be placed exactly at the marker's position on the markable element.

    The ‘refY’ attribute defines the reference point of the marker which is to be placed exactly at the marker's position on the markable element. It is interpreted as being in the coordinate system of the marker contents, after application of the ‘viewBox’ and ‘preserveAspectRatio’ attributes.

    W3C

  137. lazy val repeatCount: Attr

    Permalink

    MDN

  138. lazy val repeatDur: Attr

    Permalink

    MDN

  139. lazy val requiredFeatures: Attr

    Permalink

    MDN

  140. lazy val restart: Attr

    Permalink

    MDN

  141. lazy val result: Attr

    Permalink

    MDN

  142. lazy val rx: Attr

    Permalink

    MDN

  143. lazy val ry: Attr

    Permalink

    MDN

  144. lazy val scale: Attr

    Permalink

    MDN

  145. lazy val seed: Attr

    Permalink

    MDN

  146. lazy val shapeRendering: Attr

    Permalink

    MDN

  147. lazy val specularConstant: Attr

    Permalink

    MDN

  148. lazy val specularExponent: Attr

    Permalink

    MDN

  149. lazy val spreadMethod: Attr

    Permalink

    MDN

  150. lazy val stdDeviation: Attr

    Permalink

    MDN

  151. lazy val stitchTiles: Attr

    Permalink

    MDN

  152. lazy val stopColor: Attr

    Permalink

    MDN

  153. lazy val stopOpacity: Attr

    Permalink

    MDN

  154. lazy val stroke: Attr

    Permalink

    MDN

  155. lazy val strokeDasharray: Attr

    Permalink

    MDN

  156. lazy val strokeDashoffset: Attr

    Permalink

    MDN

  157. lazy val strokeLinecap: Attr

    Permalink

    MDN

  158. lazy val strokeLinejoin: Attr

    Permalink

    MDN

  159. lazy val strokeMiterlimit: Attr

    Permalink

    MDN

  160. lazy val strokeOpacity: Attr

    Permalink

    MDN

  161. lazy val strokeWidth: Attr

    Permalink

    MDN

  162. lazy val style: Attr

    Permalink

    MDN

  163. lazy val surfaceScale: Attr

    Permalink

    MDN

  164. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  165. lazy val targetX: Attr

    Permalink

    MDN

  166. lazy val targetY: Attr

    Permalink

    MDN

  167. lazy val textAnchor: Attr

    Permalink

    MDN

  168. lazy val textDecoration: Attr

    Permalink

    MDN

  169. lazy val textRendering: Attr

    Permalink

    MDN

  170. lazy val to: Attr

    Permalink

    MDN

  171. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  172. lazy val transform: Attr

    Permalink
  173. lazy val type: Attr

    Permalink
  174. lazy val values: Attr

    Permalink
  175. lazy val viewBox: Attr

    Permalink

    MDN

  176. lazy val visibility: Attr

    Permalink
  177. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  178. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  179. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  180. lazy val width: Attr

    Permalink
  181. lazy val wordSpacing: Attr

    Permalink
  182. lazy val writingMode: Attr

    Permalink
  183. lazy val x: Attr

    Permalink
  184. lazy val x1: Attr

    Permalink
  185. lazy val x2: Attr

    Permalink
  186. lazy val xChannelSelector: Attr

    Permalink
  187. lazy val xLink: Attr

    Permalink
  188. lazy val xLinkHref: Attr

    Permalink
  189. lazy val xLinkTitle: Attr

    Permalink
  190. lazy val xmlSpace: Attr

    Permalink
  191. lazy val xmlns: Attr

    Permalink

    MDN

  192. lazy val xmlnsXlink: Attr

    Permalink

    MDN

  193. lazy val y: Attr

    Permalink
  194. lazy val y1: Attr

    Permalink
  195. lazy val y2: Attr

    Permalink
  196. lazy val yChannelSelector: Attr

    Permalink
  197. lazy val z: Attr

    Permalink

Inherited from Util[Builder, Output, FragT]

Inherited from LowPriUtil[Builder, Output, FragT]

Inherited from AnyRef

Inherited from Any

Ungrouped