diff --git a/docs/graph2d.html b/docs/graph2d.html index b0acaccc..bed34536 100644 --- a/docs/graph2d.html +++ b/docs/graph2d.html @@ -461,12 +461,24 @@ The options colored in green can also be used as options for the groups. All opt undefined Set the title for the left axis. + + dataAxis.title.left.style + String + undefined + Set the title style for the left axis. This is a css string and it will override the attributes set in the class. + dataAxis.title.right.text String undefined Set the title for the right axis. + + dataAxis.title.right.style + String + undefined + Set the title style for the right axis. This is a css string and it will override the attributes set in the class. + groups.visibility Object diff --git a/examples/graph2d/16_bothAxis_titles.html b/examples/graph2d/16_bothAxis_titles.html index 76cf6391..bc073c7a 100644 --- a/examples/graph2d/16_bothAxis_titles.html +++ b/examples/graph2d/16_bothAxis_titles.html @@ -60,6 +60,10 @@ + + + + @@ -166,7 +170,7 @@ function showTitle(axes, show) { var title; if(show == true) { - title = {text: "Title (" + axes + " axes)"}; + title = {text: "Title (" + axes + " axes)", style: "color: green;"}; } else { title = false; @@ -180,6 +184,19 @@ } } + var colors=['red','green','blue','black','yellow','purple','pink']; + function styleTitle(axes) { + var title; + title = {style: "color: " + colors[Math.floor(Math.random() * colors.length) + 1]}; + + if(axes == 'left') { + graph2d.setOptions({dataAxis: {title: {left: title}}}); + } + else { + graph2d.setOptions({dataAxis: {title: {right: title}}}); + } + } + \ No newline at end of file diff --git a/lib/timeline/component/DataAxis.js b/lib/timeline/component/DataAxis.js index 4f428a51..f80025b8 100644 --- a/lib/timeline/component/DataAxis.js +++ b/lib/timeline/component/DataAxis.js @@ -476,6 +476,12 @@ DataAxis.prototype._redrawTitle = function (orientation) { var title = DOMutil.getDOMElement('div',this.DOMelements.title, this.dom.frame); title.className = 'yAxis title ' + orientation; title.innerHTML = this.options.title[orientation].text; + + // Add style - if provided + if(this.options.title[orientation].style !== undefined) { + util.addCssText(title, this.options.title[orientation].style); + } + if (orientation == 'left') { title.style.left = this.props.titleCharHeight + 'px'; }