scottbed

Members
  • Content count

    3
  • Joined

  • Last visited

About scottbed

  • Rank
    Forum Newbie
  1. I was wondering using the bubble charts if I can have overlapping bubbles. If so, can I make the colors either transparent so you can see the other bubble underneath or have the overlapping area be a different color? It would be awesome to have different labels in the overlapping area as well but I know that is a stretch. Thanks.
  2. X-Axis Scaling

    I've attached an illustration (NotScaled.png) of what I see on the chart for 3 data points with x values of 1, 2, and 6. This is not what I want because the point at 2 is equi-distant from 1 as it is from 6. I want it to be a single unit away from 1 and 4 units from 6. I've also attached an illustration of what I want to see (Scaled.png). As I said, I could probably insert null points but this is very difficult to extrapolate for points that have decimal x values. Thanks.
  3. X-Axis Scaling

    I'm using the multi-series 2d line chart. I want to make sure the slope of the lines is correct (or at least to scale with each other). This means the x-axis values must be the appropriate distance from each other depending on the actual values. I'm unsure how to do this even after searching the forums. I did see the ability to put null values, which I could do, but this is very difficult to do with different x-axis value types (e.g. integer vs decimal)...you would have to calculate the smallest x difference between two points and use that to generate the nullable points. For example, if I have x.y points -> 1.5,5; 3,8; 6,4......that would generate 3 points. On the x-axis there would be three values: 1.5, 3, and 6. I want the points to be the correct distance from each other. 6 would be twice as far away from 3 as 3 is from 1.5. But using my current chart props, I get 3 points all the same x distance from each other. I think maybe scale is what I want but not sure. Thanks.