Files
crm.e5.pl/include/ECM/open_flash_chart2/dot-net-library/written-by-xiao-yifang/OpenFlashChart/XAxis.cs
2024-04-27 09:23:34 +02:00

38 lines
862 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using JsonFx.Json;
namespace OpenFlashChart
{
public class XAxis:Axis
{
private string tick_height;
private XAxisLabels labels;
[JsonProperty("tick-height")]
public string TickHeight
{
get { return tick_height; }
set { tick_height = value; }
}
[JsonProperty("labels")]
public XAxisLabels Labels
{
get
{
if (this.labels == null)
this.labels = new XAxisLabels();
return this.labels;
}
set { this.labels = value; }
}
public void SetLabels(IList<string> labelsvalue)
{
Labels.SetLabels(labelsvalue);
}
}
}