how to increase the thickness of the curve

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • thanawala27
    New Member
    • Mar 2007
    • 68

    how to increase the thickness of the curve

    Hi,

    I have created the graph using zedgraphs. The graph has 3 curves.

    Now, I wanted to increase the thickness of the curve.

    This is the code i have used while printing the graph.

    Code:
    LineItem myCurve = myPane.AddCurve("Ch1", list1, Color.Blue, SymbolType.None);
    I dont want any symboltype as the curves are little closer to each other.

    Any suggestion for increasing the thickness of the curve line.

    Any help is appreciated.

    Thanks,

    Ravi
  • thanawala27
    New Member
    • Mar 2007
    • 68

    #2
    Hi,

    I got the solution.

    Code:
    myCurve.Line.Width = 3;
    the thickness will increase.

    Ravi

    Comment

    Working...