Striplines

22 Jan 20183 minutes to read

Chart supports horizontal and vertical striplines.

Horizontal Stripline

You can create horizontal stripline by adding the Stripline in the vertical axis and setting Visible option to true. Striplines are rendered in the specified Start to End range, and you can add more than one stripline for an axis.

  • CSHTML
  • <ej-chart id="chartContainer">
        // ...
        <e-primary-y-axis>
            <e-strip-lines><e-strip-line visible="true" start="30" end="40"></e-strip-line></e-strip-lines>
        </e-primary-y-axis>
        // ...
    </ej-chart>

    Vertical Stripline

    You can create vertical stripline by adding the Stripline in the horizontal axis and setting Visible option to true.

  • CSHTML
  • <ej-chart id="chartContainer">
        // ...
        <e-primary-x-axis>
            <e-strip-lines><e-strip-line visible="true" start="3" end="7"></e-strip-line></e-strip-lines>
        </e-primary-x-axis>
        // ...
    </ej-chart>

    Customize the text

    To customize the text of the stripline, use Text and Font options.

  • CSHTML
  • <ej-chart id="chartContainer">
        // ...
        <e-primary-y-axis>
            <e-strip-lines>
                <e-strip-line text="High Temperature">
                    <e-Font font-size="18px" color="white"></e-Font>
                </e-strip-line>
            </e-strip-lines>
        </e-primary-y-axis>
        // ...
    </ej-chart>

    Text alignment

    Stripline’s text can be aligned by using the TextAlignment property.

  • CSHTML
  • <ej-chart id="chartContainer">
        // ...
        <e-primary-y-axis>
            <e-strip-lines>
                <e-strip-line text-alignment="MiddleTop">
                </e-strip-line>
            </e-strip-lines>
        </e-primary-y-axis>
        // ...
    </ej-chart>

    Customize the stripline

    To customize the styles of the stripline, use the Color, Opacity, BorderWidth and BorderColor properties.

  • CSHTML
  • <ej-chart id="chartContainer">
        // ...
        <e-primary-y-axis>
            <e-strip-lines>
                <e-strip-line color="#33CCFF" border-width="2" opacity="0.5" border-color="red">
                </e-strip-line>
            </e-strip-lines>
        </e-primary-y-axis>
        // ...
    </ej-chart>

    Change the Z-order of the stripline

    Stripline’s ZIndex property is used to display the stripline either behind or over the series.

  • CSHTML
  • <ej-chart id="chartContainer">
        // ...
        <e-primary-y-axis>
            <e-strip-lines>
                <e-strip-line z-index="Over">
                </e-strip-line>
            </e-strip-lines>
        </e-primary-y-axis>
        // ...
    </ej-chart>