Last week I asked the following question to which I got an answer:
jqPlot - Pie legend too tall when there are many legend items
I'm now looking for a way to add a vertical scrollbar to my legend box which in some cases could contain more than 20 legend items.
I can achieve the result I want in FireFox and Chrome if I add the following settings to my CSS file:
table.jqplot-table-legend {
display: block;
height: 350px;
overflow-y: scroll;
}
however I need to achieve the same effect in IE9.
Does anybody know what CSS settings I need?