EJSC.Chart.x_axis_tick_className
See Also
|
Definition
string x_axis_tick_className = ""
Description
Defines the CSS className to assign to the X-Axis tick labels. Used in conjunction with x_axis_stagger_ticks and x_axis_size, this property allows for greater control over the size and staggering of tick labels on the X axis.
For styling the caption, see EJSC.Chart.x_axis_className
Example
>> Style the X axis tick labels grey, make them 24 pixels high to enable text wrapping and enable two levels of tick staggering.
<style> .xAxisTickLabels { color: #999; height: 24px; } </style>
var chart = new EJSC.Chart( "chart", { x_axis_tick_className: "xAxisTickLabels", x_axis_size: 48 } );
|