X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Frrd_graph.h;h=51f3d3fbae49860ff27c82e0e8e7976174ace330;hb=b703e31f292230fdd0c6269c4a649bc6d0f6cd1b;hp=dd132378ec1f3d59806198f8955ec008683c2266;hpb=c6bbce5f7558012214b35a712b4953f1121f849d;p=rrdtool.git diff --git a/src/rrd_graph.h b/src/rrd_graph.h index dd13237..51f3d3f 100644 --- a/src/rrd_graph.h +++ b/src/rrd_graph.h @@ -171,6 +171,13 @@ typedef struct graph_desc_t { rrd_value_t *data; /* the raw data drawn from the rrd */ rrd_value_t *p_data; /* processed data, xsize elments */ double linewidth; /* linewideth */ + + /* dashed line stuff */ + int dash; /* boolean, draw dashed line? */ + double *p_dashes; /* pointer do dash array which keeps the lengths of dashes */ + int ndash; /* number of dash segments */ + double offset; /* dash offset along the line */ + enum txa_en txtalign; /* change default alignment strategy for text */ } graph_desc_t;