我们可以使用JQUERY放大缩放OUT图表图像

时间:2014-04-11 07:16:30

标签: javascript jquery mschart microsoft-chart-controls

在我的ASP.NET应用程序中,我使用了微软图表控件并生成了甜甜圈和条形图。

现在,我需要实现ZOOM IN和ZOOM OUT功能。

我无法在ASP.NET中找到任何默认方式 - 用于实现此目的的microsfot图表控件。

如果任何人可以通过Javascript / JQUERY建议,如果可以实现,那将是很棒的。

下面是可以放大ZOOM OUT的东西,但它会从实际尺寸减小,然后让它休息到实际尺寸。我需要增加缩小尺寸。

  $('#image').hover(function(){
     $(this).css({width:"100%",height:"100%"});
    },function(){
    $(this).css({width:"50%",height:"50%"});   
  });

谢谢 Dhaval Soni

1 个答案:

答案 0 :(得分:0)

Zoomooz plugin可能会对您有所帮助。

易于实现,并且支持jquery

您可以放大容器内的元素

Jsfiddle to zoom text when click

$("#zoom").click(function () {
    $(this).zoomTo({
        targetsize: 1.0,
        root: $(".container")
    });
});