Login Page - Create Account

Support Board


Date/Time: Wed, 15 May 2024 08:19:57 +0000



Post From: Line Label Alignment...

[2014-04-10 18:49:29]
Graham - Posts: 44
sc.Subgraph[SC_HIGH].Name = "Yesterday High";
    sc.Subgraph[SC_HIGH].DrawStyle = DRAWSTYLE_POINT;
    sc.Subgraph[SC_HIGH].PrimaryColor = RGB(255,128,64);
    sc.Subgraph[SC_HIGH].LineWidth = 1;
    sc.Subgraph[SC_HIGH].DrawZeros = false;
    sc.Subgraph[SC_HIGH].LineLabel = LL_DISPLAY_NAME | LL_NAME_ALIGN_FAR_RIGHT | LL_NAME_ALIGN_CENTER;

    sc.Subgraph[SC_LOW].Name = "Yesterday Low";
    sc.Subgraph[SC_LOW].DrawStyle = DRAWSTYLE_POINT;
    sc.Subgraph[SC_LOW].PrimaryColor = RGB(255,0,0);
    sc.Subgraph[SC_LOW].LineWidth = 1;
    sc.Subgraph[SC_LOW].DrawZeros = false;
    sc.Subgraph[SC_LOW].LineLabel = LL_DISPLAY_NAME | LL_NAME_ALIGN_FAR_RIGHT | LL_NAME_ALIGN_CENTER;