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