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