Using Labels in Scatter/Bubble Chart

Hi,
We are trying to show labels in scatter and bubble chart
using flex 2.0. We have implemented the same in flex 1.5 using
showlables= true/false property. However we are not able to find
out the same in flex 2.0
Can someone help me with the same.
Thanks

As this is a configuration issue and not a programming issue I' moving your question to a more appropriate forum where you're more likely to find assistance.
Cindy Meister, VSTO/Word MVP,
my blog

Similar Messages

  • How to add lines to scatter/bubble chart?

    Hi,
    I have bubble and scatter charts for which I'd like to add some horizontal lines, such as sales goals. Anyone?
    Appreciate any suggestions/ideas.

    FileWriter(String fileName, boolean append) throws IOException
    If append is true, then output is appended to the end of the file. Here is an example:
    import java.io.*;
    public class  AATest1
         public static void main(String args[])
              try
                   //Open file for writing:
                   File data = new File("C:\\TestData\\javaIO.txt");
                   BufferedWriter out = new BufferedWriter(
                                  new FileWriter(data) );
                   out.write("hello");
                   out.close(); //flushes buffer
                   //Open file for appending:
                   out = new BufferedWriter(
                        new FileWriter(data, true) );
                   out.write(" world");
                   out.close(); //flushes buffer
              catch(IOException exc)
                   System.out.println("io error writing to file");
    }

  • Bubble Chart Labelling

    I have a bubble chart where each doctor is his own bubble, and I have about 18 bubbles.
    Is there a way to make the labels on a bubble chart be the Doctor name, instead of the number of cases eash doctor has? With 18 bubbles it's difficult to tell from the legend which color equates to which bubble, as many colors are similar...

    Have a look here:
    http://obiee101.blogspot.com/2008/01/obiee-xy-and-data-in-mouse-over-label.html
    regards
    John
    http://obiee101.blogspot.com

  • Bubble Chart drill down issues

    I have a filter and a bubble chat with 7 series. The chart is showing up bubbles with different size and colors as per the settings when I chnage the filter
    The problem is with drill down
    I want to drill down to a Bar chart when I click on bubbles. Each bubble click will drill down data into that bar charchart as a pop up. I know how to do it as I have done it in the past with other components.
    But when I use drill down with bubble chart, I have to assign separate destination area for each series which makes it difficult to drill down into a chart. What i want is the bubbles to drill down data into a single row so that I can map the Y-axis of chart component to that row and X axis as fixed labels. But I am not able to do that. Moreover once inserted there is no way to clear the destination cells.
    However if I use data in range options in bubble chart then I can use drill down as I get only one series in that case. But that method also has limitations.
    1. I am not able to display series name on the bubbles. It doesn't make any sense to show bubbles without any labels.
    2. All bubbles are of same color.
    Is it possible to overcome above two limitations when using data in range option?
    Thanks

    Hi Tarun,
    as a workaround you could define a special area as mapping area for the X-Y-chart.
    This area is filled via excel formulas from the bubble chart drill down destinations. You can concatenate the values from the drill down target areas, like "=A4&A5" etc. Make sure to clear all cells except the actual drill down target cells.
    Hope this helps,
    best regards
    Heiko

  • Xcelsius Bubble Chart - Drill Down Issues

    Hi ,
    Product : Xcelsius SP 3
    I have a bubble chat with 7 series. The chart is showing up bubbles with different size and colors as per the settings.
    The problem is with drill down
    I want to drill down to a X-Y chart when I click on bubbles. Each bubble click will drill down data into that X-Y chart as a pop up. I know how to do it as I have done it in the past with other components.
    But when I use drill down with bubble chart, I have to assign separate destination area for each series which makes it difficult to drill down into a chart. What i want is the bubbles to drill down data into a single row so that I can map the Y-axis of chart component to that row and X axis as fixed labels. But I am not able to do that. Moreover once inserted there is no way to clear the destination cells.
    However if I use data in range options in bubble chart then I can use drill down as I get only one series in that case. But that method also has limitations.
    1. I am not able to display series name on the bubbles. It doesn't make any sense to show bubbles without any labels.
    2. All bubbles are of same color.
    Is it possible to overcome above two limitations when using data in range option?
    Please help if someone has encountered this issue. There has to be some solution for this.
    Thanks,
    Tarun

    Hi Tarun,
    as a workaround you could define a special area as mapping area for the X-Y-chart.
    This area is filled via excel formulas from the bubble chart drill down destinations. You can concatenate the values from the drill down target areas, like "=A4&A5" etc. Make sure to clear all cells except the actual drill down target cells.
    Hope this helps,
    best regards
    Heiko

  • Scatter plot using time series function - Flash charting

    Apex 3 + XE + XP
    I am trying to build a time series scatter plot chart using flash chart component.
    Situation :
    On each scout date counts are taken within each crop. I want to order them by scout dates and display them in a time series chart. Each series represents different crop.
    I am posting the two series queries I used
    Queries:
    Series 1
    select     null LINK, "SCOUTDATES"."SCOUTDATE" LABEL, INSECTDISEASESCOUT.AVERAGECOUNT as "AVERAGE COUNT" from     "COUNTY" "COUNTY",
         "FIELD" "FIELD",
         "VARIETYLIST" "VARIETYLIST",
         "INSECTDISEASESCOUT" "INSECTDISEASESCOUT",
         "SCOUTDATES" "SCOUTDATES",
         "CROP" "CROP"
    where "SCOUTDATES"."CROPID"="CROP"."CROPID"
    and     "SCOUTDATES"."SCOUTID"="INSECTDISEASESCOUT"."SCOUTID"
    and     "CROP"."VARIETYID"="VARIETYLIST"."VARIETYLISTID"
    and     "CROP"."FIELDID"="FIELD"."FIELDID"
    and     "FIELD"."COUNTYID"="COUNTY"."COUNTYID"
    and      "INSECTDISEASESCOUT"."PESTNAME" ='APHIDS'
    and     "VARIETYLIST"."VARIETYNAME" ='SUGARSNAX'
    and     "COUNTY"."COUNTNAME" ='Kings' AND CROP.CROPID=1
    order by SCOUTDATES.SCOUTDATE' ASC
    Series 2:
    select     null LINK, "SCOUTDATES"."SCOUTDATE" LABEL, INSECTDISEASESCOUT.AVERAGECOUNT as "AVERAGE COUNT" from     "COUNTY" "COUNTY",
         "FIELD" "FIELD",
         "VARIETYLIST" "VARIETYLIST",
         "INSECTDISEASESCOUT" "INSECTDISEASESCOUT",
         "SCOUTDATES" "SCOUTDATES",
         "CROP" "CROP"
    where "SCOUTDATES"."CROPID"="CROP"."CROPID"
    and     "SCOUTDATES"."SCOUTID"="INSECTDISEASESCOUT"."SCOUTID"
    and     "CROP"."VARIETYID"="VARIETYLIST"."VARIETYLISTID"
    and     "CROP"."FIELDID"="FIELD"."FIELDID"
    and     "FIELD"."COUNTYID"="COUNTY"."COUNTYID"
    and      "INSECTDISEASESCOUT"."PESTNAME" ='APHIDS'
    and     "VARIETYLIST"."VARIETYNAME" ='SUGARSNAX'
    and     "COUNTY"."COUNTNAME" ='Kings' AND CROP.CROPID=4
    order by SCOUTDATES.SCOUTDATE' ASC
    Problem
    As you can see the observations are ordered by scout date. However when the chart appears, the dates dont appear in order. The chart displays the data from crop 1 and then followed by crop 4 data, which is not exactly a time series chart. Does flash chart support time series or they have no clue that the data type is date and it should be progressive in charting ? I tried to use to_char(date,'j') to converting them and apply the same principle however it did not help either.
    Any suggestions ?
    Message was edited by:
    tarumugam
    Message was edited by:
    aru

    Arumugam,
    All labels are treated as strings, so APEX will not compare them as dates.
    There are two workarounds to get all your data in the right order:
    1) Combine the SQL statements into single-query multi-series format, something like this:
    select null LINK,
    "SCOUTDATES"."SCOUTDATE" LABEL,
    decode(CROP.CROPID,1,INSECTDISEASESCOUT.AVERAGECOUNT) as "Crop 1",
    decode(CROP.CROPID,4,INSECTDISEASESCOUT.AVERAGECOUNT) as "Crop 4"
    from "COUNTY" "COUNTY",
    "FIELD" "FIELD",
    "VARIETYLIST" "VARIETYLIST",
    "INSECTDISEASESCOUT" "INSECTDISEASESCOUT",
    "SCOUTDATES" "SCOUTDATES",
    "CROP" "CROP"
    where "SCOUTDATES"."CROPID"="CROP"."CROPID"
    and "SCOUTDATES"."SCOUTID"="INSECTDISEASESCOUT"."SCOUTID"
    and "CROP"."VARIETYID"="VARIETYLIST"."VARIETYLISTID"
    and "CROP"."FIELDID"="FIELD"."FIELDID"
    and "FIELD"."COUNTYID"="COUNTY"."COUNTYID"
    and "INSECTDISEASESCOUT"."PESTNAME" ='APHIDS'
    and "VARIETYLIST"."VARIETYNAME" ='SUGARSNAX'
    and "COUNTY"."COUNTNAME" ='Kings'
    AND CROP.CROPID in (1,4)
    order by SCOUTDATES.SCOUTDATE ASC2) Union the full domain of labels into your first query. Then the sorting will be applied to the full list, and the values of the second series will be associated with the matching labels from the first.
    - Marco

  • Add Labels to Bubble Charts

    Hi all,
    is it somehow possible to add labels to bubbles in a bubble chart? I would like to see not only the values (X/Y) and the size but also the name.
    In Excel one can use a Makro or an add in. Is something comparable also possible in Xcelsius?
    Many thanks for brief answer!
    Best, Chris

    I am sorry to disappoint you: but yes, you have to make a new series for each point you want with a name on it...
    A project I am on has the same problem, I have had to define 80 series by hand. Note that after 50 series the adding of new series gets rather sluggish. Note that also need to define the bubble size, or the items will not appear.
    I have yet to figure out the way Xcelsius allows you to rapidly create "many" series by selecting an area ("By Range") and then manually setting up the series by picking the option "Rows". If you figure out how to do this, I am all ears.

  • Can not edit data labels in old graph chart objects using Word 2010

    In Word 2010, Insert object "Microsoft Graph Chart", go to Chart Options and check an item in Data labels, such as "Series Name", "Category Name" or "Value". Click OK, then double-click on a data label to edit its
    settings, or right-click on a data label and select "Format Data Labels..."
    This makes Word to crash. The only way I can get out of it is by using the Task Manager to kill Word.
    This happens in Windows 7 and Windows 8. This does NOT not happen in Word 2007 nor Word 2013, so it seems specific to Word 2010. All our clients have the same problem, this does not seem related to a specific workstation configuration.
    The Microsoft Graph Chart are the old charts used within .doc files. I have an application still generating those types of files and need to edit data label settings manually before processing the files with my application.
    Also note that anytime you edit a .doc file in Word 2010 and you see "Compatibility Mode" in the title bar, the Insert / Chart option from the ribbon inserts an old type chart (same as if you use Insert / Object / Microsoft Graph Chart), not the
    new Word 2010 charts. You then have the same problem editing the data labels.
    The underlying Activex seems to be the Chart.Exe file, the one I have installed is 14.0.7012.1000. You can see the version by double-clicking the chart and then look in the Help / About menu.
    Any help will be greatly appreciated.

    As this is a configuration issue and not a programming issue I' moving your question to a more appropriate forum where you're more likely to find assistance.
    Cindy Meister, VSTO/Word MVP,
    my blog

  • Bubble Chart Label in OBIEE

    Hello,
    I have a bubble chart on dashboard
    measure1 - x axis
    measure2 - y axis
    org name - level access
    revenue - size of bubble
    quarter - legend axis
    the problem is when, i move the mouse over the buble i see the revenue, but what I want to see is org name
    How can this be acheived
    Reply

    hi,
    ckeck this...
    http://obiee101.blogspot.com/search/label/CHART
    i hope i helped....
    http://greekoraclebi.blogspot.com/
    ///////////////////////////////////////

  • Bubble chart - labels?

    Hi,
    I'm a problem with the bubble chart. I need to display a specific label near every bubble. In excel It's possible with the data label function. I see that in the Xcelsius 2008 SP3 there is a "data label" selection in the Appearance - Text tab, but it allow to see only X/Y values, the series name or the bubble size....

    Hi,
    I am not sure if our approach suits to your requirements but we implemented a kind of legend below the bubble chart, showing the "technical" values of the bubbles (x-/y-position and bubble size) and some additional, more functional values like name and type of the corresponding real world object which is represented by the bubble.
    Our legend is dynamically filled via the drilldown-function of the bubble chart, i.e. when you move the mouse over one bubble all corresponding values of this bubble are displayed in the legend. BTW: These values remain in the legend until you move the mouse over another bubble, i.e. you don't have to keep the mouse over the bubble in question as long as you do not move it over another bubble.
    Hope this helps!
    Michael

  • Bubble chart with scatter chart type and different bubble sizes

    Hello everybody,
    I would like to create a bubble chart (scatter chart) within Oracle 11g and Apex 4.2 with the standard chart types that come with Apex (anychart).
    I want to integrate two different KPIs (key performance indicators) in the chart, one for each axis (x and y) and additionally the size of the bubbles shall represent the size of the company, the KPIs belong to.
    That is to say, every bubble represents a company with two KPIs and its size.
    Now, I have problems changing the size of the bubbles. Can someone give me a hint where to start or how I could achieve this with  a standard sql query  (series) !?
    Is that possible with the standard charts (scatter type)?
    Can I control the color of the bubbles?
    How can I control the starting and ending points of the axes in order to show all bubbles completely even if they are e.g. 0,0 (x,y)  (this would show only a quarter of the bubble) or 0,3 (which would show only half of the bubble).
    I will be very thankful for some hints.
    Thank you very much in advance.
    Johnny

    Go to any chart and look at the examples.  You can view the xml, there are bubble chart examples.
    AnyChart - Cross-Platform Flash Charting Solutions For Your Project

  • Bubble Chart with legend changes axis dimensions according to labels length

    I have a Bubble Chart with legend on the right. Data are by series and  the series are set  dynamically with a  drop down combo which replace the content of each series from time to time.  Every time the series changes, also the name of the series changes and the legend on the right  shows the new series names. The problem is that also the x axis dimension changes according to the new labels size, so the bubble chart changes its axis width in relation to the labels length in the legend. Is its possible to make somehow the bubble chart axis of a fixed lenght?
    Xcelsius 2008, SP4, Windows XP
    Thanks in advance

    Hi Matt,
    I just got a chance to try out your suggestions, and the
    chart that is right in the main application renders the labels
    fine, but the exact same code loaded in as a module doesn't. And it
    never does, not even if the scale changes. Do you know why that
    would be?
    Mukul

  • Labels in Bubble chart

    Hi,
    I need to display label for each bubble in a bubble chart.
    Can anybody please tell me how to do this.
    Thanks and Regards,
    SS.

    Hi,
    Please try setting the showAllDataTips property to true.
    Please find more details on this property at the URL below.
    http://livedocs.adobe.com/flex/3/langref/mx/charts/chartClasses/ChartBase.html#showAllData Tips
    Hope this helps.

  • Bubble chart in Xcelsius

    Hi,
    I am building a report which uses the below data
    Region______Verticals________calyear____Revenue
    APJ________Banking_________2007_____10
    EmEA______Insurance________2008_____20
    Central______Media___________CAGR____6.8
    I need to have 3 filters for Region, Verticals and calyear
    in the calyear filter I need to show only the values 2007 and 2008 but not CAGR
    on this data I need to build a bubble chart where it takes Revenue values in x axis CAGR in Y axis ,intially the default value for revenue should be 2007 on the chart and in the filter
    How do I need to arrange the data in excel for building this report
    Please help me out

    For the filter, you just need to exclude the row containing CAGR from the filter's source data.  However the data set you've provided is somewhat confusing since the value of CAGR under your "calyear" column does not actually represent a numerical year.  This might be an issue with the bubble chart since the bubble chart represents 3 dimensions that have to be numeric.
    Perhaps you can use a line chart and have CAGR as the Y axis label.  Make the plot series appear as bubbles and remove the connecting lines in the appearance settings.

  • Display name and value on label of vertical bar chart

    Hi,
    i have a vertical bar chart. On x-axis there are Countries: (Italy, Netherlands and so on), and on y-axies there are the values.
    When i mouse over a bar, on default is shown only the value. I want show a tooltip with the value and the name.
    For example, when i mouse over Netherlands bar, i want to display, NETHERLANDS , 92,45.
    I've modified bar.pcxml file adding following string:
    FormatString='%_YVALUE'
    I've restarted all processes, but now when i mouse over on bar i see a tooltip with %_YVALUE text.
    What's the correct syntax?
    Thanks
    Giancarlo

    I don't think its possible to use this '%_YVALUE' for Bar graphs. Please refer to table 1.1 in the below link for the supported values for FormatString for each graph type:
    [http://www.corda.com/docsource/doc4/popchart/docs/builder/creatin7.htm#447987]
    As you can see, '%_YVALUE' and '%_XVALUE' are supported for X-Y graphs only, which I guess are Scatter and Bubble charts. I tried using other ones like '%_GRAPH_TOTAL' for bar graphs which just works fine.
    Hope this helps!!
    Thanks

Maybe you are looking for