Scatter Plot - Field Label instead of Legend

I am using the scatter plot wizard to create a chart.
As it works currently, it plots all of the points on the graph as a unique shape/color, and has a legend with the field name for reference.
Is there anyway to place the field name next to the point on the graph?
I have seen quite a bit about Markup text such as:
<MarkerText visible="true"><Y1ViewFormat><ViewFormat decimalDigit="0" decimalSeparatorUsed="true" decimalDigitUsed="true"/></Y1ViewFormat></MarkerText>
Using that gives me the data points (e.g. there is a Triangle and then 5,10) , but I want to put the field name inside instead. (e.g. Triangle and then "Sales")
thanks

Parvatha,
Yeah. It does not matter what you have on the first row. You will only use the split criteria to split the data into fields in your table. So it does not matter what you have at the first row.
Thanks,
Vikram.M

Similar Messages

  • Field Label in ALV Header

    Hello
    Is there a way to use the field label in the header of a ALV grid?
    I am currently using a hard coded solution, and i know it's not good.
    form buildfieldcat .
      clear wa_fcat.
      refresh it_fcat.
      wa_fcat-col_pos = '1'.
      wa_fcat-tabname = 'KNA1'.
      wa_fcat-fieldname = 'KUNNR'. " I want to use the field label of this field in the header...
      wa_fcat-seltext_l = 'Customer Number'. " ...To not use this line.
      wa_fcat-outputlen = 15.
      wa_fcat-key = 'X'.
      wa_fcat-no_zero = 'X'.
    I hope my query was clear. Thanks a lot!

    Hi,
    If you want header columns from Dictionary field labels, instead of hardcoding, you can follow what fellow SDNs mentioned.
    Here is the solution.
    <li>define internal table like this.
    TYPES:
          BEGIN OF t_mard,
           werks TYPE mard-werks,
           lgort TYPE mard-lgort,
           matnr TYPE mard-matnr,
           insme TYPE mard-insme,
           einme TYPE mard-einme,
           speme TYPE mard-speme,
          END OF t_mard.
    DATA:
          w_mard TYPE t_mard.
    DATA:
          i_mard TYPE STANDARD TABLE OF t_mard.
    <li>Buidl fieldcatalog internal table like below . It works
      PERFORM build_fcat USING:
            "Field   Int Tab  ref field ref table
            'WERKS' 'I_MARD' 'WERKS'    'MARD',
            'LGORT' 'I_MARD' 'LGORT'    'MARD',
            'MATNR' 'I_MARD' 'MATNR'    'MARD',
            'INSME' 'I_MARD' 'INSME'    'MARD',
            'EINME' 'I_MARD' 'EINME'    'MARD',
            'SPEME' 'I_MARD' 'SPEME'    'MARD'.
    *&      Form  BUILD_FCAT
    FORM build_fcat  USING  l_field l_tab ref_field ref_tab.
      w_fieldcat-fieldname     = l_field.
      w_fieldcat-tabname       = l_tab.
      w_fieldcat-ref_fieldname = ref_field.
      w_fieldcat-ref_tabname   = ref_tab.
    *  w_fieldcat-seltext_m    = l_text.
      APPEND w_fieldcat TO i_fieldcat.
      CLEAR w_fieldcat.
    ENDFORM.                    " BUILD_FCAT
    <li> You can check program [here|http://hr-abap-freeeducation.blogspot.com/2008/04/alv-list-display_17.html]
    I hope that it solves your problem.
    Thanks
    Venkat.O

  • Modify label in a scatter plot

    Hello,
    I need help with a scatter plot ...
    I have 3 columns of datas (column A, B and C).
    I represent A on the X axis, B on the Y axis and C at the intersection.
    I display labels but I need to modify them to display C, near the point. Is it possible ?
    example :
    10     5     test1
    20     10     test2
    and I want
    X test2   
    |  X test1      
    |____________
    Thanks.

    Please re-post if this is still an issue or purchase a case and have a dedicated support engineer work with you directly:
    http://store.businessobjects.com/store/bobjamer/DisplayProductByTypePage&parentCategoryID=&categoryID=11522300?resid=-Z5tUwoHAiwAAA8@NLgAAAAS&rests=1254701640551

  • Label each point in scatter plot

    Hi There,
    I am plotting a set of data (in x,y format) on a scatter plot. Is there a way in labview such that when i move mouse over some dot it can tell me information about that dot (like the name of that set).
    Thanks in advance
    Yogesh 
    PS: i am using Labview 8.2 
    Solved!
    Go to Solution.

    The reason why it hangs is because you have 2 event structures inside a loop. You should only have one event structure in a loop. This is documented in the LabVIEW Help. With 2 event structures one of them will block the other.
    Your code is also about 3 times larger than it needs to be:
    To create the array of names for the dropdowns you only need to autoindex a for-loop from the 2D array of data and use the Format Into String function.  You don't actually need to use the values - you only need to autoindex the for-loop.
    Using Delete From Array and Reshape Array just to pull out a row is simply silly (not to mention a Rube Goldberg). That's what Index Array is for.
    In the Cursor Move event case you only need one function: Index Array. The point index is already available to you from the event case's data.
    Half of the code really belongs outside of the while loop since none of that data ever changes, so what's the point of regenerating it each time?
    Instead of using 2 Index Array functions just to get the list of names, wire a True to the Read From Spreadsheet File's transpose? input and use the first row output.
    I've attached a simplified version of your VI.
    Attachments:
    PCoption2_MOD.vi ‏34 KB

  • X and Y Data in scatter plot are different fields but can not be ??

    When making a scatter plot with numbers you can select the X data in the series bar (X Value) then click tick then select the  y data.
    If I do this the initially entered X data becomes the Y data, if you do it vice-versa, the latter entry of  y data becomes the X data.
    I called up apple support for this issue and after explaining the a technical supervisor in their numbers section what a scatter plot was they said they’d put the issue in my file.  Can someone fix this ……. ?
    You need to be able to enter a number of different X, Y series of data where X is one column or a portion of that column and Y is a an identical number of rows to each x value but in a different column. 
    If apple’s wondering why this program’s not professionally used they might what to actually use it before releasing it. 

    Rubin,
    OK, you're using OSX Mavericks 10.9, and Numbers 3.0.1. It would be a good idea to update your profile to show the proper operating system version.
    I think you are saying that you cant' add X-Y pairs to the chart as a new series. Apple has switched the default. Scatter Charts used to default to adding pairs of columns representing new X-Y pairs, but now it defaults to the mode called Share X-Axis values, so it thinks you are adding 2 new sets of Y-values sharing the first column of x-values.
    The switch for this is in the lower left corner of the Numbers window. This control used to be in the upper left of the chart range indicator in the source table, but they moved it. Click on the "Plot Columns as Series" button to reveal the menu. Then un-check Share X Values.
    Jerry

  • Scatter plot line width

    First off, I'm using the trial version of iWork '09. So I want to eventually put a chart into keynote to present to my colleagues, however, putting the chart up on a projector requires me to have a thicker plot line. So if I use a scatter plot, my axis' turn out great, but I cannot adjust the line's width. I don't want symbols, I just want a line connecting the points. If I use the line chart instead of the scatter, the x-axis displays "Untitled 1, Untitled 2" as the labels. I can't change them to the corresponding numbers which is annoying. I can change everything else fine: axis line width, font size, etc. Its just eh connecting line I'm having trouble with

    Actually, found a roundabout way to do this. Have to use line chart and in the x-axis label, you have to insert your formula for what cells you want such as Table 1 :: B212:B912 and just set the category counter to only include one label every so many counts. Kind of a pain, but works. However, can't have only the few tickmarks (should be 5 labels and corresponding 5 tickmarks in my case, but I have 5 labels and 700 tickmarks), all are shown instead. It tacks all of the labels individually, but you can choose which ones are shown, but cannot remove tickmarks... Any ideas?
    Message was edited by: chemgoof

  • 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

  • Scatter plot is broken and useless

    In all, numbers is quite nice, but the scatter plot seems to be a last minute panic addition. It is basically unusable.
    1. There is only one range field even though there are two axes. And the range field affects both axes at once(!) Very interesting when your x range is 0..1 and y -1000..1000 for instance. You can not have different number of steps on the different axes either.
    2. There doesn't seem to be any way to add lines between the points. Come on, how hard could that be?
    3. This one requires no words: http://www.csc.kth.se/~ol/numbers.png (hint, look closely at the x axis)

    Actually, with #1 you can set the 2 axes limits etc separately, Apple just didn't make the way it works very clear. If you want to change the X limits only you have to click the text field containing the X axis labels just below the axis. After that, if you edit the limits in the inspector you'll only change the X. Same goes for changing Y. If you have the whole figure selected it changes both. Not a very clear way to design it, but it does let you do it...
    Now as for 2 and 3..... not good. Numbers definitely needed more time in the oven.
    To scatter plot gripes I'd also add:
    4) Scatter plots require paired columns of X and Y but several sets of Y values can't share one column of X data in numbers. If several sets of Y values share one set of X values you still have to copy the X column to pair it with each Y column which bloats your spreadsheets with a lot of redundant data.
    5) Plots including date/time values on the X axis don't work properly. It just seems to treat all time values as 0.
    6) No ability to do regression lines on a scatter plot.
    7) Scatter plots can only work with data organized into columns, they don't work for data in rows.
    Message was edited by: DocScuba

  • XY Scatter Plot Problems

    XY scatter plots that were successful previously now are in error.  They now appear as "column type" charts with the horizontal axis simply the index of the data point (that is, 1, 2, 3, ...).  This problem has appeared after the recent
    update of MS Office 2013.  Please help quickly!

    Hi,
    Plese try to change the chart type.  Click the chart->Design Tab->Change Chart Type->choose
    X Y Scatter.
    Also when right click the chart->Select Data, what does the labels of
    Legend and Horizontal look like?
    If possible, please share the workbook with us ,you can upload the file to a file sharing site and then share the link here.
    Wind Zhang
    TechNet Community Support

  • How do I do a scatter plot?  Plus, blank chart isn't blank!

    Something strange is going on with my Numbers app...
    But, before I get to that, I'm seeking confirmation on how to create a scatter plot.
    I have data arranged as such:
    Year     Rate
    January 2009     7.8
    February 2009     8.3
    March 2009     8.7
    April 2009     8.9
    etc.
    (formatting looks weird, but it's two columns)
    1.  Don't I simply select the variable names and the data, and then tap the + sign and scroll down for the scatter plot?  (Skipping the line chart icon, but tapping the one below that.)
    Alas, every time I do that I end up with two series of data, with a legend at the top that labels the two series as 2009 and 2011!!  In other words, not a scatter plot and not the right variable names (there shouldn't be a series legend in any case).
    I've tried just selecting the variables and data, skipping the variable names, but get the same result.
    2.  Now, here's where things get weird.  I de-selected the data and then tried creating a blank chart, to which I would add data.  That did not create a blank chart, but a virtually identical chart to the one before.
    I'm now wondering if somehow something's gotten corrupted or I inadvertently set a default chart that Numbers isn't overriding.
    Any and all suggestions welcome!
    3.  Oh, and by the way, is there any way of turning off the "Tap the chart to add data" message that appears each time and overlays the chart?  It's a nuisance! 

    Ok I got it to work. What I did was replace the bundle function of the waveforms with a build array function. This broke my clear history property node but I fixed that by creating a new control. Now I'm going to try it again from scratch to figure out what happened
    Using LabVIEW 2010SP1 and TestStand 4.5

  • Order value fields by field label in the profitability analysis document

    Hello,
    I am displaying a profitability analysis document and I want to order the value fields by their technical name (VV001, VV002, VV003...) instead of in alphabetical order (the system orders them by the field label).
    Is it possible?
    Thank you very much
    Bea

    Hello,
    Check in KE4M whether sd condition type FKLMG  is mapped corresponding value field in COPA.As you are getting the value for other company codes, this setting should be there.
    You can also try checking simulation of billing document transfer through KE4ST. Check the details analysis
    thanks
    Hari

  • SSRS Hide one data value label in chart legend

    Is it possible  to hide one value in the legend? I've got a stacked bar chart, but there's one value that I don't want to display in the Legend. Is it possible to hide this particular color and label in the legend?
    Thanks,
    Chris

    Hi Chris,
    Yes. In Reporting Services 2005, you could add a filter to hide one value label in the chart legend. This can be done with the following instructions:
    In Report Designer, open the chart properties dialog box and go to Data tab.
    Double click the item in the Series groups to open the Grouping and Sorting Properties dialog box.
    Switch to the Filter tab. Add a filter using the following setting:
    Expression: =Fields!<FieldName>.value
    Operaiton: !=
    Value: =”value”
    If you have any further questions, please let me know.
    Thanks.
    ***Xiao Min Tan***Microsoft Online Community***

  • Trendline in Scatter plot

    Hi,
    I have a couple question on Power View 2010
    1. I want to know if I can plot regression Trendlines(Linear/polynomial/power) on scatter plot?
    2. Navigation between pages- Is it possible to navigate between report pages in Power View 2010 by passing parameters from the first page to the next page?
    3. I have a report that has 3 pages. I want to create 2 pages in SSRS 2012 and one in Power View 2010. Is it possible to navigate between these applications and also pass parameters in the URL?
    Thanks in advance.
    Ankit

    The reason why it hangs is because you have 2 event structures inside a loop. You should only have one event structure in a loop. This is documented in the LabVIEW Help. With 2 event structures one of them will block the other.
    Your code is also about 3 times larger than it needs to be:
    To create the array of names for the dropdowns you only need to autoindex a for-loop from the 2D array of data and use the Format Into String function.  You don't actually need to use the values - you only need to autoindex the for-loop.
    Using Delete From Array and Reshape Array just to pull out a row is simply silly (not to mention a Rube Goldberg). That's what Index Array is for.
    In the Cursor Move event case you only need one function: Index Array. The point index is already available to you from the event case's data.
    Half of the code really belongs outside of the while loop since none of that data ever changes, so what's the point of regenerating it each time?
    Instead of using 2 Index Array functions just to get the list of names, wire a True to the Read From Spreadsheet File's transpose? input and use the first row output.
    I've attached a simplified version of your VI.
    Attachments:
    PCoption2_MOD.vi ‏34 KB

  • Plotting Data Incorrectly in a Scatter Plot

    I am trying to plot a graph using a scatter plot in Numbers, and all of the data points are correct except for one. If you look at the data, you can see that the point that is at .00360 on the y axis(the highest point on the graph) is supposed to have an x value of .001 but instead it is too far to the right (closer to .1). This is throwing off my graph and I really need to get this fixed. Below are the links to the data table and the graph. Thanks for any help!
    http://img686.imageshack.us/img686/7/picture3wc.png
    http://img20.imageshack.us/img20/2035/picture4pe.png

    Hi Tom,
    I tried recreating your table and chart, typing in the numbers rather than having any of them calculated, and manually assigning min and max values to both axes to match yours.
    The chart came out with all data points where expected.
    I did notice another difference in the curve though—where yours shows three data points forming a concave-toward-the-origin section (at the leftmost portion that is correctly plotted), mine shows four data points. That led me to count the points and find that there is one point—(0.139,0.00309)—missing from your chart.
    While I don't see from doing this what may be wrong with your chart, it did bring a workaround to mind that should get you a useable chart before your deadline.
    Insert a new (plain) table into your document and resize it to the minimum needed to hold the two columns of data.
    Select the cells containing the X axis data and Copy.
    Click on cell A1 of the new table and go Edit > Paste Values.
    Repeat for the Y axis data, placing it in column B of the new table.
    Select the data block in the new table then insert a scatter chart.
    If you still get the error, manually edit the data in the cells causing the error.
    That should get you through the short term. I think someone may have to look at the actual file to solve the underlying problem.
    Regards,
    Barry

  • Scatter plot with dates

    The one reason i use scatter plots is to make the X axis my dates. so i see the duration between data points as real distance horizontally. I cannot for the life of me figure out how to do this on the ipad. It seems to not have a way of tweaking the data source so that I can tell it that column B (dates) is my x axis, and column C (lets say remaining data MB's, lets use something everyone on a 250 plan can associate with) is my actual data point to plot.
    Anyone figure out this one yet?
    Thanks,
    Jason

    ok, i was able to 'kinda' get it to work (not the labelling, but the scatter plot). It seems you have to select the date column first when selecting data, then drag over to the columns of plotted data and it -might- recognize the dates as the x axis. it took me a good 5 minutes playing to get it to go right.
    I also had to check the "Share X values" option under the gear button.
    as for the labels, it has a "Number format" and a "Same as source", but if you select same as source, it doesn't give you any choices but plain number for formatting. Same as source doesn't work at all right now for dates.
    We both need to submit tickets with apple.com\feedback to let them know. I noticed other little fixes that were not documented in the 1.1 update that people had been submitting tickets on the past few weeks.
    Thanks,
    Jason
    Jason

Maybe you are looking for