FlexChart
FlexChart
Zooming and Panning
Mouse action:
Zoom mode: Select the chart area to zoom in, or scroll mouse wheel to zoom in/out.
Features
Settings
Mouse Action: Zoom
Interactive Axes: X
Description
-
Mouse action:
- Zoom mode: Select the chart area to zoom in, or scroll mouse wheel to zoom in/out.
- Pan mode: Click and drag within the chart area to change the display range.
-
Touch action:
- Pan the chart area to change the display range; pinch it to zoom in/out.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using MvcExplorer.Models; using C1.Web.Mvc; using C1.Web.Mvc.Serialization; using C1.Web.Mvc.Chart; namespace MvcExplorer.Controllers { public partial class FlexChartController : Controller { public ActionResult PanningAndScaling() { return View(JsonDataReader.GetFromFile<FinanceData>( "fb2.json" )); } } } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 | @model List< FinanceData > @ { ViewBag.DemoSettings = true ; } @ (Html.C1().FlexChart().Id( "gesturesChart" ).CssClass( "stchart" ).ChartType(C1.Web.Mvc.Chart.ChartType.Area) .PlotMargin( "NaN NaN NaN 80" ) .BindingX( "X" ).Bind(Model) .Legend(C1.Web.Mvc.Chart.Position.None) .AxisX(axis => { axis.AxisLine( false ); }) .Series(sers => { sers.Add().Binding( "Close" ).Name( "Y Value" ); }) .SupportGestures(cgb => cgb.Id( "gestures" ) .MouseAction(MouseAction.Zoom) .InteractiveAxes(InteractiveAxes.X) .ScaleY(0.5f) .PosY(0.1f) .ScaleX(0.5f) .PosX(0.1f)) ) @section Scripts{ <script> var chart, chartGestures; c1.documentReady( function () { var gesturesChart = getChart(); if (navigator.userAgent.match(/iPad/i) != null || /Android/i.test(navigator.userAgent)) { document.querySelector( '#mouseAction' ).style.display = 'none' ; } if (gesturesChart) { gesturesChart.axisX.rangeChanged.addHandler( function () { document.querySelector( '#reset' ).disabled = undefined; }); gesturesChart.axisY.rangeChanged.addHandler( function () { document.querySelector( '#reset' ).disabled = undefined; }); } }); function getChart() { if (!chart) { chart = wijmo.Control.getControl( '#gesturesChart' ); } return chart; } function getChartGesture() { var gesturesChart; if (!chartGestures) { gesturesChart = getChart(); chartGestures = c1.getExtender(gesturesChart, 'gestures' ); } return chartGestures; } function updateMenu(menu, headerNamePrefix) { menu.header = headerNamePrefix + ': <b>' + menu.selectedItem.Header + '</b>' ; } function mouseActionChanged(menu) { var extGesture = getChartGesture(); updateMenu(menu, '@(Resources.FlexChart.PanningAndScaling_MouseAction)' ); if (extGesture) { extGesture.mouseAction = wijmo.chart.interaction.MouseAction[menu.selectedItem.Header]; } } function interactiveAxesChanged(menu) { var extGesture = getChartGesture(); updateMenu(menu, '@(Resources.FlexChart.PanningAndScaling_InteractiveAxes)' ); if (extGesture) { extGesture.interactiveAxes = wijmo.chart.interaction.InteractiveAxes[menu.selectedItem.Header]; } } function resetAxes() { var extGesture = getChartGesture(); if (extGesture) { extGesture.reset(); } document.querySelector( '#reset' ).disabled = 'disabled' ; } </script> } @section Settings{ @ (Html.C1().Menu().Id( "mouseAction" ).Header(Resources.FlexChart.PanningAndScaling_MouseAction + ": <b>Zoom</b>" ) .OnClientItemClicked( "mouseActionChanged" ).MenuItems(items => { items.Add( "Zoom" ); items.Add( "Pan" ); })) @ (Html.C1().Menu().Header(Resources.FlexChart.PanningAndScaling_InteractiveAxes + ": <b>X</b>" ) .OnClientItemClicked( "interactiveAxesChanged" ).MenuItems(items => { items.Add( "X" ); items.Add( "Y" ); items.Add( "XY" ); })) < button id = "reset" class = "btn btn-primary" onclick = "resetAxes()" disabled = "disabled" > @Html .Raw(Resources.FlexChart.PanningAndScaling_ResetZoom)</ button > } @section Description{ < div class = "panel panel-default" > < div class = "panel-heading" > < ul > < li > < b > @Html .Raw(Resources.FlexChart.PanningAndScaling_Text0)</ b > < ol > < li > @Html .Raw(Resources.FlexChart.PanningAndScaling_Li1)</ li > < li > @Html .Raw(Resources.FlexChart.PanningAndScaling_Li2)</ li > </ ol > </ li > < li > < b > @Html .Raw(Resources.FlexChart.PanningAndScaling_Text1)</ b > < ol > < li > @Html .Raw(Resources.FlexChart.PanningAndScaling_Li3) </ li > </ ol > </ li > </ ul > </ div > </ div > } |