Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7668319
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T15:20:01+00:00 2026-05-31T15:20:01+00:00

I need to render a simple chart and I want the points to be

  • 0

I need to render a simple chart and I want the points to be glassy looking circles/orbs in the chart area. I can find tons of examples of drawing these with Photoshop, but I don’t want to use stock images; I’d prefer to draw them in my HTML5 canvas. I am no artist, though!

There are many HTML5 canvas questions, but I don’t see anything that leads me to this solution.

A point in the right direction would be most appreciated.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T15:20:03+00:00Added an answer on May 31, 2026 at 3:20 pm

    All you have to do is create one or more radial gradients to fit the properties of the glassy object that you want. It’s easy to do!

    Just one gradient:

    // Create some gradient
    var gradient = ctx.createRadialGradient(105, 105, 20, 120, 120, 50);
    gradient.addColorStop(0, 'rgba(250,250,255,0)');
    gradient.addColorStop(0.75, 'rgba(230,250,255,1.0)');
    gradient.addColorStop(1, 'rgba(0,0,255,0)');
    
    // draw the gradient (note that we dont bother drawing a circle, this is more efficient and less work!)
    // but make sure it covers the entire gradient
    ctx.fillStyle = gradient;
    ctx.fillRect(0, 0, 300, 300);​
    

    Can make this:

    enter image description here

    Live example:

    http://jsfiddle.net/GTbjk/

    Maybe you want to reign in that fuzzy edge:

    gradient.addColorStop(0.8, 'rgba(0,0,255,0)');
    gradient.addColorStop(1, 'rgba(0,0,255,0)');
    

    http://jsfiddle.net/GTbjk/1/

    I’m not going to make one to your specification, since you didn’t provide one and thats not what we’re here for anyway. Making these will almost exclusively be the work of well-placed radial gradients, so go experiment!

    As j08691 points out this is a really inefficent way of making these unless you want them to be dynamic or scalable, you are better off just making images and use ctx.drawImage

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to write video filter for Adobe Premiere, and I need to print/draw/render
I need to render a simple texture mapped model as the output of a
I need to render a simple link in a page that open a pdf
Looking for a simple way to render a list of arbitrary vertices (on a
I need to render quite alot (tens of thousands) images off-screen using OpenGL. I
I need to render JSON data in my JSPs for some AJAX requests. I'd
I need to render a partial view to a string within a controller action.
I'm writing a game in python with pygame and need to render text onto
I have a report which is composed of several subreports. I need to render
I'm writing a retro type game for the iPhone, and need to render a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.