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