These properties control the content, visibility, and format of an axis title.
xaxis | yaxis | y2axis | zaxis: { title: { text: 'string', visible: boolean, font: 'string', color: 'string' } }
text; a string that defines Axis Title text. The default value for xaxis is 'X Axis Title'. The default value for yaxis is 'Y Axis Title'. The default value for y2axis is 'Y2 Axis Title'. The default value for zaxis is 'Z Axis Title'.
visible; true/false controls the visibility of the Axis Title. The default value is false.
font; a string that defines the size, style, and typeface of the Axis Title. The default value for xaxis is '7.5pt Sans-Serif'. The default value for zaxis is '10pt Sans-Serif'.
color; a string that defines the color of the Axis Title. The default value is 'black'.
blaProperties: {orientation: 'vertical'}, xaxis: {title: {visible: true, color: 'red', font: 'bold 10pt Verdana',text: 'X-AXIS'}}, yaxis: {title: {visible: true, color: 'red', font: 'bold 10pt Verdana',text: 'Y-AXIS'}}, series: [{series: 0, color: 'cyan'},{series: 1, color: 'tan'},{series: 2, color: 'lightblue'},{series: 3, color: 'teal'}]
chartType: 'heatmap', yaxis: {colorScale: {colors: ['tan', 'bisque'] } }, xaxis: {title: {visible: true, color: 'red', font: 'bold 10pt Verdana',text: 'X-AXIS'}}, zaxis: {title: {visible: true, color: 'red', font: 'bold 10pt Verdana',text: 'Z-AXIS'}},
data: [[[10,10, 100], [25,25, 25], [10,50, 200], [50,10,50]]], chartType: 'bubble', xaxis: {title: {visible: true, color: 'red', font: 'bold 10pt Verdana',text: 'X-AXIS'}}, yaxis: {title: {visible: true, color: 'red', font: 'bold 10pt Verdana',text: 'Y-AXIS'}},
yaxis:{title: {visible: true, text: 'Y Axis (yaxis)',font: '14pt Sans-Serif', color: 'teal'}}, y2axis:{ title: { visible: true, text: 'Y2 Axis (y2axis)', font: '14pt Sans-Serif', color: 'red' } }, series:[ {series: 0, color: 'cyan', yAxisAssignment: 1}, {series: 1, color: 'tan', yAxisAssignment: 2}, {series: 2, color: 'cyan', yAxisAssignment: 1}, {series: 3, color: 'tan', yAxisAssignment: 2}, ]
chartType: 'polar', polarProperties: { straightGridLines: false, extrudeAxisLabels: true }, yaxis: { title: {visible: true, font: '12pt Sans-Serif', color: 'red'}, majorGrid: {lineStyle: {width: 1,color: 'teal'}}, },
chartType: 'radar', yaxis: { title: {visible: true, font: '12pt Sans-Serif', color: 'red'}, majorGrid: {lineStyle: {width: 1,color: 'navy'}}, }, polarProperties: { extrudeAxisLabels: true },