Uses of Class
org.vaadin.firitin.element.svg.LineElement

Packages that use LineElement
Package
Description
 
  • Uses of LineElement in org.vaadin.firitin.element.svg

    Modifier and Type
    Method
    Description
    LineElement.from(double x1, double y1)
    Convenience method to set the starting point (x1, y1) at once.
    LineElement.from(String x1, String y1)
    Convenience method to set the starting point with strings (supports units/percentages).
    LineElement.fromRW(double x1, double y1)
    Convenience method to set the starting point (x1, y1) at once (read-write).
    LineElement.fromRW(String x1, String y1)
    Convenience method to set the starting point with strings (read-write).
    LineElement.pathLength(double pathLength)
    Sets the total length for the line's path in user units.
    LineElement.pathLengthRW(double pathLength)
    Sets the total length for the line's path in user units (read-write).
    LineElement.points(double x1, double y1, double x2, double y2)
    Convenience method to set both start and end points at once.
    LineElement.pointsRW(double x1, double y1, double x2, double y2)
    Convenience method to set both start and end points at once (read-write).
    LineElement.to(double x2, double y2)
    Convenience method to set the ending point (x2, y2) at once.
    LineElement.to(String x2, String y2)
    Convenience method to set the ending point with strings (supports units/percentages).
    LineElement.toRW(double x2, double y2)
    Convenience method to set the ending point (x2, y2) at once (read-write).
    LineElement.toRW(String x2, String y2)
    Convenience method to set the ending point with strings (read-write).
    LineElement.x1(double x1)
    Sets the x-axis coordinate of the line starting point.
    LineElement.x1(String x1)
    Sets the x-axis coordinate of the line starting point with a unit or percentage.
    LineElement.x1RW(double x1)
    Sets the x-axis coordinate of the line starting point (read-write).
    LineElement.x1RW(String x1)
    Sets the x-axis coordinate of the line starting point with a unit or percentage (read-write).
    LineElement.x2(double x2)
    Sets the x-axis coordinate of the line ending point.
    LineElement.x2(String x2)
    Sets the x-axis coordinate of the line ending point with a unit or percentage.
    LineElement.x2RW(double x2)
    Sets the x-axis coordinate of the line ending point (read-write).
    LineElement.x2RW(String x2)
    Sets the x-axis coordinate of the line ending point with a unit or percentage (read-write).
    LineElement.y1(double y1)
    Sets the y-axis coordinate of the line starting point.
    LineElement.y1(String y1)
    Sets the y-axis coordinate of the line starting point with a unit or percentage.
    LineElement.y1RW(double y1)
    Sets the y-axis coordinate of the line starting point (read-write).
    LineElement.y1RW(String y1)
    Sets the y-axis coordinate of the line starting point with a unit or percentage (read-write).
    LineElement.y2(double y2)
    Sets the y-axis coordinate of the line ending point.
    LineElement.y2(String y2)
    Sets the y-axis coordinate of the line ending point with a unit or percentage.
    LineElement.y2RW(double y2)
    Sets the y-axis coordinate of the line ending point (read-write).
    LineElement.y2RW(String y2)
    Sets the y-axis coordinate of the line ending point with a unit or percentage (read-write).