search for: strokewidth

Displaying 2 results from an estimated 2 matches for "strokewidth".

2017 Sep 27
1
need held in r coding.
...se_xts,fit_xts,majorlandmarks_xts,minorlandmarks_xts) Error:------------- order.by requires an appropriate time-based object dygraphs::dygraph(landmarkschart_data, xlab = "Time",ylab = "Price") %>% dySeries("..1",label = "Close", drawPoints = FALSE, strokeWidth = 1, color = "black") %>% dySeries("..2",label = "Fit", drawPoints = FALSE, strokeWidth = 1, color = "red") %>% dySeries("..3",label = "Major LandMarks", drawPoints = TRUE, pointSize = 5, strokeWidth = 0, color = "darkorang...
2006 Nov 12
1
[PATCH] Annotate shapes, text and dbus support
...tools) / sizeof (tools[0])) + static void annoCairoClear (CompScreen *s, cairo_t *cr) @@ -143,6 +175,335 @@ return as->cairo; } + +static void +annoDrawCircle (CompScreen *s, double xc, double yc, double radius, + unsigned short *fillColor, unsigned short *strokeColor, + double strokeWidth) +{ + REGION reg; + cairo_t *cr; + + ANNO_SCREEN (s); + + cr = annoCairoContext (s); + + if (cr) + { + + double ex1, ey1, ex2, ey2; + cairo_set_source_rgba (cr, + (double) fillColor[0] / 0xffff, + (double) fillColor[1] / 0xffff, + (double) fillColor[2]...