Chart Linear Axis's title(Description) is not displaying chinese words!

Recently on my project's end there is a need to translate the current english web portal to chinese web portal . In the middle of the transition , i found that i had a difficulty to replace the Linear Axis description with chinese words , the initial code i had use to declare the english version linear axis description  is shown as below:
<mx:verticalAxis>                                                
<mx:LinearAxis labelFunction="linearAxis_labelFunc" title="Population" displayName="Population">                   
</mx:LinearAxis>
</mx:verticalAxis>
Then i replace the chinese words into the title and displayname , and this should be a very straight foward change. Eventually when i compile and run , the chart's linear axis doesnt shows up any words at all .
for testing purpose , i had actually try to insert the chinese words in between the english words example:
<mx:verticalAxis>                                                
<mx:LinearAxis labelFunction="linearAxis_labelFunc" title="P(Chinese words here)opul(Chinese Words here)ation" displayName="P(Chinese Words here)opul(Chinese Words Here)ation">                  
</mx:LinearAxis>
</mx:verticalAxis>
Eventually the results only shows the description " Population ",
I had try to drag the chart to be way more larger to see if there is an alignment problem on the description, but still the chinese words is not appearing. So far i had no problem in inserting the chinese words into the panel title , label , and other table axis . I only have problem on the CHART'S LINEAR AXIS DESCRIPTION. it seems like the compiler is ignoring it !  i am currently using Adobe Flex Builder 3 Professional . Please Help me ! This is Urgent !

You might try embedding the font:
http://livedocs.adobe.com/flex/3/html/help.html?content=fonts_04.html
Are you using resource bundles to load the localized strings? Are your resource bundles UTF8 encoded?
If this post answers your question or helps, please mark it as such.
Greg Lafrance - Flex 2 and 3 ACE certified
www.ChikaraDev.com
Flex / AIR Development, Training, and Support Services

Similar Messages

  • Material Description is not displaying for few records in Report

    Dear Experts,
    Report Material Description is not displaying for few records in Bex Report but for records it is coming and even the heading of the material Description is also not coming for this report.
    Cud u plz suggest a good solution for it.
    Regards,
    Sai Phani.

    Hi Phani,
    For the text of the material in records, check if there is text maintained for that material in the master data. also try by changing the text to medium text and long text.
    regarding header, you will have same heading for key and text, you may use Materail ID / Description as the heading if you want.
    regards,
    Rk.

  • Entity Descriptions are not displayed correctly in Combo box dropdown list

    In Web Analysis, Entity Descriptions are not displayed correctly in Combo box dropdown list when entity descriptions from HFM contains a dot(.)
    Example:
    'Entity A. LTD' becomes 'LTD'
    'Entity B Inc.' becomes blank
    It seems that everything before the dot is not displayed when opening the combobox.
    It looks like it is acting like the option to show short description for entities in HR where the parent-child relation is not shown. This behaviour I don't expect for descriptions. And in my opinion is not an option in Web Analysis.
    Does anybody knows the sollution or have seen this issue before?

    Hi,
    This is a known issue with combo box list of values.
    Please follow this workaround:
    - Remove ComboboxLOV on Deptno
    - Create an updateable transient attribute(Say Dname) of type String
    - Define combobox lov with following values:
    List Data Source: DeptView1
    List Attribute: Dname
    List Return Values:
    Dname - Dname
    Deptno - Deptno
    UI Hints: Display Attribute - Dname
    - Edit Dname(transient attribute) and provide following groovy expression
    oracle.jbo.Key key = new oracle.jbo.Key(Deptno);
    return DeptView1.findByKey(key, 1)[0].getAttribute("Dname");- Now, you are done and observe that Dname combo box lov shows Description even on selection and change in this combo box sets the Deptno value
    Sireesha

  • In iPhoto (09) I can add a description to a photo which will display when running the slideshow, however when I sync the Album to my iPad and I run slideshow the description does not display, WHY?

    In iPhoto (09) I can add a description to a photo which will display when running the slideshow, however when I sync the Album to my iPad and I run slideshow the description does not display, WHY?

    I'd ask that on the iPad forum.

  • Netbeans Issue: Servlet do not display Chinese UTF-8 properly

    Netbeans Issue: Servlet do not display Chinese UTF-8 properly
    Java Version: JDK1.5.0_01, JRE1.5.0_01 (International version)
    Netbeans Version: Netbeans IDE 4.0
    OS: Windows XP Personal Edition
    Dear Sirs,
    First at all thanks for reading this post. I am having the following issue. I am creating an application using html pages and servlets. I am using Chinese and English languages on them (html encoding UTF-8).
    I created a project in Netbeans and added an idex.html screen reporting to a servlet. Both index.html and in the servlet generated html page contains the line:
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    Additional, I setup the character code settings in Netbeans:
    (tools-options-Java sources-Expert-default encoding=UTF-8
    When I run the project, index.html displays itself perfectly, with the Chinese characters displayed properly. The problem comes when the html created servlet is displayed, which instead of the Chinese characters some strange characters are displayed (�� instead of Chinese).
    I have tried different encodings from http://java.sun.com/j2se/1.4.2/docs/guide/intl/encoding.doc.html without any luck. I also setup the encoding of the file itself (using right click-properties in the project menu of Netbeans).
    Also, when I am editing the servlet, the characters are displayed properly. I type them directly without any issue, but then the display is wrong at runtime.
    Also, just in case this have something to do with the problem, my PC was bought in US, therefore the default character set is not Chinese. I had to install the Chinese typing stuff later on. But like I said earlier, the html page is displayed properly, so I really think is some problem with Netbeans.
    After a week trying to find a solution, I decided to post it here in the hopes that someone will show me the way of the light.
    Thanks in advance for any ideas or help provided
    Aral.

    Hi, thanks for your help. However I think the problem his more complex than it seems. Here is my doPost method (the important parts anyway):
    response.setCharacterEncoding("UTF-8"); //Not necessary because the next line should take care of it, but anyways...
    response.setContentType("text/html; charset=UTF-8; pageEncoding=UTF-8");
    PrintWriter out = response.getWriter();
    out.println("<html>");
    out.println("<head>");
    out.println("<meta http-equiv='Content-Language' content='en-us'>");
    out.println("<meta http-equiv='Content-Type' content='text/html; charset=utf-8; pageEncoding=utf-8'>"); //Again not necessary line, but anyways
    out.println("<title>Servlet</title>");
    out.println("</head>");
    out.println("<body>");
    out.println("this is a test &#20320;&#22909; this is a test");
    out.println("</body>");
    out.println("</html>");
    out.close();
    This servlet is called from a html file. Also, when I load this in the browser, I right click on the screen and I can see that UTF-8 is setup allright. Doing some detective job I found that:
    - If the editor displays the characters perfectly and...
    - Other html pages (no servlets) in the same application can display chinese characters well and...
    - I have configured the encoding as UTF-8 in the servlet properties and in general properties and...
    - The file "web.xml" contains the encoding UTF-8 in its first line then...
    ...my only guess is that something goes wrong during the building of the project itself (ant?). Unfortunately I have no idea about configuring ant to that level, but I began to think that the problem may be there, during the compilation...
    Any ideas?
    Once more, thanks for any help or advice provided.
    Aral.

  • Can not display Chinese on discoverer plus

    i have moved this thread to this forum from discoverer.
    Dear,
    ebs 12.0.6
    OS OUL5x64
    AS 10.1.2.3
    using bi 10.1.2.3 with discoverer
    Discoverer Version:Server 10.1.2.55.26
    when connect to the viewer like
    http:10.10.10.10:7778/viewer
    it could display the Chinese character correctly
    when connect
    http:10.10.10.10:7778/plus
    the Chinese became square boxes.
    Please advise how to fix this error.
    Regards,
    Tom

    Hi Huusein,
    i found these file in application tier, they were all upper case.
    ALBANWTJ.ttf
    -rw-rw-r-- 1 oracle oinstall 18777080 Dec 29 2006 ALBANWTK.ttf
    -rw-rw-r-- 1 oracle oinstall 18676032 Dec 29 2006 ALBANWTS.ttf
    -rw-rw-r-- 1 oracle oinstall 18788548 Dec 29 2006 ALBANWTT.ttf
    copied them over and restart the opmnctl stopall and then startall but the discoverer/plus could not display Chinese, i then renamed it to lower case according with doc # Doc ID:      340944.1
    and restart the opmnctl again but it still could not display Chinese in discoverer/plus
    these files (5) from the doc 340944.1 but my actual from appl Tier only has 4 files with all upper case.
    AlbanWTJ.ttf
    AlbanWTK.ttf
    AlbanWTS.ttf
    AlbanWTT.ttf
    ALBANYWT.ttf
    can you please give me some suggestions.
    Regards,
    Tom

  • Photo title and description does not display

    I have a site created in dreamweaver, I used photoshop to
    create a web photo gallery. The title and description although
    entered as file info and directly as html will not display when the
    gallery is loaded. Help please?? Is there a script problem? Here is
    a link
    http://www.clwhome.com/albums/gym2005_6/index.htm

    Actually the title and description do appear for a split
    second and the
    vanish.
    The information is there and can be seen if you look at the
    page outside the
    frameset.
    http://www.clwhome.com/albums/gym2005_6/pages/0226wolves04.htm
    Might be better asked in the PhotoShop Forum.

  • I can add  a description and it displays on a slideshow but when I sync it to the iPad the description does not display, Why?

    I can add a description to a photo by clicking o the "i" and it will dsiplay on a slideshow but when I sync the album to my iPad the description does not disply, why?

    I'd ask that on the iPad forum.

  • Using SharePoint 2013 OIP the "Title" column is not displayed

    Using the SharePoint 2013 OIP against our SharePoint 2013 environment, I am seeing that the "Title" column is never displayed in any of the activities or published data.  This is the only limitation that is preventing me from using this OIP.
     Currently using the scorch OIP and am concerned that it seems is not being actively maintained.  Which by the way shows the Title column in all the same lists I am connecting to with the Microsoft provided OIP.
    Thanks for any guidance you can provide,
    Jim

    Hi Jim, this is something I've seen before. It may be a bug in the SharePoint 2013 IP, though it does work in some cases and not in others, so difficult to say what the cause is. My recommendation is to change your list to make the default Title column optional
    and hidden, and use a new custom field for the name of the item instead. See also:
    http://sharepoint.stackexchange.com/questions/118181/how-to-remove-title-column-in-sharepoint-2013-list
    Noah Stahl | Automys |
    Downloadable Microsoft automation examples and solutions

  • 0GLACCEXT hierarchy nodes description ( text ) not displaying

    Hi Gurus,
    I have uploaded 0GLACCEXT hierarchy from ECC system in to BI 7.0. I can only see the hierarchy nodes in the RSH1 and in the reports as well for 0GLACCEXT.But I am not able to see the hierarchy nodes description like under Expenses > salaries , wages , housing etc .....only its GL accounts is displaying like 700100 , 700200
    I also uploaded Text datasource ( 0GL_ACCOUNT_TEXT ) for 0GLACCEXT , the text is loading without any problem but the changes are not being reflected in the RSH1 and the reports.
    Regards,
    -Neha

    Hi KP,
    Thanks for your reply , the text for 0GL_ACCOUNT is displaying fine , I don't have any issues with 0GL_ACCOUNT , my main concern is I'm using Financial Statement item 0GLACCEXT   for Balance Sheet and P&L Statement (for period accounting) by using Virtual Cube 0FIGL_VC1  the Text is not displaying in the reports as well as in RSH1 , where as for 0GL_ACCOUNT the hierarchies and text are working and displaying fine.
    I'm closing this thread , the problem has been solved
    it was related to mappings in Transfer rules.
    Regards,
    -Neha
    Edited by: Nehabibo on Dec 18, 2010 11:46 AM
    Edited by: Nehabibo on Dec 18, 2010 11:47 AM

  • ADF components do not display Chinese simplified (showing English instead)

    Dear All
    I am having a problem getting ADF components to display in Chinese simplified language. Buttons display in Chinese correctly however components such as: < af:table > (the previous and next values do not display in Chinese, again in English only).
    I have tried it under Japanese and these components show Japanese.
    Any ideas on what the problem may be caused by would be greatly appreciated.
    Best regards
    Andrew Och

    Actually I found the problem.
    It seems that the language resource bundle has the incorrect name. Renaming:
    oracle.adfinternal.view.faces.ui.laf.oracle.desktop.resource.BLAFBundle_zh_CN.java
    to
    oracle.adfinternal.view.faces.ui.laf.oracle.desktop.resource.BLAFBundle_zh.java
    resolved my problem.

  • Why the adobe reader can not show Chinese word

    Hi All,
    i am using WinXP SP2, CFMX7 version 7.0.1, MySQL and the
    latest version of report builder.
    i wish to do a report which can show chinese word and english
    word as well. However, the report can only show english and the
    report will replace '?' in every chinese character. Why and how to
    solve it?
    The CF can insert chinese charater into DB.

    [email protected] wrote:
    > Dear Paulh,
    >
    > no font can display chinese.
    > Where should i trun on identity-H? i dint see.
    preferences or simply press the F8 key.
    > when i enter chinese character into my DB, the cf able
    to catch and display on
    > the screen. BTW, if u insert chinese character within
    <cfoutput>#??#</output>
    > , an error msg will display. If u insert like this
    <cfoutput>??</output>, it
    > will display as '??'
    not following you.

  • Title tag does not display all characters

    Hello,
    I think my question is probably extremely easy, but because I am new, I have no idea..
    I bought a web template and so far all is fine.
    One thing, Each page has a header, body text that is all entered by an xml file.
    The header should be displayed by the title tag content. It looks like this...
    <title>Text Field 2</title>
    But when I look at my browser, some of the characters "Text Field 2" are missing and it displays "e Fed"
    please check this link to see what I mean...
    http://test.familycards.nl/
    Does anyone have any idea why some characters do not appear? I tried caps, numbers,.. they all react the same.
    thank you in advance...

    Thank you for your response and help!
    I did think of that.. Unfortunately the template did not come with .fla files, only a host of xml files. I did look for font info to see if perhaps there
    might be conflicts with fonts or missing fonts. but as far as I can interperate the coding, cant find anything.. I will now include some coding here.
    Perhaps it is helpful?
    This is the beginning of the xml page I am working on to add a header and body text...
    <?xml version="1.0" encoding="utf-8" ?>
    <data>
              <title>Text Page</title>
              <field>
                        <title>Text Field 1</title>    ............        (this is the title tag that I place my header text in. but when it shows in browsers as [e Fed]).. the T, x,i,d,l are all missing..
    <text><![CDATA[body text to come here.....
    This is the global options xml...
    <?xml version="1.0" encoding="utf-8" ?>
    <data>
              <global bg="images/bg1.jpg" logo="images/logo.png">
                        <title>Glance Photo Portfolio</title>
                        <slogan>Best photos</slogan>
                        <copyright>Copyright 2009. All Rights Reserved by BK Rascal Multimedia Productions</copyright>
              </global>
              <graphicslib theme="theme4.swf" />
              <playlist src="options/playlist.xml" />
              <menu startPage="homepage">
                        <item name="HOME PAGE" deeplink="homepage" type="page" content="txt1" location="options/text1.xml" visible="1" />
                        <item name="ABOUT US" deeplink="about" type="menu" content="" location="" visible="1">
                                  <item name="WHAT WE DO?" deeplink="whatwedo" type="page" content="txt2" location="options/text1.xml" visible="1" />
                                  <item name="EXHIBITION" deeplink="exhibition" type="page" content="txt2a" location="options/text1.xml" visible="1" />
                                  <item name="MY PUBLIC FORUM" deeplink="awards" type="page" content="txt1" location="options/text1.xml" visible="1" />
                                  <item name="FOURTH DROP" deeplink="awards" type="page" content="txt1" location="options/text2.xml" visible="1" />
                        </item>
                        <item name="NEWS" deeplink="news" type="page" content="news" location="options/news.xml" visible="1" />
                        <item name="GALLERY" deeplink="gallery" type="menu" content="" location="" visible="1">
                                  <item name="OBJECTS" deeplink="objects" type="page" content="gallery" location="options/gallery3.xml" visible="1" />
                                  <item name="PEOPLE" deeplink="people" type="page" content="gallery2" location="options/gallery2.xml" visible="1" />
                                  <item name="NATURE" deeplink="nature" type="page" content="gallery" location="options/gallery1.xml" visible="1" />
                        </item>
                        <item name="CONTACTS" deeplink="contact" type="menu" content="news" location="options/news.xml" visible="1">
                                  <item name="CONTACT PAGE 1" deeplink="contact1" type="page" content="cform" location="options/contact.xml" visible="1" />
                                  <item name="CONTACT PAGE 2" deeplink="contact2" type="page" content="cform2" location="options/contact.xml" visible="1" />
                        </item>
                        <item name="AURORAFlASH" deeplink="blog" type="link" content="" location="http://auroraflash.org/blog/" visible="1"/>
                        <item name="TEST TAB" deeplink="blog" type="link" content="" location="http://auroraflash.org/blog/" visible="1"/>
              </menu>
    </data
    Thats it...
    I hope this helps. (thanks again!!!)

  • IEAK10 Title Bar customisation not displayed

    Using IEAK10 to customise install for deployment through SCCM 2012. Not many customisation made since most will be done via GPO. Can see the Corporate Intranet page fine but cannot see the customised title bar i.e. "Internet Explorer Provided by xxxx"
    (this is on Windows 7 SP1 Enterprise image)
    Can clearly see the HKCU registry key for it Provided by.... but just don't see it displaying in the title bar - which is showing F11 etc. just blank no information in there
    Any ideas ?
    Ian Burnell, London (UK)

    Resolved - apparently GPO is applying over the IEAK hence no message - thanks
    Ian Burnell, London (UK)

  • Titles and gifs not displayed when re-opened

    I had a project that was edited in 2.0. When I open it up in CS3, all of the title clips and animated gifs are shown on the program monitor as offline (red media offline screen). In the Bin, the titles and gifs are shown online. I went through each clip: Reveal in Project; Replace with Clip from Bin. I was able to correct the 50 or so "Media Offline" clips. When I save the project and then reopen it, the titles and gifs are gone again. If I import the project with the missing clips to another project, the clips are OK. But then, when I close that new project and reopen it, the clips are "offline" again.
    This project was originally shot in HD (Sony FX-1) but the finished video is just on a regular DVD. The project settings I selected were DV-NTSC Widescreen 48Hz. The mpeg video clips are always there but not the titles that were created in 2.0 nor the animated gifs.
    Then I added an animated gif in CS3. It too goes "Media Offline" when the project is reopened. Again, the titles and gifs are shown online in the Bin and can be reloaded to the Timeline but go away when the project is reopened.
    I have another project that was shot in standard definition video and edited in 2.0. I selected DV-NTSC Standard 48Hz. It works fine in CS3. But, as I mentioned, the HD video clips are not missing, it's the titles and gifs that are missing.
    Windows XP Pro; 1 GB RAM; 400 GB Hard drive (two 200 GB RAID0)

    One change in Firefox 4 is to by default stop Firefox displaying the warning message, but it can be turned back on by changing some preferences.
    # Type '''about:config''' into the location bar and press enter
    # Accept the warning message that appears, you will be taken to a list of preferences
    # Locate the preference '''browser.tabs.warnOnClose''', if its value is set to '''false''', double-click on it to change its value to '''true'''
    # Repeat this for these 3 preferences '''browser.warnOnQuit''', '''browser.warnOnRestart''' and '''browser.showQuitWarning'''
    If you always open the last set of tabs, an alternative approach is this:
    # Click the orange Firefox button, then select options to open the options window
    # Go to the General panel
    # Change the setting "When Firefox starts" to "Show my windows and tabs from last time"

Maybe you are looking for