View Raw SPL
/* set one or more series pr windows to tableview */
settable(argv)
{
        if (argc == 0)
        {
                setplottype(4);
                setplotstyle(4);
        }
        else
        {
                loop (j = 1..argc)
                {
                        if (isarray(getargv(j)))
                        {
                                setplottype(getargv(j), 4);
                                setplotstyle(getargv(j), 4);
                        }
                }
        }
}