Tim,
You should have the same functionality as me cos I am using Delphi 6 Professional. TeeChart comes as standard with Delphi 6 (you can buy TeeChart Pro - but for this problem TeeChart Pro is unnecessary!).
From scratch:
1) Drop the TQRChart component on your form
2) Double-click the QRChart to open the "Editing QRDBChart" dialog
3) Make sure the upper tab reads "Chart" and the lower tab reads "Series", then click the "Add" button.
4) Select your Line graph or whatever and click "OK"
5) Repeat this process to add as many Series as desired
6) Click the upper tab "Series" and the lower tab "Format"
7) You should see a group box titled "Line:" which contains several buttons and other controls
8) First, select the appropriate Series from the drop-down box, then click the "Border" button
9) The "Border Color Editor" should appear from which you can choose a style and width, to enable you to distinguish one series from another.
I apologise if this is exactly what you did anyway! I don't mean to be patronizing. If you still cannot see any options under the "Format" tab (after the above process) then try changing the properties at run-time by using the following commands:
Code:
Series1.LinePen.Style := psDash;
Series2.LinePen.Style := psDot;
Series3.LinePen.Style := psSolid; {Default}
OR try:
Code:
Series1.LineBrush := bsCross;
Series2.LineBrush := bsBDiagonal;
Series3.LineBrush := bsVertical;
{Check out TBrushStyle in the help for more styles}
Hope this helps! ;-)