FlexChart
FlexChart
Animation
This view shows animation for the FlexChart control.
Features
Settings
Chart Type: Line
AnimationMode: All
Easing: Swing
Description
This view shows animation for the FlexChart control.
You can use different animation modes for FlexChart by setting the AnimationMode property of the ChartAnimation class.
The ChartAnimation class has a Duration property that allows you to set the length of animation in milliseconds.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using MvcExplorer.Models; namespace MvcExplorer.Controllers { public partial class FlexChartController { public ActionResult ChartAnimation() { return View(Fruit.GetFruitsSales()); } } } |
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 | @model IEnumerable< Fruit > @ { ViewBag.DemoSettings = true ; } @ (Html.C1().FlexChart().Id( "animationChart" ).ChartType(C1.Web.Mvc.Chart.ChartType.Line) .Bind(Model).BindingX( "Name" ).Series(sers => { sers.Add().Binding( "MarPrice" ).Name( "March" ); sers.Add().Binding( "AprPrice" ).Name( "April" ); sers.Add().Binding( "MayPrice" ).Name( "May" ); }).ShowAnimation(cab => cab.AnimationMode(AnimationMode.All).Easing(Easing.Swing).Duration(400).Id( "animation" )) ) @section Scripts{ <script type="text/javascript"> function updateMenu(menu, headerNamePrefix) { menu.header = headerNamePrefix + ': <b>' + menu.selectedItem.Header + '</b>' ; } function updateAnimation(prop, newValue) { var chart = wijmo.Control.getControl( '#animationChart' ), animationExt; if (chart) { animationExt = c1.getExtender(chart, 'animation' ); if (animationExt) { animationExt[prop] = newValue; } } } function chartTypeChanged(menu) { var chart = wijmo.Control.getControl( '#animationChart' ); updateMenu(menu, '@(Resources.FlexChart.ChartAnimation_ChartType)' ); if (chart) { chart.chartType = wijmo.chart.ChartType[menu.selectedItem.Header]; } } function animationModeChanged(menu) { var chart = wijmo.Control.getControl( '#animationChart' ), dataSource = chart.itemsSource.sourceCollection || chart.itemsSource; updateMenu(menu, '@(Resources.FlexChart.ChartAnimation_AnimationMode)' ); updateAnimation( 'animationMode' , wijmo.chart.animation.AnimationMode[menu.selectedItem.Header]); //make the chart to replay the animation. chart.itemsSource = dataSource.slice(0); } function easingChanged(menu) { var chart = wijmo.Control.getControl( '#animationChart' ), dataSource = chart.itemsSource.sourceCollection || chart.itemsSource; updateMenu(menu, '@(Resources.FlexChart.ChartAnimation_Easing)' ); updateAnimation( 'easing' , wijmo.chart.animation.Easing[menu.selectedItem.Header]); //make the chart to replay the animation. chart.itemsSource = dataSource.slice(0); } function durationChanged(sender, args) { if (!checkValue(sender)) { return ; } var chart = wijmo.Control.getControl( '#animationChart' ), dataSource = chart.itemsSource.sourceCollection || chart.itemsSource; updateAnimation( 'duration' , sender.value); //make the chart to replay the animation. chart.itemsSource = dataSource.slice(0); } function checkValue(number) { return number.value >= number.min && number.value <= number.max; } </script> } @section Settings{ < div class = "container-fluid well" > < div calss = "row" style = "margin:10px" > @ (Html.C1().Menu().Header(Resources.FlexChart.ChartAnimation_ChartType + ": <b>Line</b>" ).MenuItems(mifb => { mifb.Add().Header( "Bar" ); mifb.Add().Header( "Column" ); mifb.Add().Header( "Area" ); mifb.Add().Header( "Line" ); mifb.Add().Header( "LineSymbols" ); mifb.Add().Header( "Spline" ); mifb.Add().Header( "SplineSymbols" ); mifb.Add().Header( "SplineArea" ); mifb.Add().Header( "Scatter" ); }).OnClientItemClicked( "chartTypeChanged" )) @ (Html.C1().Menu().Header(Resources.FlexChart.ChartAnimation_AnimationMode+ ": <b>All</b>" ).MenuItems(mifb => { foreach (var name in Enum.GetNames( typeof (AnimationMode))) { mifb.Add().Header(name); } }).OnClientItemClicked( "animationModeChanged" )) @ (Html.C1().Menu().Header(Resources.FlexChart.ChartAnimation_Easing+ ": <b>Swing</b>" ).MenuItems(mifb => { foreach (var name in Enum.GetNames( typeof (Easing))) { mifb.Add().Header(name); } }).OnClientItemClicked( "easingChanged" )) < div > < label style = "display:inline-block;font-weight:normal" > @Html .Raw(Resources.FlexChart.ChartAnimation_Duration)</ label > @ (Html.C1().InputNumber().Min(200).Max(5000).Step(200).Value(400).Format( "n0" ).OnClientValueChanged( "durationChanged" )) </ div > </ div > </ div > } @section Description{ < p > @Html .Raw(Resources.FlexChart.ChartAnimation_Text0)</ p > < p > @Html .Raw(Resources.FlexChart.ChartAnimation_Text1)</ p > < p > @Html .Raw(Resources.FlexChart.ChartAnimation_Text2)</ p > } |