Google Charts时间表 - 将日期/年份移至图表顶部?

时间:2016-05-19 16:21:07

标签: javascript charts google-visualization

以下是Google Superbowl时间轴示例:

https://developers.google.com/chart/interactive/docs/datesandtimes#dates-and-times-using-the-date-string-representation

有没有办法将日期/年份移动到时间线图表的顶部?

或者,是否有其他时间线图表可以提供额外的自定义?

2 个答案:

答案 0 :(得分:5)

我还没有找到任何Google选项,但是我使用SVG转换

https://jsfiddle.net/d1x5hyes/1/

import UIKit

class SecondViewController: UIViewController {

    weak var delegate: ButtonAdder?

    @IBAction func doCall(sender: UIButton) {
        delegate?.addButton()
    }

}

答案 1 :(得分:0)

在@shoggs答案的基础上,这是如何在保留行格式的同时将标签移动到Google Gantt图表的顶部。

let labels = document.getElementsByTagName("svg")[0].getElementsByTagName("g")[1].getElementsByTagName("text")
document.getElementsByTagName("svg")[0].style.overflow = 'visible'
for (var i=0; i < labels.length; i++) {
    labels[i].setAttribute("y", -15)                                                                                                
}