EJSC.Axis.border

See Also: Using Colors

 

Definition

 

object border = {

       thickness: 1,

       color: undefined,

       opacity: 100,

       show: true

}

 

Description

 

Defines the appearance of the axis side bordering the chart area.  By default the border color inherits the axis color property (EJSC.Axis.color)

 

Example

 

>> Provide a 2 pixel tall green border on the bottom axis.

 

var chart = new EJSC.Chart(

            "chart",

            {

               axis_bottom:

                       border: { thickness: 2, color: "#0F0" }

               }

       }

);