Chart objects truncate label text

I am creating image charts in the portal. However, I find that the series column that I base the chart on has its text truncated. The level that it does this varies on the chart type and the number of rows returned by the series.
On a pie chart, for example with 9 segments, the truncation on the legend is so bad that you cannot read the text labels. This makes the charts totally unusable for production use!
Increasing the portlet width, increases the portlet window area, but the chart component remains the same size!
Is there a workaround for this, short of implementing Reports/Discoverer etc.?
Regards,
John
null

I know this is not the answer to your question but image charts were a beta feature in 309 and are no longer being supported in 902. Basically you will not be seeing your image charts once you upgrade. so please think twice before investing effort in Image charts.
You can leverage on BI beans which is shipped with Oracle9i Application Server for your graphical charting needs.

Similar Messages

  • How can i  change the column label text in a alv table display

    how can i change the column label text in a alv table display??
    A similar kinda of question was posted previuosly where the requirement was the label text was needed and following below code was given as solution :
    <i>*  declare column, settings, header object
    DATA: lr_column TYPE REF TO cl_salv_wd_column.
    DATA: lr_column_settings TYPE REF TO if_salv_wd_column_settings.
    DATA: lr_column_header type ref to CL_SALV_WD_COLUMN_HEADER.
    get column by specifying column name.
    lr_column = lr_column_settings->get_column( 'COLUMN_NAME1' ).
    set Header Text as null
    lr_column_header = lr_column->get_header( ).
    lr_column_header->set_text( ' ' ).</i>
    My specific requirement is i have an input field on the screen and i want reflect that value as the column label for one of the column in the alv table. I have used he above code with slight modification in the MODIFYVIEW method of the view since it is a process after input. The component gets activated without any errors but while run time i get an error stating
    <i>"The following error text was processed in the system CDV : Access via 'NULL' object reference not possible."</i>
    i have checked in debugging and the error occured at the statement :
    <i>lr_column = lr_column_settings->get_column( 'CURRENT_YEAR' ).</i>Please can you provide me an alternative for my requirement or correct me if i have done it wrong.
    Thanks,
    Suri

    I found it myself how to do it. The error says that it is not able to find the reference object i.e  it is asking us to refer to the table. The following piece of code will solve this problem. Have to implement this in WDDOMODIFYVIEW method of the view. This thing works comrades enjoy...
      DATA : lr_cmp_usage TYPE REF TO if_wd_component_usage,
             lr_if_controller  TYPE REF TO iwci_salv_wd_table,
             lr_cmdl   TYPE REF TO cl_salv_wd_config_table,
             lr_col    TYPE REF TO cl_salv_wd_column.
      DATA : node_year  TYPE REF TO if_wd_context_node,
             elem_year  TYPE REF TO if_wd_context_element,
             stru_year  TYPE if_alv_layout=>element_importing,
             item_year  LIKE stru_year-i_current_year,
             lf_string    TYPE char(x),
      DATA: lr_column TYPE REF TO cl_salv_wd_column.
      DATA: lr_column_header TYPE REF TO cl_salv_wd_column_header.
      DATA: lr_column_settings TYPE REF TO if_salv_wd_column_settings.
    Get the entered value from the input field of the screen
    node_year  = wd_context->get_child_node( name = 'IMPORTING_NODE' ).
    elem_year  = node_year->get_element( ).
      elem_year->get_attribute(
       EXPORTING
        name = 'IMPORT_NODE-PARAMETER'
       IMPORTING
        value = L_IMPORT_PARAM ).
      WRITE L_IMPORT_PARAM TO lf_string.
    Get the reference of the table
      lr_cmp_usage  =  wd_this->wd_cpuse_alv( ).
      IF lr_cmp_usage->has_active_component( ) IS INITIAL.
        lr_cmp_usage->create_component( ).
      ENDIF.
      lr_if_controller  = wd_this->wd_cpifc_alv( ).
      lr_column_settings = lr_if_controller->get_model( ).
    get column by specifying column name.
      IF lr_column_settings IS BOUND.
        lr_column = lr_column_settings->get_column( 'COLUMN_NAME').
    set Header Text as null
        lr_column_header = lr_column->get_header( ).
        lr_column_header->set_text( lf_string ).
    endif.

  • Make FormItem label text word wrap?

    I am building a form, but my labels are fairly long
    sentences. Is there a way to make the FormItem labels wrap? I tried
    defining the labelWidth, but it just truncates the text with "..."
    If there is no way to add a break in the label or make it
    wrap, what is the best way to do this? With a bunch of
    HBox's?

    That's not entirely true. If you use the mx_internal
    namespace you can modify the Label's internal UITextField and
    enable wrapping. Something like:
    formItem.itemLabel.mx_internal::getTextField().wordWrap =
    true;

  • Is it possible to implement a truncation of text (a "more/less") function for paragraphs in PDFs?

    I work at a center for public service and we're trying to make our service handbook more user friendly. However, we're not experts when it comes to using Adobe Acrobat X Pro.
    Instead of having to scroll through the many pages of the handbook, we would like to implement a "more/less" function or a truncation of text. Are we able to do this for a PDF?
    It looks something similar to this: http://henrik.nyh.se/examples/truncator/[1]
    At this point however, we're not sure if it's even possible to implement this function into a PDF. Is it possible or are we just wasting our time trying to find a way to do it?
    Thanks for any advice you can give!

    Not really an option for PDFs. You can have stuff on layers that appears or disappears, but unlike web pages the page layout is fixed: everything stays where it is on a page. For more/less to work nicely you need a format where stuff can move down/up to make room or close gaps.

  • How to change a labels text which created at runtime?

    hi,
    i am creating label controls in runtime dynamically and adding them to a group component. this group component is in another custom component and i have lots of custom comp. in my app.
    my question is how can access (via id) and change a labels text whict created at runtime?
    i can change like this but i am setting id's and want to reach via id.
    var lbl:mx.controls.Label = mx.controls.Label(subMenu5.group_subMenu5.getElementAt(1));
    lbl.text = "good job";
    thank you, have a good day.

    First off, if you are already using a Spark Group, I would suggest you use a Spark Label instead of an MX Label. If you want to reference the Labels from the group, loop through the group's elements and check the if the element id matches the Label you want to assign text to.
    var lbl:Label;
    var n:int = myGroup.numElements;
    for (var i:int = 0; i < n; i++)
         lbl = myGroup.getElementAt(i) as Label;
         if (lbl && lbl.id == "myLabel")
              lbl.text = "newText";

  • Authorisation object for "PO text in the material master"

    Hi,
    My requirement is as below:
    "All users can see the Purchase Order Text as usual, but only a few users should be allowed to create / change the PO Long Text.
    For other users, the same should appear in display mode only (both in creation & in change mode, MM01 & MM02)."
    Please let me know, How to map this.
    As per my knowledge thsi is possible only thru authorisation. But I want to know what is the authorisation object for "PO text in the material master" (Pl note that only for PO text in the material master field). we want control on "PO text of material master"
    Regards.
    Chinna

    Hi,
    The authorisation object is "M_MATE_MAT", pl check
    Regards
    Merwyn

  • How to create label & text items in a page dynamicly(TOP URGENT)

    Dear all;
    did any1 tried before to create a PLSQL which can create labels or text items?!! i have a page which i want to create labels according to the count of rows in the Database table?
    Regards;

    I would first try creating an 'On Load - Before Header' PL/SQL Computation to count the rows, and store the result in a hidden page/application item, e.g. P120_ROW_COUNT.
    Then in the label of the item, put &P120_ROW_COUNT. as the Label Text.
    I haven't tested it - but it should work.

  • Is it possible to select an anchored object in a text frame in InDesign in a script?

    I would like to know if it is possible to write a script to select an anchored object in a text frame. All the scripts I have found so far do not work on anchored object.

    Check out this thread.

  • How to change the field label text in standard WD application

    Hello All,
    I have a requirement to change the filed label text in standard WebDynpro  application.
    Application Name: /SAPSRM/WDC_UI_DO_BIDDER
    View: V_DO_BIDDER_SEARCH_C
    I want to change the label text from "Last Name" to "Vendor Name".
    Can anyone please provide me the possible options to change label text?
    Thanks in Advance.
    Regards,
    Shyam

    Thread closed...Found the solution ... 

  • Pie chart problem with label!

    Hello,
    I found this example of pie chart, I tried to use several pie charts but the label square move in some chart. It shows the square moved down when it uses the vi.
    I attached the example with 4 pie charts and sometimes it show the 4 sqaures and sometimes down one. Any way to fit it?.
    I would like to see some example with 3d pie chart. Do you know any example?.
    Thanks in advance!.
    Fred
    Solved!
    Go to Solution.
    Attachments:
    Pie Charts.vi ‏25 KB
    PieCreateChart.vi ‏13 KB

    Sorry guys!. i got it.
    Changing the first time call to comparison of For Loop = 0, so always start with the value fixed to draw the square.
    Thanks.

  • How do i set text in a object so that object expands with text and has even space on both sides of the object in illustrator cc?

    how do i set text in a object so that object expands with text and has even space on both sides of the object in illustrator cc?

    if you see all the different panel. I past the info in and have to manually expand the width of every panel. Is there a way of pasting the text in and the panel moves to the right with so that there is an even space on both sides of the blue panel?

  • Can't change the label text for the first time of  loading

    I have some problem to change the label text in the prerender method.
    I put a label on the form and set the text value to "Customer" on the text properities , and I would like to change the lable text to "Supplier" in the prerender method, I found some strange behaviour.
    If I type nothing on the label text of the properties , I can change the lable text on the prerender method on the first time of the form load .
    If I put something on the label text of the properties , the text label can't be changed on the first time of form loaded, the lable can be changed if I refresh the form or reload the form.
    Could anyone help me to solve this kinds of problem ?
    Thanks

    This is a tough one to explain. Here is one explanation from the Delving Into Components tutorial:
    As with the JavaServer Pages implementation, when the server constructs a page from JSP source, the tag attribute settings in the JSP source take precedence over runtime settings. For example, if you set the text property for a Static Text component to "moon," the IDE adds text="moon" to the Static Text component's tag in the JSP file. Even if the page's prerender method has a staticText1.setText("sun") statement, the Static Text component shows "moon" when the application renders the page. If the page is rerendered, the staticText1.setText("sun") statement takes affect and the Static Text component shows "sun." If you visit another page and come back, the server once again constructs the page from the JSP source, the values set in the JSP tag attributes take precedence, and the page displays "moon."

  • Win 7 IE 11 ToolTips are not displayed on Charting object

    In Win 7 IE 11 the DataVisulation Charting object does not display tooltips on hover.
    This functions properly in WinXP IE8, Win 8.1 IE 11,  Firefox, and Chrome. I've seen similar issues reported, but have not seen a resolution.
    Has anyone out there encountered this issue?
    Thanks,
    Carl

    I am running into the exact same issue. It does not matter if the tool tip is called in code behind or withing the series tag itself. Win7 running IE11 does not show the tool tip on hover/mouse-over. Tested on multiple systems with the same results.
    This can be reproduced using the "Samples Environment for Microsoft Chart Controls".
    Running Microsoft Visual Web Developer 2010 open the project and run in browser to launch the development server. Go to any sample that uses the "tooltip".
    Windows 8.1 or Server 2008 R2 both show the tool tips in IE11. Only seems to affect Win7 running IE11. Safari, Chrome and Firefox all display the tool tip without issue running on the same Win7 system.
    I also tested on two actual server platforms. 2003 R2 fully updates to get the latest .Net browser definitions and on a 2008 R2 server fully updates with .NET 4.5. The results are the same. Win7 running IE11 does not show the tool tips on a simple bar chart.
    Is there a solutions for this or workaround?
    Thanks
    Chuck

  • How to show mandatory icon after the Label text?

    Hi ,
    I am using JDeveloper 11.1.1.4.
    My Scenario is I have  <af:inputtext>  with Property required="true".
    Label look like ,
    "*Name but I want to show like Name* .I want to show the * icon after the label text .
    How to achieve this in ADF ? ..
    Thanks ...

    Hi rfh,
    Thanks for the updates ,
    I tried with ,
    .AFRequiredIconStyle
      float:right;
    this CSS moving the * icon to right side but not after the label ,It's moveing infront of the InputText Value the output looks like,
    Label   *Value
    I tried with ,
    AFRequiredIcon:alias
        content:inhibit;
    It's diabled * icon entire application .This solution is ok ...But I want to diable * icon for only particular places.
    How to hide * icon for particular fields ? ......
    Thanks......

  • Auto Truncat of text in table row.

    Is there any way to truncate the text displayed in the table row. I need to auto truncate the text in case text does not fit in the row with current column height.

    Hi Kevin,
    I am also facing the same situation. I want to display teh text with truncated to 30 characters only. I identified the outputTexta nd added the truncateAt attribute and set it to 30. but it doesn't seem to work. Moreover the line - truncateAt="30" is underlined with orange squiggly lines indicating that there is some error and when I mouse over it , it says that this attribute is not supported when the component is inside of a hierarchyViewer component.
    Any pointers?
    Thanks,
    Dhirendra

Maybe you are looking for

  • I no longer have App Store on my iPhone 5 - where do I go to download it?

    I no longer have the App Store on my iPhone 5 - where do I go to download it? Help!!!

  • How to install airport in MacBook Pro

    I bought a MBP and Airport Extreme about ten days ago. The Apple store said I needed an Airport Extreme card so I got that, too. The manuals say to install the card according to the directions that came with the computer, however, there were no instr

  • Accessing Party identifiers using value mapping

    Hello Does anyone know if it is possible to access identifiers defined under a party using a value mapping (in my case from an xslt mapping calling a java function, but it doesn't really matter I guess). For party ADVDENV_US I have the following iden

  • Web service problem (Timeout)

    hello i hope this is the right category to post my problem i want to use the service "customerCRMChangeRequestConfirmation_In" but i get this error message: "Error getting response; java.net SocketTimeoutException: Read timed out. on my search to fix

  • N97 - Maps 3.04 - difficult to create a multi-poin...

    On the face of it, the fact that Maps 3.04 can allow a multi-point, ordered route to be created is a good thing. However, I find building such routes to be difficult, particularly where they involve a mix of places stored as Favourites and places fro