Border Styles for the Highchart tooltip -
i trying edit border tooltip in highcharts.
the problem having have bottom border show up.
for example can this:
tooltip: {borderwidth: 10} // problem makes border around entire tooltip
doing nice, doesn't seem possible:
tooltip: {borderwidth: 0, 0, 0, 10}
i have tried well:
tooltip: {style: {border-bottom:10}}
but doesn't seem work well. beginning wonder if possible.
or
does know site shows allowed in style attribute tooltip. seems there way styles in attribute, http://api.highcharts.com/highcharts#tooltip doesn't give enough information.
you use html tooltip in highcharts setting usehtml: true
; see example: http://jsfiddle.net/xq28t/
in js:
tooltip: { usehtml: true, borderwidth: 0, style: { padding: 0 } },
in css:
.highcharts-tooltip>span { padding: 10px; border-bottom: 1px solid black; }
Comments
Post a Comment