EJSC.Chart.x_axis_className
See Also
|
Definition
string x_axis_className = ""
Description
Defines the CSS className to assign to the X-Axis caption.
For styling the tick labels, see EJSC.Chart.x_axis_tick_className
Example
>> Style the X-Axis caption bold.
<style> .xAxisCaption { font-style: bold; } </style>
var chart = new EJSC.Chart( "chart", {x_axis_className: "xAxisCaption"} );
|