背景領域の例を使用しています。いくつか問題があります
- メソッドの説明の下のドキュメントでは
addCustomTime
、 id がクラス名として追加されていることが言及されていますが、このクラスへの変更は反映されていません。 content
背景領域のテキストを境界線を持つ背景領域と中央揃えにする方法は?setCurrentTime(time)
また、マーカーのcssを変更するにはどうすればよいですか?
私のCSS
.vis-current-time {
color: black !important;
border: 2px;
cursor: hand;
}
.milestone-1 {
color: green !important;
border: 2px;
cursor: hand;
}
.vis-item.vis-background.positive {
background-color: rgba(0, 0, 200, 0.2);
cursor: hand;
}
.vis-item.vis-background.negative {
background-color: rgba(255, 0, 0, 0.2);
cursor: hand;
}
.vis-item-overflow.vis-item-content {
left: auto !important;
text-align: center !important;
color: #ff0000 !important;
}
これが私の問題のプランカーリンクです。
アップデート
content
テキストを中央に揃えることができます。プランカーも更新しましたが、境界線が有効になりません
#visualization .vis-item.vis-background.positive .vis-item-content {
width: 100%;
text-align: center !important;
border: 2px;
}
#visualization .vis-item.vis-background.negative .vis-item-content {
width: 100%;
text-align: center !important;
}