(Webdynpro Java)Business Graphics -  Speedometer Color settings

Hi All,
I want to implement Speedometer for a Webdynpro(Java) application which should show one value dial(Arrow) and one limit dial.  Limit dial Arrow should be in red color and the Speedometer area after the limit dial area should be in red.    I don't know how to configure this.  Can somebody help me.  
Thanks in advance.
Regards
Lakshmi
Edited by: lakshminarayanan  j on Sep 22, 2008 7:24 PM

When you right click on the graphics element and select edit, it should open the properties editor.
Where in you can set most of the properties.
I guess you can accomplish your task there.
If it doesn't satisfy your requirement, then there is a way of setting the xml file which is more tidious.
If option 1 doesn't work, lemme know, I'll tell you how to set the xml.
-Aarthi

Similar Messages

  • Business Graphics: Speedometer chart: Change Maximum value on runtime

    Hi Skilled,
    We faced a little problem in our project. We use Business Graphics component and Speedometer chart on the View and we should change maximum value of the graphics on runtime.
    I could easily change the maximum on design time in Chart Designer -> Axis -> Maximum Value, but I haven't found a way to change it on runtime.
    Are there any known ways to change the value on runtime?
    Best Regards, Dmitry

    Hi,
    by calling setDirectCustomizing you can provide customizing XML at runtime.
    Create your own customizing XML where you define the maximum value and call this method.
    You can also use the SAP Chart Designer from SDNs download area for creating the XML (just to get an idea how the XML has look like in your application).
    Regards, Kai

  • Business Graphics and Adobe Interactive Form

    Hi Friends,
    I generated charts in webdynpro using business graphics.
    Now, I need put this charts into a Adobe Form using Interactive Form Component. Is that possible? How can I do this?
    Thanks,
    Cristian

    Hi Cristian Teles,
    YOu can use the Business graphics even in Adobe forms. In the Adobe Designer you can find the various graphical UI elements. Please go through them.
    Structure of the Chart Designer
    The Chart Designer is divided into three areas:
    ·        The graphics preview
    The area on the left-hand side in which the business graphic is displayed. This area is used to display a preview of the Customizing settings. Changes to these settings are displayed immediately in the graphics preview, which lets you implement necessary changes in the business graphic display instantly.
    ·        Overview of graphical elements
    The area in the upper-right side that contains the list of graphical elements. For a detailed description and list of all graphical elements, see SAP NetWeaver ® Application Platform (SAP Web Application Server) ® ABAP Technology ® UI Technology ® Frontend Services.
    Each graphical element, in turn, has one or more properties. To change a property, select a chart element either from the chart window or by name in the chart element window. The properties of the chart element are then displayed, and you can edit and change the values of the properties.  
    ·        The property list
    The properties are listed in the area below the graphical elements. To change a property, select a graphical element either with the mouse in the graphics preview or from the overview of graphical elements. The properties of the graphical element are then displayed. You can change the values of these properties.
    http://help.sap.com/saphelp_nw70/helpdata/EN/0a/2f77b0cbb8914eb071b411991f6019/frameset.htm
    Thanks
    Suresh

  • Business Graphics(IGS) Application Killing memory

    How much memory should kill (In the Server)for a Webdynpro ABAP business graphics application(IGS).
    Someone developed one Business Graphics application and it is taking 130305127KB memory.Basis is saying for this Server is not behaving properly.
    I want to know do you have any idea regarding this

    http://help.sap.com/saphelp_nw70/helpdata/en/46/8cb295e6390e9ce10000000a155369/frameset.htm
    Armin

  • Image Color Settings Default

    Hi, I’m having a problem with color profiles. When importing images through bridge into one of my Indesign documents the Image color setting is defaulted to the color profile of my image that I am importing. When I start a new document the default setting is “Use Document Default”. You can access this setting by right clicking on an image box in Indesign and going to Graphics -> Image Color Settings.
    Why is the default import option for the color profile different for just that one document and how do I get it to always import with “Use Document Default”.
    This is causing problems when we send our file to press because we are using GCR on the images and not having “Use Document Default” set is separation problems.
    I’m running:
    Windows XP
    Creative Suite Cs3

    Actually now that I look at your problem a little closer, I think you need something different from what you're asking for.
    You are importing a CMYK image with a 340 TIL. You mention you need it to be Document CMYK, which is a different GCR CMYK from the image. In such case it is good that the image has the profile imported with it.
    Output using one of the PDF/X standards. Select "Convert to Destination" without the preserve numbers. Document CMYK.
    Native InDesign colors will not be converted. The LCP MaxK 340 will be converted to your Document CMYK.
    Bottom line: if the images need to be in the Document CMYK color space, and you want InDesign to get them there, they must undergo the conversion when you output the PDF.

  • Setting series color in the Business Graphics UI element

    Hi all,
    I'm using the Business Graphics UI element in my Web Dynpro application.
    I set the color for various properties using chart designer, then I add the generated XML in the doModifyView method: bg.setDirectCustomizing(xml file) and most of it works.
    However, when I change the series' color, I don't see any change in the xml file (see snapshot).
    http://img90.imageshack.us/my.php?image=graphjy1.jpg
    My xml starts with <SAPChartCustomizing> and ends with </SAPChartCustomizing>.
    How can I set the series' color using the custom xml file?
    Thanks,
    Omri

    Hi,
    as the connection between your data and the customizing settings works via IDs you have to make sure that you set exactly the same ID for a data series as defined in the chart designer.
    In case that you use point customizing make sure that you do not set an ID for the points of your series. Instead set the series customizing ID for the series only! Keep in mind that point customizing always overwrites series customizing if both are defined.
    Regards, Kai

  • How can i do different colors for the category in business graphics

    Hi everybody,
    i have a business graphics and i need different colors for the category. my business graphics is a gantt.
    for example
    category1
    category2
    category2
    and so on.
    Is there a solution for this? How can i do it?
    Best regards,
    Markus

    Sorry.
    In my opinion, this requirement can not be resolved.
    Generally, we use Business Graphic with Category, we just follow:
    DATA:lr_graph TYPE REF TO cl_wd_business_graphics.
    lr_graph = cl_wd_business_graphics=>new_business_graphics(
        bind_series_source = 'NODE_DYN'
        chart_type = cl_wd_business_graphics=>e_chart_type-BARS
        height = 340
        width = 750
    *     BIND_TOOLTIP = 'GRAPH.TT'
        id = 'GRAPH' ).
    DATA: lr_bgr_cs TYPE REF TO cl_wd_category.
    lr_bgr_cs = cl_wd_category=>new_category(
    view = wd_this->mr_view
    bind_description = 'NODE_DYN.CATEGORY').
    lr_graph->set_category( lr_bgr_cs ).
    If we go to SE24, to check  the class "CL_WD_CATEGORY", we cannot find any method  or attribute about how to manipulate  the "Category Font Color"...
    Maybe,any other expert can give you fantastic solution, hope. Best wishes.

  • Access "Business Intelligence Consumer Services (BICS)" over WebDynpro Java

    Dear all
    I have to access the SAP BI from WebDynpro Java.
    At the moment I do this over the BI-JAVA-SDK which has unfortunately no integration with the BEx-QueryDesigner.
    Therefore my question:
    1. Is it possible to access the SAP BI over the "Business Intelligence Consumer Services (BICS)"? And if yes, where can I find the corresponding documentation? (I have not found it by myself)
    2. What is your preferred way to get data from the SAP BI in WebDynpro Java?
    Greetings
    Rolf

    Hi
    Did you solve problem with number 1?
    Aleksander

  • Business Graphics for Java

    Hi,
    What are the java API supported for Business Graphics? I find a few on java but on [ABAP|http://help.sap.com/saphelp_nw04/helpdata/en/45/644c3e873e2f95e10000000a155369/content.htm] the support is richer.
    - Nikhil

    Hi,
    What do you mean by "java API supported for Business Graphics? "
    Web Dynpro for JAVA has following graphic UI elements:
    http://help.sap.com/saphelp_nw04/helpdata/en/9b/d9883672d57c73e10000009b38f889/frameset.htm
    regards,
    ganga

  • Business Graphics: Plot Area Coloring

    experts!
    How do business graphics customization works?  (2004s)
    requirement: A column graph and a parabolic graph should be shown in a single graph. The background for this graph should be colored to show a range, say acceptable values in green and others in red.
    thanks,
    nikhil

    Hi Nikhil,
    Check the following link on Chart Designer by SAP
    http://help.sap.com/saphelp_nw70/helpdata/EN/86/243f403f0a9354e10000000a155106/frameset.htm
    I hope this will be helpful to you

  • Business Graphics in WebDynpro - bundle chart and  data sheet

    Hi experts,
    I have a simple chart with stacked columns in a WD4A application.
    At the bottom of the chart I'd like to display the values of each column.
    I know that it works in ABAP reports (CL_CU_DATA_SHEET).
    Does anybody know how to do the same in a WebDynpro?
    Thanks in advance!
    Frank

    > Hi Frank ,
    > Yes It is possible in webDynpro ABAP now how
    >  ?
    > Please see Demo Component<b>
    > WDR_TEST_EVENTS</b>.In this see view starting with
    > BG*(Business Graphics ) .Run them see which will fit
    >  best to your problem and follow it .
    > Another thing you can see Business Chart
    > assocaited with ALV coloumn values . Please refer to
    > Package <b>SALV_WD_DEMO</b>and component
    > <b>salv_wd_demo_table_toolbr</b>.In Dropdown in ALV
    > you will find option like <b>Table and Graphics</b>.
    > See it .It show chart but below ALV .I m not sure do
    >  u need something like this only ?
    >         
    > Hope this will help you .
    >
    > Cheers
    > Parry          
    >       <b></b>
    Hi Parry,
    thank you very much for your answer!
    I cheked all examples in WDR_TEST_EVENTS but couldn't find any that fits.
    The class <a href="http://help.sap.com/saphelp_nw2004s/helpdata/de/70/8fa0375b5dd003e10000009b38f8cf/frameset.htm">cl_cu_data_sheet</a> does exactly what I need, but only with  SAP GUI.
    I still hope that it will be possible to do the same in a WebDynpro.
    Best regards
    Frank

  • Accessing Business Graphics using the WebDynpro API

    I would like to access Business Graphics created with IGS using the WebDynpro Business Graphics API.
    I have no problem displaying the graphic in WebDynpro UI, but i have no idea how to access the binary data of the graphic to work with it outside of WebDynpro UI (in fact i want to embed it into a PDF form).
    Is there any possibility to do this using the WebDynpro API?
    I would appreciate your help!
    Regards,
    Christoph

    Thanks, but this al clear to me. I am able to display business graphics on web without problem (I have dynamic Business Graphic in my WebDynpro User Interface).
    The Problem is, that i want to make further processing with the graphic. Therefore i need to access the binary data of the graphic.
    Do you know if there is any possibility to get the binary data of the bmp - image generated by IGS into a byte array?

  • How to color the mandatory fields in a Adobe WebDynpro Java form

    Hi Experts,
    How to color the mandatory fields in a Adobe WebDynpro Java form?
    This will avoid any confusion to he end user while filling the form as he would try to type something in field which is set as Read nlybut stil the cursor appears there.
    Regards,
    Shobhit

    Hi Shobhit,
    you can write something like xfa.host.setFocus(<text field name>). to set the focus or
    <text field name>.fillColor = "120,120,123";
    <text field name>.resolveNode"ui.#textEdit").border.edge.fill.color.value="120,150.200";
    to fill the color.
    Refer to adobe dev centger scripting samples to learn more on these.
    Hope these helps.
    Thanks and Regards,
    - anto.

  • Color Webdynpro Java with OCA to Mobile 7.1

    HI
    I am developing an application with Webdynpro Java Mobile 7.1 with OCA.
    Does anyone know if you can give color to the elements (dropdown, inputField .....)?
    Best Regards.
    Maria Elena

    Hi:
    I put in the file configuration.properties :
    stylesheet.inputfiled.backgroundcolor = #FF0000  and this working properly
    but for the elements  
               stylesheet.dropdownbyindex.backgroundcolor=\#FF0000 NOT WORKING properly
    Is there a way to just change the color to a concrete and not all of that kind?
    Any idea???
    Best regards
    Maria Elena

  • Problem with Business Graphic:

    Hi Everybody!
    I am working with a UI control Business Graphic in WebDynpro Java,
    I need to change the text of the legend, and is taking an automatic value, what is the property in the Chart Designer where I can adjust this?
    Thanks in advance for your help.
    Edited by: Briger Palacios on Jul 6, 2011 11:16 PM

    Hi Briger,
    For Changing ur own legend , just write the label property of "SimpleSeries" ,which comes under  your "BusinessGraphics" .
    As many simple series will be there, that much no of legend is require, so just write your label of each simple series.
    if any doubt , plz let me knw.
    Regards
    Brajesh Kumar

Maybe you are looking for

  • Rendering popup windows in JSF form on demand

    Hello, i have a form with a RichFaces menu bar at the top and several other UI components , eg. commandButtons. When a <rich:menuItem> or a <a4j:commandButton> component is clicked, a hidden modal popup window appears for user interaction. At the mom

  • IMovie won't show some of my clips in the full screen preview?

    So I spent a lot of time working on a music video I recorded in my iPhone, I put it all together and added effets and everthing. The small preview on iMovie 11 showd my whole movie the whole time, but when I went to play it on the full screen preview

  • Program got slow in select statment.

    Hi, I have written the following select statement: select name secu from trdir into table it_tab where name in s_name and subc eq '1'or subc eq 'I' or subc eq 'F' and udat in s_date. I just added this and subc eq '1'or subc eq 'I' or subc eq 'F' and

  • Tracking Discoverer report and the Users

    Hi Is there a standard process or a query which helps us to monitor the list of Discoverer reports running (or scheduled) and the users who are running it, Please let me know thanks for the time Regards Ramesh Kumar S

  • I had restored my ipod becuase i forgot  my password !!isoo im trying to back it up again how do i do that

    when i restored my ipod it deleted everythin i know it was suppose to do that but see im trying to back it up soo i can have my pictures and contacts well everything back ! how do i do that?