namespace RobotNet.WebApp.Charts.Models.Common;
///
/// The animation-subconfig of the options for a radial chart.
///
public class ArcAnimation : ChartAnimation
{
///
/// Gets or sets a value indicating whether the chart will
/// load in with a rotation animation or not.
///
public bool? AnimateRotate { get; set; }
///
/// Gets or sets a value indicating whether the chart will
/// load in with a scaling animation (from the center outwards) or not.
///
public bool? AnimateScale { get; set; }
}