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