Sparkline for UWP | ComponentOne
Sparkline for UWP Task-Based Help / Using the Date Axis
In This Topic
    Using the Date Axis
    In This Topic

    The X-Axis can be formatted so that C1Sparkline Data is displayed over a period of time.

    In Code

    Use the following code to set the C1Sparkline's DateAxisData property.

    Code
    Copy Code
    C1Sparkline.DateAxisData =  new List<DateTime>(){ new DateTime(2013,11,1), new DateTime(2013,11,2)}
    
    See Also