Ejemplo n.º 1
0
 public YAxis(Title title = null, Labels labels = null, string classname = null)
 {
     Title     = title;
     Labels    = labels;
     ClassName = classname;
 }
Ejemplo n.º 2
0
 public XAxis(Accessibility accessibility = null, bool?allowDecimals = null, bool?startOnTick = null, bool?eendOnTick = null, bool?showLastLabel = null, Labels labels = null, string type = null, Title title = null)
 {
     Accessibility = accessibility;
     AllowDecimals = allowDecimals;
     StartOnTick   = startOnTick;
     EendOnTick    = eendOnTick;
     ShowLastLabel = showLastLabel;
     Labels        = labels;
     Type          = type;
     Title         = title;
 }
Ejemplo n.º 3
0
 public YAxis()
 {
     Title     = new Title();
     Labels    = new Labels();
     ClassName = null;
 }
 public PlotOptionsPie(bool?allowpointselect = null, bool?showinlegend = null, string cursor = null, Labels datalabels = null, States states = null, int?startangle = null, int?endangle = null)
 {
     AllowPointSelect = allowpointselect;
     ShowInLegend     = showinlegend;
     Cursor           = cursor;
     DataLabels       = datalabels;
     States           = states;
     StartAngle       = startangle;
     EndAngle         = endangle;
 }