public DotSubGraph SetLabelPosition(float x, float y, float z) { AssertIsCluster(); SetAttribute("lp", DotUtils.ToDotPoint(x, y, z)); return(this); }
public DotSubGraph SetMargin(float x, float y) { AssertIsCluster(); SetAttribute("margin", DotUtils.ToDotPoint(x, y)); return(this); }
public DotSubGraphDefaults SetMargin(float x, float y) { AttrValues.SetAttribute("margin", DotUtils.ToDotPoint(x, y)); return(this); }
public DotSubGraphDefaults SetLabelPosition(float x, float y, float z) { AttrValues.SetAttribute("lp", DotUtils.ToDotPoint(x, y, z)); return(this); }
public DotNode SetPosition(float x, float y, float z) { AttrValues.SetAttribute("pos", DotUtils.ToDotPoint(x, y, z)); return(this); }
public DotGraph SetSize(double x, double y, bool isDesiredSize) { var finalValue = DotUtils.ToDotPoint(x, y) + (isDesiredSize ? "!" : string.Empty); return(SetAttribute("size", finalValue.DoubleQuote())); }
public DotGraph SetPage(float x, float y) { return(SetAttribute("page", DotUtils.ToDotPoint(x, y))); }
public DotEdge SetTailLabelPosition(float x, float y, float z) { AttrValues.SetAttribute("tail_lp", DotUtils.ToDotPoint(x, y, z)); return(this); }
public DotGraph SetMargin(float x, float y) { return(SetAttribute("margin", DotUtils.ToDotPoint(x, y))); }
public DotGraph SetMargin(double x, double y) { return(SetAttribute("margin", DotUtils.ToDotPoint(x, y))); }
public DotGraph SetLabelPosition(double x, double y) { return(SetAttribute("lp", DotUtils.ToDotPoint(x, y))); }
public DotGraph SetLabelPosition(float x, float y) { return(SetAttribute("lp", DotUtils.ToDotPoint(x, y))); }
public DotGraph SetEdgeSeparationMargins(double x, double y) { return(SetAttribute("esep", DotUtils.ToDotPoint(x, y))); }
public DotEdge SetHeadLabelPosition(float x, float y) { AttrValues.SetAttribute("head_lp", DotUtils.ToDotPoint(x, y)); return(this); }
public DotGraph SetPage(double x, double y) { return(SetAttribute("page", DotUtils.ToDotPoint(x, y))); }
public DotEdge SetPosition(float x, float y) { AttrValues.SetAttribute("pos", DotUtils.ToDotPoint(x, y)); return(this); }
public DotGraph SetScale(float x, float y) { return(SetAttribute("scale", DotUtils.ToDotPoint(x, y))); }
public DotNode SetMargin(float x, float y) { AttrValues.SetAttribute("margin", DotUtils.ToDotPoint(x, y)); return(this); }
public DotGraph SetScale(double x, double y) { return(SetAttribute("scale", DotUtils.ToDotPoint(x, y))); }
public DotNode SetExternalLabelPosition(float x, float y, float z) { AttrValues.SetAttribute("xlp", DotUtils.ToDotPoint(x, y, z)); return(this); }
public DotGraph SetSize(double x, double y) { var finalValue = DotUtils.ToDotPoint(x, y); return(SetAttribute("size", finalValue.DoubleQuote())); }