public YAxis(Title title = null, Labels labels = null, string classname = null) { Title = title; Labels = labels; ClassName = classname; }
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; }
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; }