0
我使用jqplot渲染圖形。如何更改光標(而不是熒光筆)工具提示的文本大小並進行粗體處理?如何更改jqplot光標工具提示大小?
cursor: {
style: 'crosshair',
show: true,
zoom: true,
showTooltip: true,
followMouse: true,
showTooltipDataPosition: true,
showVerticalLine: true,
useAxesFormatters: true,
},
由於.jqplot-光標工具提示樣式。我剛剛重新定義了CSS樣式: .cursor-size { font-size:14px; } .jqplot-cursor-tooltip {font-size:1em; font-weight:bold; } – LittleHobbit