anyway i have the htmlvar working and i can get the links to goto google and another page BUT, by running the code below I get a huge blue blob which covers the data points to click on and the data points are not linked by a line.
symbol i=join v=dot;
proc gplot data=test_mydata2;
format gross_combined_ratio percent.;
plot gross_combined_ratio*sasdate=measure/
html=htmlvar;
run;
quit;
It worked when I ran it the next day. Think the problem was because of the previous calculations not deleting the settings. Hopefully SAS addresses this issue rather than having to write extra code to do the same job (or maybe thats simply something you have to do; new to SAS so forgive me if what I said is not a database programmers thing to say.)
Not to worry - it's one of those "graph things" that takes a while to get used to 😉
To avoid such problems (ie, unwanted affects of settings from a previous graph carrying-over and affecting my current graph), I almost always run my graphs in batch, cranking up a new SAS session for each graph, guaranteeing that all the graphics options/etc get reset.