java.lang.Object
io.jmix.chartsflowui.kit.component.model.ChartObservableObject
io.jmix.chartsflowui.kit.component.model.series.mark.MarkLine.Data
All Implemented Interfaces:
Serializable
Enclosing class:
MarkLine

public static class MarkLine.Data extends ChartObservableObject
Component to configure data for the mark line. The line can be configured with single point or two points.
  • Single point example:
    
                  <charts:markLine>
                      <charts:data>
                          // Max line
                          <charts:singlePointLine type="MAX"/>
                       </charts:data>
                  </charts:markLine>
             
  • Two points example:
    
                  <charts:markLine>
                      <charts:data>
                          // two points line
                          <charts:pairPointLine>
                              <charts:startPoint numberCoordinate="100, 200"/>
                              <charts:endPoint stringCoordinate="50%, 25%"/>
                          </charts:pairPointLine>
                      </charts:data>
                  </charts:markLine>
             
See Also: