Questions tagged [fill]

fill refers to the process of assigning and rendering a color or pattern to the set of coordinates within the outline of a shape.

References

1838 questions
0
votes
5 answers

How to create a HTML container which will fill all available width between two floating elements?

Here is a schema of what I want to render, and as simple as it seems I can't find a way to code the container between the two floating elements...: ---------- ---------- | | Some text text…
Socce
  • 420
  • 1
  • 5
  • 15
0
votes
2 answers

VB.NET How to fill this textbox on a webbrowser

Trying to fill this text box in a webbrowser programmatically.
I tried this but it doesn't work at all... For Each element As HtmlElement In…
qckmini6
  • 124
  • 2
  • 14
0
votes
1 answer

Splinter not working in PayPal

I want to enter the email and the password directly with Splinter in Python. The problem is that it appears this message: AttributeError: 'ElementList' object has no attribute 'fill' The code I made is the…
Pol MP
  • 23
  • 3
0
votes
0 answers

Firefox treats style in style tag differently then linked style pertaining to svg image fill

So this was a head scratcher for me. I needed to have an important style on an svg element due to some js library that was setting the fill on window.resize. My css is, for this example: path { fill: url("#image") !important; } I wrote this all…
0
votes
0 answers

Fill polygon algorithm

I am trying to fill some polygons that i have drawn using clicks and lines. My code is above: static class Pineda { private static Vector2d normal(final Point p0, final Point p1) { return new Vector2d(p1.y - p0.y, -(p1.x -…
user5274714
  • 25
  • 1
  • 10
0
votes
1 answer

How to fill a polygon after drawing

I wanna draw a polygon and then fill it. My code looks like this: @Override public void paint(Graphics g) { super.paint(g); Graphics2D g2d = (Graphics2D) g; if (polygons.isEmpty()) { return; } …
user5274714
  • 25
  • 1
  • 10
0
votes
3 answers

Slow image filling of polygons in canvas/javascript

I'm making a business app with some animation in HTML, javascript and canvas. I'm filling a screen, almost like a map, with polygons - each of which is filled with an image - the polygons are moving and changing shape constantly. I'm using…
Darren Oakey
  • 2,894
  • 3
  • 29
  • 55
0
votes
2 answers

How to fill in a string in an array?

I'm trying to fill in a string in an array value that has a empty '' do I need to use isset or empty to check it first? Here is my code echo table(); function table() { $a = array ('0' => array('Jan de Boer', '213','440'), …
the R
  • 49
  • 8
0
votes
2 answers

Fill SKShapeNode created from CGPath

I'm trying to create a custom SKShapeNode based on an array of points. The points form a closed shape and the shape ultimately needs to be filled. This is what I've come up with so far, but for some reason the stroke draws fine but the shape stays…
Gerome Pistre
  • 457
  • 6
  • 15
0
votes
1 answer

What is use of "Fill" property in System.Windows.Shapes.Line?

What is use of Fill property in System.Windows.Shapes.Line in WPF?
Ankush Madankar
  • 3,689
  • 4
  • 40
  • 74
0
votes
2 answers

geom_area group and fill by different variables

I have a geom_area plot that looks like this: The x-axis is a time serie, and i want to color the fill of each facet by groups of the variable "estacion" (seasons of the year). Here's a sample of my data: año censo estacion tipoEuro …
Romm
  • 21
  • 1
  • 8
0
votes
1 answer

R shade area under curve loop

I recently asked a question on how to produce multiple plots with 2 y-axes from the same data.frame. The solution works perfectly (available here), however I can't seem to fill in the area under the curve on the second y-axis. "Polygon" seems to be…
KKL234
  • 367
  • 1
  • 5
  • 23
0
votes
1 answer

No overload for method 'Fill' takes 2 arguments

I'm coding in Visual Studio 2013 using c#. I have a global string variable which is "order" as stated below code: Globals.order private void frmPrint_Load(object sender, EventArgs e) { // TODO: This line of code loads data into the…
Terces Eman
  • 21
  • 1
  • 3
0
votes
1 answer

Need help applying selected color to fill property in svg

I came across a book giving a tutorial and partial code for building a coloring book, in HTML and JavaScript. I have setup a project in jsbin to test my code, and hopefully it can be shared with you all at this link: my source code I would like the…
Harriet
  • 1,633
  • 5
  • 22
  • 36
0
votes
1 answer

WordPress Shortcodes for SVG

I'm tired of these icons, if I continue I will break my site. http://slembas.esy.es - look at the red round buttons in the footer. I'm trying to insert SVG icons. They should have customisable "fill". But I don't want to copy and paste the same code…
SLembas
  • 29
  • 1
  • 8
1 2 3
99
100