Coloring data symbols in scatter graphs

Having created a scatter graph with 10 data points I would like to color each point differently. Does anyone know if you can do this?
The complete data series can be colored, so ALL data points can be formatted but I cannot see how each point can be done individually.
If that is not possible, how else can you notate or label each data point on that scatter graph so that they can be identified?
Many thanks
Mark

We may have a different colors for each serie
but can't have different colors in a single serie.
Yvan KOENIG (VALLAURIS, France) mardi 20 juillet 2010 17:22:21

Similar Messages

  • Connect data points on scatter graph

    I currently have a scatter graph to represent the cross section of a creek. I want to connect the data points so that it looks like a line graph.
    However, I cannot find an option in the inspector to do this.
    Thanks
    [IMG]http://i812.photobucket.com/albums/zz49/frusciantaya/Screenshot2010-07-31at72002 PM.jpg[/IMG]

    PacoA wrote:
    How to do it (format scatter charts) in numbers '09?
    Open Numbers '09 Users Guide.
    Type 'format scatter charts' (without the quotes) in the search box.
    Click on the most useful looking (and in this case, only) item in the list.
    Regards,
    Barry
    PS: The Numbers '08 forum isn't the right place for a Numbers '09 question.

  • Using scatter graph type in oracle 10g forms using bi beans

    hi.. how i can use scatter graph type in oracle 10g using bi beans..
    it seems scatter graph is supported in 10g but it doesnt work at all..
    i used to use oracle graphics builder in oracle 6i forms,now i need to convert all my old graphs to 10g forms..the line,bar and pie it work very well but the scatter didnt work..
    so please if anyone know how to use it please tell me.. and what versions of bi beans support the scatter graph type
    thanks.
    u can email me in
    [email protected]

    Hi,
    What version of Oracle Forms are you using? If it is 10.1.2.0.2 (10g R2 Phase 2) then the BI Beans version should be 10.1.2.1 (3.2.2.0.24.2).
    When you run a Graph, do you see any version numbers?
    Regardless of the version, scatter graph should work. What kind of errors are you getting?
    When you install BI Beans in JDeveloper, you get access to BI Beans Help. Go to the following topic for setting up data for a scatter graph:
    Help -> Building Applications with BI Beans -> Presenting Data in Graphs -> Specifying Data for Graphs
    Did you try posting your question on the Oracle Forms forum?
    BI Beans PM

  • Data Point Symbol in Line Graph  - can you change the size?

    I would like to change the Data Point Symbols in line graphs - if not the actual symbol it would be wonderful to be able to change the size of the symbols provided.
    At present, if there is a lot of data in the graph, the symbols are too big and crowd one another.
    I know that one can reduce the line size but that doesn't change the symbol size.
    Help please.

    If I understand your question, this from the Pages online help may give the answer:
    To mark line, area, and scatter charts with data point symbols:
    Select the entire chart. You can also select the chart series (the line or area shape) that you want to mark with data point symbols.
    Click Inspector in the toolbar, and then click the Chart Inspector button.
    Click Series (except for scatter charts).
    Choose a symbol from the Data Point Symbol pop-up menu.
    Choose one of the following options from the Symbol Fill pop-up menu:
    To fill the symbol with the same color as its outline, choose Use Stroke Color.
    To fill the symbol with a solid color, choose Color Fill, click the Fill color well, and pick a color.
    To fill the symbol with a gradient, choose Gradient Fill and use the gradient controls to set the colors and change the angle of the gradient.
    To fill the symbol with an image, choose Image Fill and select the image you want. You can also resize the image by choosing an option from the pop-up menu above the Choose button.
    To fill the symbol with a tinted image, choose Tinted Image Fill and select the image you want. Click the color well to the right of the Choose button to change the tint color. You can also resize the image by choosing an option from the pop-up menu above the Choose button.

  • Convert a scatter graph with multiple data series into individual graphs

    I am trying to convert a scatter graph with multiple data series into individual graphs, with the series having the same formatting as in the graph when all series are together.
    Normally, if I delete any series, the color scheme for all the other series vanishes. I can then waste more time in having to re-adjust the  color and shape of the series, but this is tedious. This, I do not want. Is there an automated way to do this?
    Ideally, of course, all series would appear in little subsections in the space of the former one graph, all with individual axes, but I can't have all, so I'll settle with having several individual new graphs, each with just one series, and with the original
    formatting.
    Thx.

    How about creating a copy of the chart, and then setting all series except one to be transparent (no line, no marker)? Repeat for each series.
    Regards, Hans Vogelaar (http://www.eileenslounge.com)

  • Setting the series color of a bi beans graph based on the data values

    How do I conditionally set the series color of a bi beans graph based on the data values?
    I am using the following code to get the data values and set the series color:
    Graph gr=(Graph)CmdrDashboardP1_pres1.getView();
    DataAccess da=gr.getGraphModel().getDataAccess();
    DataDirector dd=gr.getDataDirector();
    DataMap dm=dd.getDataMap();
    int re=dd.ROW_EDGE;
    int ce=dd.COLUMN_EDGE;
    Object val=da.getValue(re,ce,dm.DATA_TYPE);
    int seriesCount=da.getEdgeCurrentSlice(DataDirector.ROW_EDGE);
    if (val <=45.0)
    gr.getSeries().setColor(new Color(255,0,0),seriesCount);
    I get a NullPointerException from the line of code "Object val=da.getValue(re,ce,dm.DATA_TYPE)." I have tried the code with DATA_UNFORMATTED as well, but get the same exception. When I print the DataMap value of dm the results are [dataUnformatted, dataViewFormat, value, dataIsTotal, dataType].
    Also, I get the error "method <= (java.lang.Object,double) not found in class _CmdrDashboardP1" from the "if (val <=45.0)" code.
    Thanks for any assistance

    How do I conditionally set the series color of a bi beans graph based on the data values?
    I am using the following code to get the data values and set the series color:
    Graph gr=(Graph)CmdrDashboardP1_pres1.getView();
    DataAccess da=gr.getGraphModel().getDataAccess();
    DataDirector dd=gr.getDataDirector();
    DataMap dm=dd.getDataMap();
    int re=dd.ROW_EDGE;
    int ce=dd.COLUMN_EDGE;
    Object val=da.getValue(re,ce,dm.DATA_TYPE);
    int seriesCount=da.getEdgeCurrentSlice(DataDirector.ROW_EDGE);
    if (val <=45.0)
    gr.getSeries().setColor(new Color(255,0,0),seriesCount);
    I get a NullPointerException from the line of code "Object val=da.getValue(re,ce,dm.DATA_TYPE)." I have tried the code with DATA_UNFORMATTED as well, but get the same exception. When I print the DataMap value of dm the results are [dataUnformatted, dataViewFormat, value, dataIsTotal, dataType].
    Also, I get the error "method <= (java.lang.Object,double) not found in class _CmdrDashboardP1" from the "if (val <=45.0)" code.
    Thanks for any assistance

  • How to change data symbol color - line charts

    In the keynote manual to change the color of lines they say you have to the graphic inspector and change the color of the line there, but that does not change the color of the data symbol (circle, triangle,...) How to change its color ?
    thanks

    The internal part of the dot can be changed simply by dragging a color from the Color Picker onto the dot or triangle.
    You can do the same to change the color of the line.
    I can find no way of actually changing the outer part of the data symbol.
    The User Guide seems to not mention the subject at all.

  • Dates not recognised in scatter graphs

    I have some data consisting of date-value pairs which I want to graph on what I would call an x-y graph, but which some call a scatter graph.
    So I want each date plotted along the x-axis with the value up the y-axis.
    However, when I create a graph, Numbers doesn't recognise the dates as dates, so uses them as discrete categories, ie with each date equally spaced across the x-axis, even though the dates themselves aren't evenly spaced.
    For example, if I had dates of 1-Jan-14, 3-Jan-14, 15-Jan-14, 6-Jun-14, Numbers would space them all evenly.
    The cells containing the dates are properly formatted as dates. It's only the graph that doesn't seem to pick up on the data being date-based.
    I read various other threads which say this was a problem with earlier versions of Numbers 3 but was fixed (in version 3.1 IIRC). I'm using 3.2, and it's not fixed for me!
    I'm a UK-based user and therefore use international date formats (as opposed to US date format). Could this be part of the problem?
    TIA
    David

    Hi David,
    A Scatter Plot requires that X and Y are not in Header Columns. You can have a Header Row for the axis titles (but they don't appear as titles on the plot; not sure how to make that happen without manually entering the titles on each axis).
    X values need not be evenly spaced. X axis label values will be linear and will not be categories. Nor will they line up with individual X values (which is how a Scatter Plot should behave).
    Column B looks like it is a Header Column, but it isn't. That grey fill happens after clicking on Edit Data References (non-intuitive IMHO).
    Regards,
    Ian.

  • Why the scatter graph doesnt show data?

    Hi,
    I would like to ask something..i use the latest version of bean with size 1.74 MB and i download it from the oracle site but SCATTER GRAPH didn't work with it.. it doesn't show anything from the data that have been sent to it..
    I saw in the sample code that comes with the bean (graph90 file) that the scatter type is new supported one..so does this version of bean support the scatter graph in oracle 10g forms? if yes what do you think that the problem might be ?
    Does anyone know what the problem might be and how i can fix it?
    Thanks alot
    Eyad Basheer

    Grant SELECT or DEBUG on scott.emp to trainee3, or else give trainee3 some global SELECT ANY privilege.

  • ADF Data Visualisation - Scatter Graph

    Hello,
    I am planning to use the new adf data visualisation components to visualise a ROC (receiver operating curve) in my web application. Unfortunately, I wasn't able to find any documentation on how the data has to be delivered to the scatter graph component. For the gauge component I was able to use the tabularData(java.util.List), but this is not possible for the scatter graph. As I understand it, it has to be a DataModel or GraphDataModel.
    Any help on where to find example code or documentation for this matter is appreciated very much.

    Im trying to do the tutorial now but I encounter this error in infrastructure.jws file,
    BUILD FAILED
    C:\Infrastructure\Ant\build.xml:52: The following error occurred while executing this line:
    C:\Infrastructure\DBSchema\build.xml:91: The following error occurred while executing this line:
    C:\Infrastructure\DBSchema\build.xml:56: The following error occurred while executing this line:
    C:\Infrastructure\DBSchema\build.xml:28: java.sql.SQLRecoverableException: Io exception: The Network Adapter could not establish the connection
    I have search the forum and found another user with the same error, i have already change my listener.ora file accordingly but i still encounter the error
    Please help
    Regards
    Timmie

  • How do you label a point (x,y) on a scatter graph?

    I made a graph with a corresponding table, just a regular x,y table.  I just need one of these points on the graph to be labeled with the corresponding (x,y) numbers.  How do you do that?

    The only solution I could come up with utilizes two charts one on top of the other:
    - the scatter chart you started with  AND
    - a vertical bar chart where the value is enabled with
       + everything else hidden or disabled
       + the background set fill set to none
       + the vertical and horizontal min and max set to the same for both charts
    I had to create a two new columns (one to check a box indicating the value label was to be included) and a column which includes the value:
    setting this up is not too hard:
    In this example...
    D2=IF(E2, C2, "")
    select D2 and fill down
    Now select the column D and add a bar chart and set up like:
    You will also want to select the series in the new column and make the "series data symbol" none
    This has a problem where the bar chart does not use X data so the points will not always line up.
    NOTE:  This is the rube-goldberg solution.
    You can simply place a text box or and single cell table that references the same cell in the original data like this, 

  • 4D-data on a 3D-graph

    Hi,
    I am trying to put 4D-data on a 3D-graph, and I am using a similar approach as his thread: http://forums.ni.com/t5/LabVIEW/How-to-display-4d-​data-within-a-3d-scatter-plot/m-p/1402738. The manner described is to bin all the XYZ-data according to the W-values. For instance you use 128 bins to group the XYZ-data based on their W-values. Then you plot 128 3D-graphs on the same plot and assign a color to each bin, in this way the W-value is represented by the changing color. My problem is, some bins contain one datapoint, so you plot a 3D-graph with only one point. This point is not visible, unless you are rotating the graph, so you see more points on the graph when you rotate it. Is there a solution to this problem? I can't change the number of bins, so that's not a solution I like to see
    regards
    KF
    Attachments:
    Untitled.vi ‏38 KB

    KF2 wrote:
    This point is not visible, unless you are rotating the graph, so you see more points on the graph when you rotate it. Is there a solution to this problem? I can't change the number of bins, so that's not a solution I like to see
    Can you explain why you see it when you move the graph but don't if you don't? The only difference wieh moving is that it uses "fast draw" (unless otherwise configured), so the axes are and points simplified.
    On a side point, you could dramatically simplify the code if you use none instead of custom color ramp. None uses only a single color element in the array. I also don't see the need for a sequence structure because dataflow already determines the correct execution order if you would wire the error cluster. Also you only need to touch the cluster elements that change. Here's a quick redo of the FOR loop that changes the colors.
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    ScatterColor.png ‏6 KB

  • Help needed with Scatter Graphs

    Hi,
    I have a requirement wherein I need to plot a graph with <b>X-Axis</b> as the <b>months of  a year in text format(eg:Apr,May...)</b> and <b>Y-Axis</b> as the <b>sales data for the corresponding month</b> for <b>n no. of years</b> . This data will be fetched from an RFC . As far as I know , I need to use a <b>Time-Scatter Graph</b> .Can anyone please guide me on how to go about this . Any help will be highly appreciated and suitably rewarded with points.
    Regards,
       Tahzeeb

    Hi tahzeeb,
                      Hope this will help
    <a href="http://help.sap.com/saphelp_nw70/helpdata/en/9a/a04d29a6d611d2960500a0c9308b1f/frameset.htm">http://help.sap.com/saphelp_nw70/helpdata/en/9a/a04d29a6d611d2960500a0c9308b1f/frameset.htm</a>
    regards
    Sumit

  • How can I plot two sets of data points in 3d graph?

    I am trying to plot two sets of data points in 3d graph. I also need to make a set of data with one color and the other set with a different color. For example, I need to plot 10 (x,y,z) data points in 3d. Maybe 6 points need to be blue, and the other 4 red. Could you tell me how?

    What is your LabVIEW version? (things are a bit different in 8.6).
    Basically, you create multiple instances of the VI that gets placed automatically when you drop the 3D graph and then wire a different number to the plot ID at the bottom.
    You define all the plots (color, style) via the properties dialog.
    Have a look at my example posted here. One plot is "blue dots" and one is a "shaded surface". See how far you get.
    Message Edited by altenbach on 04-23-2009 01:11 PM
    LabVIEW Champion . Do more with less code and in less time .

  • Time scatter graph class cl_gui_chart_engine

    hello
    i need to biled graph that the y pivot is date and hour and the x is caracteristic but
    i whant to show the x pivot divied by  motnth 
    for that use i am tring to use time scatter graph.
    and my question is how to write the categories and the  series_table in the sap program
    thank you

    Hello,
    I suggest you to use the Chart Designer (you can find it here : http://www.sdn.sap.com/irj/scn/downloads?rid=/library/uuid/e0a9ba90-0201-0010-d3a2-9cb376b5e181 ). A pdf document explains how building the XML data file.
    You can also read this article : http://www.sdn.sap.com/irj/scn/weblogs;jsessionid=(J2EE3417200)ID0627021950DB01268469089299731926End?blog=/pub/wlg/13313
    Regards,
    Vincent Choupaut

Maybe you are looking for