我在jqplot圆环图中有一个自定义div。我想突出显示该div上鼠标的特定图形区域。我们怎么能这样做?
我的div类“custom_legends”有自定义图例,并且希望在悬停这些图例时突出显示相应的图表区域。
以下是我的代码:
<script class="code" type="text/javascript">;
var _chart5_plot_properties;
_chart5_plot_properties = {
title: " ",
seriesColors: ['.$color_str.'],
"seriesDefaults":{
renderer:wcjQuery.jqplot.DonutRenderer,
rendererOptions:{
sliceMargin: 0,
innerDiameter: 200,
startAngle: -90,
barPadding: 0,
padding: 3,
}
},
grid: {
shadow: false,
drawBorder: false,
shadowColor: "transparent"
},
highlighter: {
show: true,
formatString: "%s",
useAxesFormatters: false,
showDataLabels: true,
tooltipLocation: "s"
},
legend: {
show: false
}
}
plot2 = wcjQuery.jqplot("chart2", $chart_style_params, _chart5_plot_properties)';
</script>
<div id="chart2"></div>
<div class="custom_legends"></div>