Fill circles on xy graph

Hello,
I have a VI that draws circles on a XY graph. These circles represent the position of a microscope objective. The dwell time of the objective is increased, and I would like to fill the circles with color intensity that is related to this increase (I am using LV 8.0). 
Thanks in advance,
Gaby 
Attachments:
draw circles loop.vi ‏28 KB

Your VI using something called Stuff:\LabView games\Control Program\Linspace.vi
When I load it into LV 8.6.1, it finds a different vi called "Linspace" deep in the VI lib, which does something completely different.
I suggest you rename your VI to not conflict with the system, and possibly include it here.
That having been said, an X-Y graph is perhaps not the best place for a filled-circle type of drawing. 
I'm not sure when the feature was introduced, but there is now a PLOT IMAGES property for graphs, where you can insert a picture in front of, or behind the plot data.
Consider using a PICTURE control to plot the data and the circles.
If you must use only an X-Y graph, then you have to create a separate plot for the FILL part, consisting of concentric circles around the center point, and colored the way you want.
Steve Bird
Culverson Software - Elegant software that is a pleasure to use.
Culverson.com
Blog for (mostly LabVIEW) programmers: Tips And Tricks

Similar Messages

  • Drawing and Filling Circle and Polygon.

    I have searched about creating these but cannot understand properly. 
    Let SetPixel(X,Y) be the function to set the pixel. I am working in unity3d for drawing on texture.
    Allow time to reverse.

    besides what Armin said
    which setpixel function do you mean ?
    the bitmap.setpixel or the Win32 setpixel ?
    also why would you want it in vb when you don't plan to use vb ?
    I am writing class library for unity3d in vb.net.
    "SetPixel(x,y)" is just a procedure that sets pixel on (x,y). It is enough for drawing.
    I am not dealing with color or anything. Just need to set pixels at right position.
    I tried and found this: (It is to draw non-filled circle)
    Public Function Apply(Texture As Texture2D) As Texture2D Implements Image.Appliments.Apply
    Dim x0 As Integer = Me.X
    Dim y0 As Integer = Me.Y
    Dim x As Integer = Radius
    Dim y As Integer = 20
    Dim RadiusError As Integer = 1 - x
    While x >= y
    Texture.SetPixel(x + x0, y + y0, Color)
    Texture.SetPixel(y + x0, x + y0, Color)
    Texture.SetPixel(-x + x0, y + y0, Color)
    Texture.SetPixel(-y + x0, x + y0, Color)
    Texture.SetPixel(-x + x0, -y + y0, Color)
    Texture.SetPixel(-y + x0, -x + y0, Color)
    Texture.SetPixel(x + x0, -y + y0, Color)
    Texture.SetPixel(y + x0, -x + y0, Color)
    y = y + 1
    If RadiusError < 0 Then
    RadiusError = RadiusError + 2 * y + 1
    Else
    x = x - 1
    RadiusError = RadiusError + 2 * (y - x) + 1
    End If
    End While
    Texture.Apply()
    Return Texture
    End Function
    Allow time to reverse.

  • Scale Circle on XY Graph

    I found a post from 2005, showing how to plot a circle on an xy-graph knowing the center and radius,
    http://forums.ni.com/ni/board/message?board.id=170&message.id=146782&query.id=2708998#M146782. My xy grid is rectangle and Altenback mentioned a solution when your grid is not square but I'm not able to follow.  Any suggestions out there?
    Thanks.
    LabVIEW 2012 - Windows 7
    CLAD
    Solved!
    Go to Solution.

    If the grid is not square, you need to decide if the circle should follow the actual grid or be round no matter what. You could simply scale the circle accordingly, but an easier way might be to sue the "plot images" overlay using picture commands. Open the example finder and look at the example named "Plot Area Images". See if it makes sense and ask again if you get stuck.
    And please try to spell my name right next time . 
    LabVIEW Champion . Do more with less code and in less time .

  • What are the little filling circles when you click on a mailbox

    in regards to .mac via mail application, what is the the circle that fills up like a pie being cut backwards when you click a mailbox??

    You're welcome.
    Everynow and then, I goto close out Mail, and the screen goes away,
    but the dock icon and menubar still stay active...for a bit or so, then
    closes. Is this due to the same "activity?"
    The answer is yes.
    Depending on your settings for automatically deleting messages from an account's Junk or Trash mailbox, activity will occur.
    Launch the Activity Viewer - at the menu bar go to Window and select Activity Viewer.
    When quitting Mail, any activity should be shown in the Activity Viewer.

  • Need help with filling circle with circular fill animation

    Hello, I'm creating an old fashioned movie countdown
    animation but I'm not sure how to approach filling a circle with a
    radar-like sweep.
    If anyone has any sort of clue how to do this I would
    appreciate your help. It can be a timeline based animation or an
    ActionScript based animation. Either way is fine with me.
    I looked on the internet for tutorials but couldn't find
    anything.
    Brenda

    for some interesting patterns make the lineStyle color and
    beginFill color different:

  • "Class Circle not found in TryBouncingBalls" error message. Help !

    Dear People,
    I have an error message :
    "TryBouncingBalls.java": Error : class Circle not found in class stan_bluej_ch5_p135.TryBouncingBalls at line 67, "
    Circle circle = new Circle(xPos + 130, 30);
    below are the classes TryBouncingBalls, BouncingBall, BallDemo, Canvas
    Thank you in advance
    Stan
    package stan_bluej_ch5_p135;
    import java.awt.*;
    import java.awt.geom.*;
    public class TryBouncingBalls
    public static void main(String[] args)
    Canvas myCanvas = new Canvas("Creativity at its best");
    myCanvas.setVisible(true);
    BouncingBall ball = new BouncingBall(50,50,16, Color.red, 500, myCanvas);
    BouncingBall ball2 = new BouncingBall(70,80,20, Color.green, 500, myCanvas);
    BouncingBall ball3 = new BouncingBall(90,100,16, Color.red, 500, myCanvas);
    BouncingBall ball4 = new BouncingBall(30,30,20, Color.green, 500, myCanvas);
    ball.draw();
    ball2.draw();
    ball.draw();
    ball2.draw();
    // make them bounce
    boolean finished = false;
    while(!finished) {
    myCanvas.wait(50); // small delay
    ball.move();
    ball2.move();
    ball3.move();
    ball4.move();
    // stop once ball has travelled a certain distance on x axis
    if(ball.getXPosition() >= 550 && ball2.getXPosition() >= 550)
    finished = true;
    myCanvas.setFont(new Font("helvetica", Font.BOLD, 14));
    myCanvas.setForegroundColor(Color.red);
    myCanvas.drawString("We are having fun, ...\n\n", 20, 30);
    myCanvas.wait(1000);
    myCanvas.setForegroundColor(Color.black);
    myCanvas.drawString("...drawing lines...", 60, 60);
    myCanvas.wait(500);
    myCanvas.setForegroundColor(Color.gray);
    myCanvas.drawLine(200, 20, 300, 50);
    myCanvas.wait(500);
    myCanvas.setForegroundColor(Color.blue);
    myCanvas.drawLine(220, 100, 370, 40);
    myCanvas.wait(500);
    myCanvas.setForegroundColor(Color.green);
    myCanvas.drawLine(290, 10, 320, 120);
    myCanvas.wait(1000);
    myCanvas.setForegroundColor(Color.gray);
    myCanvas.drawString("...and shapes!", 110, 90);
    myCanvas.setForegroundColor(Color.red);
    myCanvas.drawString("to bring to focus creative ideas !", 310, 290);
    // the shape to draw and move
    int xPos = 10;
    Rectangle rect = new Rectangle(xPos + 40, 150, 30, 20);
    Rectangle rect2 = new Rectangle(xPos + 80, 120, 50, 25);
    Rectangle rect3 = new Rectangle(xPos+ 1200, 180, 30, 30);
    Rectangle rect4 = new Rectangle(xPos + 150, 220, 40, 15);
    myCanvas.fill(rect);
    myCanvas.fill(rect2);
    myCanvas.fill(rect3);
    myCanvas.fill(rect4);
    Circle circle = new Circle(xPos + 130, 30);
    // Circle circle2 = new Circle(xPos + 150, 50);
    // Circle circle3 = new Circle(xPos + 170, 30);
    // Circle circle4 = new Circle(xPos + 200, 40);
    // myCanvas.fill(circle);
    // myCanvas.fill(circle2);
    // myCanvas.fill(circle3);
    // myCanvas.fill(circle4);
    // move the rectangle and circles across the screen
    for(int i = 0; i < 200; i ++) {
    myCanvas.fill(rect);
    myCanvas.fill(rect2);
    myCanvas.fill(rect3);
    myCanvas.fill(rect4);
    myCanvas.wait(10);
    myCanvas.erase(rect);
    myCanvas.erase(rect2);
    myCanvas.erase(rect3);
    myCanvas.erase(rect4);
    xPos++;
    rect.setLocation(xPos, 150);
    rect2.setLocation(xPos, 120);
    rect3.setLocation(xPos, 180);
    rect4.setLocation(xPos, 220);
    // at the end of the move, draw once more so that it remains visible
    myCanvas.fill(rect);
    myCanvas.fill(rect2);
    myCanvas.fill(rect3);
    myCanvas.fill(rect4);
    package stan_bluej_ch5_p135;
    import java.awt.*;
    import java.awt.geom.*;
    * Class BouncingBall - a graphical ball that observes the effect of gravity. The ball
    * has the ability to move. Details of movement are determined by the ball itself. It
    * will fall downwards, accelerating with time due to the effect of gravity, and bounce
    * upward again when hitting the ground.
    * This movement can be initiated by repeated calls to the "move" method.
    * @author Bruce Quig
    * @author Michael Kolling (mik)
    * @author David J. Barnes
    * @version 1.1 (23-Jan-2002)
    public class BouncingBall
    private static final int gravity = 3; // effect of gravity
    private int ballDegradation = 2;
    private Ellipse2D.Double circle;
    private Color color;
    private int diameter;
    private int xPosition;
    private int yPosition;
    private final int groundPosition; // y position of ground
    private Canvas canvas;
    private int ySpeed = 1; // initial downward speed
    * Constructor for objects of class BouncingBall
    * @param xPos the horizontal coordinate of the ball
    * @param yPos the vertical coordinate of the ball
    * @param ballDiameter the diameter (in pixels) of the ball
    * @param ballColor the color of the ball
    * @param groundPos the position of the ground (where the wall will bounce)
    * @param drawingCanvas the canvas to draw this ball on
    public BouncingBall(int xPos, int yPos, int ballDiameter, Color ballColor,
    int groundPos, Canvas drawingCanvas)
    xPosition = xPos;
    yPosition = yPos;
    color = ballColor;
    diameter = ballDiameter;
    groundPosition = groundPos;
    canvas = drawingCanvas;
    * Draw this ball at its current position onto the canvas.
    public void draw()
    canvas.setForegroundColor(color);
    canvas.fillCircle(xPosition, yPosition, diameter);
    * Erase this ball at its current position.
    public void erase()
    canvas.eraseCircle(xPosition, yPosition, diameter);
    * Move this ball according to its position and speed and redraw.
    public void move()
    // remove from canvas at the current position
    erase();
    // compute new position
    ySpeed += gravity;
    yPosition += ySpeed;
    xPosition +=2;
    // check if it has hit the ground
    if(yPosition >= (groundPosition - diameter) && ySpeed > 0) {
    yPosition = (int)(groundPosition - diameter);
    ySpeed = -ySpeed + ballDegradation;
    // draw again at new position
    draw();
    * return the horizontal position of this ball
    public int getXPosition()
    return xPosition;
    * return the vertical position of this ball
    public int getYPosition()
    return yPosition;
    package stan_bluej_ch5_p135;
    import java.awt.*;
    import java.awt.geom.*;
    * Class BallDemo - provides two short demonstrations showing how to use the
    * Canvas class.
    * @author Michael Kolling and David J. Barnes
    * @version 1.0 (23-Jan-2002)
    public class BallDemo
    private Canvas myCanvas;
    * Create a BallDemo object. Creates a fresh canvas and makes it visible.
    public BallDemo()
    myCanvas = new Canvas("Ball Demo", 600, 500);
    myCanvas.setVisible(true);
    * This method demonstrates some of the drawing operations that are
    * available on a Canvas object.
    public void drawDemo()
    myCanvas.setFont(new Font("helvetica", Font.BOLD, 14));
    myCanvas.setForegroundColor(Color.red);
    myCanvas.drawString("We can draw text, ...", 20, 30);
    myCanvas.wait(1000);
    myCanvas.setForegroundColor(Color.black);
    myCanvas.drawString("...draw lines...", 60, 60);
    myCanvas.wait(500);
    myCanvas.setForegroundColor(Color.gray);
    myCanvas.drawLine(200, 20, 300, 50);
    myCanvas.wait(500);
    myCanvas.setForegroundColor(Color.blue);
    myCanvas.drawLine(220, 100, 370, 40);
    myCanvas.wait(500);
    myCanvas.setForegroundColor(Color.green);
    myCanvas.drawLine(290, 10, 320, 120);
    myCanvas.wait(1000);
    myCanvas.setForegroundColor(Color.gray);
    myCanvas.drawString("...and shapes!", 110, 90);
    myCanvas.setForegroundColor(Color.red);
    // the shape to draw and move
    int xPos = 10;
    Rectangle rect = new Rectangle(xPos, 150, 30, 20);
    // move the rectangle across the screen
    for(int i = 0; i < 200; i ++) {
    myCanvas.fill(rect);
    myCanvas.wait(10);
    myCanvas.erase(rect);
    xPos++;
    rect.setLocation(xPos, 150);
    // at the end of the move, draw once more so that it remains visible
    myCanvas.fill(rect);
    * Simulates two bouncing balls
    public void bounce()
    int ground = 400; // position of the ground line
    myCanvas.setVisible(true);
    // draw the ground
    myCanvas.drawLine(50, ground, 550, ground);
    // crate and show the balls
    BouncingBall ball = new BouncingBall(50, 50, 16, Color.blue, ground, myCanvas);
    ball.draw();
    BouncingBall ball2 = new BouncingBall(70, 80, 20, Color.red, ground, myCanvas);
    ball2.draw();
    // make them bounce
    boolean finished = false;
    while(!finished) {
    myCanvas.wait(50); // small delay
    ball.move();
    ball2.move();
    // stop once ball has travelled a certain distance on x axis
    if(ball.getXPosition() >= 550 && ball2.getXPosition() >= 550)
    finished = true;
    ball.erase();
    ball2.erase();
    package stan_bluej_ch5_p135;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.geom.*;
    * Class Canvas - a class to allow for simple graphical
    * drawing on a canvas.
    * @author Michael Kolling (mik)
    * @author Bruce Quig
    * @version 1.8 (23.01.2002)
    public class Canvas
    private JFrame frame;
    private CanvasPane canvas;
    private Graphics2D graphic;
    private Color backgroundColor;
    private Image canvasImage;
    * Create a Canvas with default height, width and background color
    * (300, 300, white).
    * @param title title to appear in Canvas Frame
    public Canvas(String title)
    this(title, 600, 600, Color.white);
    * Create a Canvas with default background color (white).
    * @param title title to appear in Canvas Frame
    * @param width the desired width for the canvas
    * @param height the desired height for the canvas
    public Canvas(String title, int width, int height)
    this(title, width, height, Color.white);
    * Create a Canvas.
    * @param title title to appear in Canvas Frame
    * @param width the desired width for the canvas
    * @param height the desired height for the canvas
    * @param bgClour the desired background color of the canvas
    public Canvas(String title, int width, int height, Color bgColor)
    frame = new JFrame();
    canvas = new CanvasPane();
    frame.setContentPane(canvas);
    frame.setTitle(title);
    canvas.setPreferredSize(new Dimension(width, height));
    backgroundColor = bgColor;
    frame.pack();
    * Set the canvas visibility and brings canvas to the front of screen
    * when made visible. This method can also be used to bring an already
    * visible canvas to the front of other windows.
    * @param visible boolean value representing the desired visibility of
    * the canvas (true or false)
    public void setVisible(boolean visible)
    if(graphic == null) {
    // first time: instantiate the offscreen image and fill it with
    // the background color
    Dimension size = canvas.getSize();
    canvasImage = canvas.createImage(size.width, size.height);
    graphic = (Graphics2D)canvasImage.getGraphics();
    graphic.setColor(backgroundColor);
    graphic.fillRect(0, 0, size.width, size.height);
    graphic.setColor(Color.black);
    frame.show();
    * Provide information on visibility of the Canvas.
    * @return true if canvas is visible, false otherwise
    public boolean isVisible()
    return frame.isVisible();
    * Draw the outline of a given shape onto the canvas.
    * @param shape the shape object to be drawn on the canvas
    public void draw(Shape shape)
    graphic.draw(shape);
    canvas.repaint();
    * Fill the internal dimensions of a given shape with the current
    * foreground color of the canvas.
    * @param shape the shape object to be filled
    public void fill(Shape shape)
    graphic.fill(shape);
    canvas.repaint();
    * Fill the internal dimensions of the given circle with the current
    * foreground color of the canvas.
    public void fillCircle(int xPos, int yPos, int diameter)
    Ellipse2D.Double circle = new Ellipse2D.Double(xPos, yPos, diameter, diameter);
    fill(circle);
    * Fill the internal dimensions of the given rectangle with the current
    * foreground color of the canvas. This is a convenience method. A similar
    * effect can be achieved with the "fill" method.
    public void fillRectangle(int xPos, int yPos, int width, int height)
    fill(new Rectangle(xPos, yPos, width, height));
    * Erase the whole canvas.
    public void erase()
    Color original = graphic.getColor();
    graphic.setColor(backgroundColor);
    Dimension size = canvas.getSize();
    graphic.fill(new Rectangle(0, 0, size.width, size.height));
    graphic.setColor(original);
    canvas.repaint();
    * Erase the internal dimensions of the given circle. This is a
    * convenience method. A similar effect can be achieved with
    * the "erase" method.
    public void eraseCircle(int xPos, int yPos, int diameter)
    Ellipse2D.Double circle = new Ellipse2D.Double(xPos, yPos, diameter, diameter);
    erase(circle);
    * Erase the internal dimensions of the given rectangle. This is a
    * convenience method. A similar effect can be achieved with
    * the "erase" method.
    public void eraseRectangle(int xPos, int yPos, int width, int height)
    erase(new Rectangle(xPos, yPos, width, height));
    * Erase a given shape's interior on the screen.
    * @param shape the shape object to be erased
    public void erase(Shape shape)
    Color original = graphic.getColor();
    graphic.setColor(backgroundColor);
    graphic.fill(shape); // erase by filling background color
    graphic.setColor(original);
    canvas.repaint();
    * Erases a given shape's outline on the screen.
    * @param shape the shape object to be erased
    public void eraseOutline(Shape shape)
    Color original = graphic.getColor();
    graphic.setColor(backgroundColor);
    graphic.draw(shape); // erase by drawing background color
    graphic.setColor(original);
    canvas.repaint();
    * Draws an image onto the canvas.
    * @param image the Image object to be displayed
    * @param x x co-ordinate for Image placement
    * @param y y co-ordinate for Image placement
    * @return returns boolean value representing whether the image was
    * completely loaded
    public boolean drawImage(Image image, int x, int y)
    boolean result = graphic.drawImage(image, x, y, null);
    canvas.repaint();
    return result;
    * Draws a String on the Canvas.
    * @param text the String to be displayed
    * @param x x co-ordinate for text placement
    * @param y y co-ordinate for text placement
    public void drawString(String text, int x, int y)
    graphic.drawString(text, x, y);
    canvas.repaint();
    * Erases a String on the Canvas.
    * @param text the String to be displayed
    * @param x x co-ordinate for text placement
    * @param y y co-ordinate for text placement
    public void eraseString(String text, int x, int y)
    Color original = graphic.getColor();
    graphic.setColor(backgroundColor);
    graphic.drawString(text, x, y);
    graphic.setColor(original);
    canvas.repaint();
    * Draws a line on the Canvas.
    * @param x1 x co-ordinate of start of line
    * @param y1 y co-ordinate of start of line
    * @param x2 x co-ordinate of end of line
    * @param y2 y co-ordinate of end of line
    public void drawLine(int x1, int y1, int x2, int y2)
    graphic.drawLine(x1, y1, x2, y2);
    canvas.repaint();
    * Sets the foreground color of the Canvas.
    * @param newColor the new color for the foreground of the Canvas
    public void setForegroundColor(Color blue)
    graphic.setColor(Color.blue);
    * Returns the current color of the foreground.
    * @return the color of the foreground of the Canvas
    public Color getForegroundColor()
    return graphic.getColor();
    * Sets the background color of the Canvas.
    * @param newColor the new color for the background of the Canvas
    public void setBackgroundColor(Color newColor)
    backgroundColor = newColor;
    graphic.setBackground(newColor);
    * Returns the current color of the background
    * @return the color of the background of the Canvas
    public Color getBackgroundColor()
    return backgroundColor;
    * changes the current Font used on the Canvas
    * @param newFont new font to be used for String output
    public void setFont(Font newFont)
    graphic.setFont(newFont);
    * Returns the current font of the canvas.
    * @return the font currently in use
    public Font getFont()
    return graphic.getFont();
    * Sets the size of the canvas.
    * @param width new width
    * @param height new height
    public void setSize(int width, int height)
    canvas.setPreferredSize(new Dimension(width, height));
    Image oldImage = canvasImage;
    canvasImage = canvas.createImage(width, height);
    graphic = (Graphics2D)canvasImage.getGraphics();
    graphic.drawImage(oldImage, 0, 0, null);
    frame.pack();
    * Returns the size of the canvas.
    * @return The current dimension of the canvas
    public Dimension getSize()
    return canvas.getSize();
    * Waits for a specified number of milliseconds before finishing.
    * This provides an easy way to specify a small delay which can be
    * used when producing animations.
    * @param milliseconds the number
    public void wait(int milliseconds)
    try
    Thread.sleep(milliseconds);
    catch (InterruptedException e)
    // ignoring exception at the moment
    * Nested class CanvasPane - the actual canvas component contained in the
    * Canvas frame. This is essentially a JPanel with added capability to
    * refresh the image drawn on it.
    private class CanvasPane extends JPanel
    public void paint(Graphics g)
    g.drawImage(canvasImage, 0, 0, null);

    Dear Miciuli,
    I found the definition for the circle in the canvas class and used it to creates circles ! Thank you for jaring my brain into thinking !
    Stan
    Ellipse2D.Double circle = new Ellipse2D.Double(xPos, 70, 30 , 30);

  • How to make a round circle with the notch line

    Hi
    If I in Illustrator on the same layer make a Elipse with a 50pt stroke (blue color) and then i make 2 lines with a 20pt stroke (black color), so its lookslike a cross and rotate it 45 degr.
    Then i Outline the 3 elements "Outline Stroke" and align the 3 elements H and V Align Center.
    Now i want to cut the black lines out of the blue cirkel, so I get 4 pices with a "non-color" space between, but wjen i select the 3 elements and use Pathfinder -> Shape Modes, then i can't cut the lines out...
    What do i do wrong.
    What i want to end up with is something like this cirkel, so i can tage the 3 pices and give em another color.

    I did it this way.
    1) Ungroup a copy of a pie chart to disconnect the data.
    2) Draw a filled circle on top of the chart.
    3) Pathfinder Divide and delete the pieces in the centre.
    4) Select the remaining pieces and Object > Expand.
    5) Select just the expanded strokes and pathfinder Unite
    6) Pathfinder Divide and delete the United stroke.

  • Circles w/o outlines, lines disappear

    I am new to drawing using APsE, so pardon me if this is a stupid question.
    I am having a terrible time drawing a complex segmented circle. The outer circle I got from a file. I then drew 3-pixel black lines dividing the circle into 12 pie-shaped regions.
    Problem 1: I wanted an inner circle that would be transparent fill but have a normal 3-pixel outline. Any circle I draw can have a black or white fill (but not a transparent one), and there doesn't seem to be any way to have the circle edge be black. The menu item Edit/Stroke Outline would seem to be the answer but it is always dimmed.
    Temporary solution: I made the inner circle black-filled, then added another slightly smaller white-filled circle, and moved the latter over the black-filled circle so only the thin black outer edge showed, effectively giving me a circle with a black edge.
    Problem 2: I still needed those 3-pixed lines dividing the inner circle into pie-shaped segments that matched the outer circle. I can draw only 1 pixel-wide lines (wider lines disappear - why is this?), but as soon as I draw a third line the second line disappears. For example, I can draw vertical and horizontal lines, but as soon as I draw a line 30 degrees off-vertical it one of the other lines disappears.
    Temporary solution: None
    I believe I went wrong when I started doing multiple circles. I would have no problem if I could just make an inner circle with the edge showing black but the inside being transparent.
    BTW, I want to then select, in the inner circle, alternating pie shapes and filling them with black. If you see I am going to get into trouble doing that please let me know and offer a solution.
    Thanks. I'm quite good at computers but graphics is like color to a blind person.
    P.S. I am on Windows 7 64-bit SP-1 and Adobe Photoshop Elements 10.0
    EdIsenberg

    Create a new blank image.
    Use the Elliptical Marquee tool to create a large circular selection.
    Use Select...Save Selection to save the selection as "Large Circle".
    Select...Transform selection, and drag one of the corners to make a smaller circle.
    Select...Save Selection to save this as "Small Circle".
    Create a new empty layer.
    Load the large circle selection.
    Stroke the selection with 3px black on the inside.
    Create a new layer.
    Load the small circle selection.
    Stroke it with 3px black on the inside.
    In the Layers Palette, highlight both layers containing stroked circles.
    Choose the Move tool, and in its Options Bar use Align...Vertical Centers, then Align...Horizontal Centers.
    At this point, your image looks like this:
    and your layers look like this:
    Create a new empty layer.
    Use the Line tool and hold down the Shift key to draw a 3px horizontal line filled with black.
    Simplify the line layer.
    Hit Ctrl+J to duplicate the line layer.
    With the Move tool, hold down the Shift key to rotate the copied line 30 degrees.
    Repeat steps 19 and 20 until you have all the line segments drawn.
    At this point your image looks like this:
    and your layers look like this:
    Highlight all the line segment layers, right-click on one of them in the Layers Palette and choose "Merge Layers" to get this layer arrangement:
    On the merged layer, use Select...Load Selection to load the "Large Circle" selection.
    Select...Inverse to invert the selection and hit your Delete key to trim the line segments.
    Deselect All.
    Use Ctrl+Alt+Shif+E (Stamp Visible) to create a new merged layer from all the layers.
    Use the Fill tool on that merged layer to colour to your heart's content.
    The final layers:
    And the final image:
    Added:
    Whooooops!  I see that the line segments aren't centered in the circles.  Add step 24a:
    24a.  Select the layers and use the Move tool's Alignment options to center everything.
    After step 25, you might have to re-align the loaded selection with the image....
    To get the transparency you want in the segments of the inner circle, simply select the segments with the Magic Wand and hit the Delete key, hide all the layers except the top one, then save the image as a PNG:
    Ken
    Message was edited by: photodrawken to add correction.

  • Vector Fill

    Hi,
    I have simply Illustrator file: rectancle with vector fill
    "circle" (I make circle and drop to Swatches -
    here is AI CS3 file).
    Now I need it import to the Flash, but with vector pattern. After
    import (SWF, AI, PDF...) to the Flash I have rectancle with raster
    circles. Is possible vector fill (not masking) in Flash CS3 or
    where is mystake. Plese, coul'd you help me step-by step?
    Thanks
    Grigi

    Nobody ??

  • Graphical circular fill

    I've been looking for a gauge type numeric indicator that can show a type of circulr fill, as the needle on the gauge increase I would like it to fill the circle as it increase... almost like a type of dynamic pie chart, for example at 50% full I would like half the circle to be one color and the other half to be some other color... has anyone seen anything like this before?
    much thanks!

    Use a picture indicator and draw a filled circle of desired size.
    LabVIEW Champion . Do more with less code and in less time .

  • Changing graph type, color change

    Why when I change the type of graph it changes the colors automatically. I had blue, green, red (in the 3d fills) for a bar graph respectively representing 2009,2010,2011. I am adding this year I wanted to switch to a line graph - why are the colors changing auto to add a yellow and making 2012 red? How can I stop this? I find it quite difficult to change the colors of all the lines/symbols using the 3D fills, actually it doesn't work very well @ all, so I would prefer not to have to do this for 10 graphs per client @ 5 clients. Is there a more efficient way to accomplish this?
    Also brings me to my next question. I was attempting to use the copy style, paste style function with the graphs - to ease the pain of all of this. When I do that it only pastes the axis scale (exactly what I don't want copied)! Is there a way to c&p the STYLE...the colors, weight, and data symbols of the lines. Therefore if I must do all the color change manually I would only have to do it once?
    Thanks so much.

    Here's an example, using a Line Graph.
    The first graph uses the full table, which has a column for each year, and extends to 2017, using 'placeholder data.'
    For the second, all of the data, and the header labels (year) was deleted from the table.
    Not good for presentation (nor was the table with all those empty cells), so columns E (2012) to J were selected and Hidden.
    When data became available for 2012 (ie. about 10 or 11 months from now), the hidden columns were Unhidden, the label and data were entered into column E (2012), and columns F - J were again Hidden.
    I haven't tried this with bar graphs yet. A closer look at the structure of your data and a screen shot of a sample bar graph would be useful in avoiding a 40 day trek through the wilderness.
    Regards,
    Barry

  • HT201740 How to make an unfilled circle on Preview (new version)

    I'm not dealing well with the new version of Preview. Things seem so much harder and less intuitive.
    How can I make a non-filled circle?
    Many thanks

    Create a circle and set the fill to None.

  • How to change 'half-moon' Layer Thumbnail to a graph

    I've noticed that in some of my images, the Layers Thumbnail -- the black & white circle between the Layer Visibility and the Layer Mask -- is not a circle but a graph. How do I change from one to the other?
    I can understand the graph, but what is the circle supposed to represent?

    Thanks Zeno, for the suggestion. I had already checked out the section in PS Help that you provided the link for, but I couldn't work out why, when the setting for Layer Thumbnails were all set to small, that some of the images had graphs and other had the circles. You confirmed the solution and now I know where the problem was:
    * the images that had the graph were vertical format and there was enough vertical space to fit in the graph;
    * the images that had the circle were horizontal format. The vertical dimension must have been just under the size limit for the graph.
    A bit confusing. I assumed the thumbnails would be scaled so that on a certain thumbnail size setting, the vertical dimension of the thumbnails was the same so that the spacing of the various layers remained constant. Not so. The longest dimension appears to remain constant.
    Anyway, problem fixed. Thanks.

  • Concentric circles, but not quite.

    Does anyone know how to easily reproduce an expanding pattern made of circles like this: http://i1.creativecow.net/u/181152/screenshot2011-09-01at6.35.16pm.png
    Many thanks.
    Richard.

    Richard,
    To avoid confusion, the term dots is used for the small filled circles here.
    The distance between dots seems to be about the same as their size. This corresponds to 6 dots times the number of the circle (6 dots in the first circle round the central dot etc).
    A  way that is more accurate than using the Polar grid is a Blend based on a single outer circle. The exact size and number of Blend steps depend on the desired number of circles/dots. For 61 circles round a central dot (with 366 dots in the outermost circle), you may:
    1) Create a circle with Width = Height = 233 times the size of the dot, give it a Stroke Weight = the dot size, set the Cap to Round, tick Dashed Line with Dash = 0 and Gap = twice the dot size;
    2) Ctrl/Cmd+C+F to create a copy and set W = H = 0;
    3) Object>Blend>Options set Specified Steps = 60 (I always prefer to set Orientation to Align to Path unless specifically not, silly sometimes);
    4) Select the two circles and Object>Blend>Make;
    5) Enjoy.
    If you have too many circles/dots, you may:
    6) Object>Blend>Expand and delete the unnecessary ones from the outside in.
    You may change the dot colour at any time.
    It may be mentioned that the size of the outer circle is adjusted for the inherent inaccuracy of the circle shape.

  • Toshiba Encore WT8-A-103 - Jumping circles/points on the screen

    Hi all,
    one strange issue that seems to happen quite often with my Toshiba Encore WT8-A-10:
    some jumping (mostly filled) circles/points or spots on the display. Firstly, always arranged in a straight line (both holding the tablet in landscapeor portrait mode). Today more than one line was affected.
    Once this happened after starting the tablet and those jumping things resulted in keystrokes when I had to enter the password for my outlook.com account. I tried to start Taskmanager when this happened today, but this affect seems to be using quite some processor power, so I could not start Taskmanager. Also, when switching from the Desktop to the Start screen in W8.1, all of the tiles are kind of zoomed out, and I cannot use the touchscreen to scroll around and open programs. Since this was going on for some minutes without getting better, I had to press the power button for some seconds to perform a restart of the tablet.
    Anyone else with this strange phenomenon?
    Best,
    Thomas

    Okay, good idea. Just took 4 pictures right after starting the tablet and entering my credentials. Take a look at those dots in about the lower third of the image. Those dots go on and out, appear on other parts of the screen and mess up with the overall performance. Know these fancy xmas lights on a tree, where one goes off, the next goes on, thus simulating a kind of "movement". That's exactly what it is. Best - Thomas  

Maybe you are looking for