12-23-2015 09:26 AM
Hi,
I have a stripchar, Y-axis range is 2 ~ 5, X-axis is -60 ~ 20, I'd like to draw a horizontal line with Y = 3,
what's simplest way to do that? Any example is available?
Thanks
12-23-2015 09:56 AM
You could add a point with a constant value...
01-04-2016 06:45 AM
Could you give me an example? The line could be in anywhere within the range.
Thanks
01-05-2016 12:03 PM
Something along the lines of:
char array[80];
int i;
for(i = 0; i<80; i++){
array[i] = 23;
}
PlotStripChart (panel, PANEL_STRIPCHART, array, 80, 0, 0, 0);
Will produce a line that is 80 points long (-60 to 20)