2016-03-14 64 views
1

我目前使用vis.js創建時間線。我需要在當前時間軸的頂部放置一個箭頭。但我不知道如何獲得當前時間的頂部的正確位置。任何幫助,不勝感激。由於如何在vis.js當前時間線頂部添加箭頭

這是我喜歡有

enter image description here

這是我需要在https://jsfiddle.net/gbdjbdhv/15/

var options = { 
showCurrentTime: true, 
orientation: {axis: 'both', item: 'top'}, 
height: 400, 
margin: { 
axis: 100 
} 
}; 
var timeline = new vis.Timeline(container, items, options); 

回答

0

工作,您可以將您的腳本之後添加這些行的代碼。 var lbl = document.createElement(「label」); lbl.setAttribute(「style」,「margin-left:-10px; color:red; font-size:50px; line-height:35px;」) lbl.innerHTML =「^」 timeline.currentTime.bar。的appendChild(LBL);

在這裏找到小提琴:gbdjbdhv/16/

+0

AB Udhay:你太有創意!這工作!非常感謝! – Steve