这是一个带有工具提示的li,我想为其设置样式 因为他们在Angle 2 Mat工具提示上,所以我无法做到
::ng-deep .mat-tooltip {
color: yellow;
}
我无法设置样式
我尝试使用
$(function() {
$('#container').highcharts({
title: {
text: "Arctic Sea Ice Extent",
align: "center"
},
data: {
csv: document.getElementById('csv').innerHTML
},
xAxis: {
labels: {
step: 31,
staggerLines: 1,
formatter: function() {
return this.value.toString().substring(2, 6).toUpperCase();
},
style: {
color: "#666666"
},
x: 30
},
tickWidth: 0
},
plotOptions: {
series: {
connectNulls: true,
shadow: false,
lineWidth: 1,
color: 'rgba(100, 100, 100, 0.2)',
marker: {
enabled: false
}
}
},
legend: {
enabled: false
},
});
});
但是它仍然无法正常工作,请帮助
答案 0 :(得分:0)
添加!重要的是黄色,再见
::ng-deep .mat-tooltip {
color:yellow!important; // for example
}