BSP Graphics Extension (MTA)

Dear All,
I am trying to generate an MTA using BSP graphics extension. I have managed to get the structure of the graphic:
<Defaults>
<ChartType>MTA</ChartType>
<FontFamily>Arial</FontFamily>
</Defaults>
However, I am having trouble placing the values or points on the chart.
As far as I understand, I can use "Series" to generate points on bar charts or line charts,
   <SimpleChartData>
        <Categories>
          <C>Category 1</C>
          <C>Category 2</C>
          <C>Category 3</C>
          <C>Category 4</C>
          <C>Category 5</C>
        </Categories>
        <Series>
          <S label="17.55%">17.55</S>
          <S label="17.10%">17.10</S>
          <S label="8.70%">8.7</S>
          <S label="8.25%">8.25</S>
          <S label="6.87%">6.87</S>
        </Series>
      </SimpleChartData>
but this won't work for the MTA.
I have defined the timeaxis
<TimeAxis id="TimeAxis1">
   <Visibility>true</Visibility>
   <Extension></Extension>
   <Minimum>20060101</Minimum>
   <MinimumAutomatic>true</MinimumAutomatic>
   <Maximum>20080101</Maximum>
   <MaximumAutomatic>true</MaximumAutomatic>
   <Position>Secondary</Position>
</TimeAxis>
<TimeAxis id="TimeAxis2">
   <Visibility>true</Visibility>
   <Extension></Extension>
   <Minimum>20000101</Minimum>
   <MinimumAutomatic>true</MinimumAutomatic>
   <Maximum>20080101</Maximum>
   <MaximumAutomatic>true</MaximumAutomatic>
   <Position>Primary</Position>
</TimeAxis>
so my guess is it should go something like
   <SimpleChartData>
        <Categories>
          <C>Category 1</C>
          <C>Category 2</C>
          <C>Category 3</C>
          <C>Category 4</C>
          <C>Category 5</C>
        </Categories>
        <Series>
          <S label="20050101">20050101</S>
          <S label="20050601">20050601</S>
          <S label="20050601">20050601</S>
          <S label="20050701">20050701</S>
          <S label="20050701">20050701</S>
        </Series>
      </SimpleChartData>
This won't work.
I have looked all over the web, but there seems to be little to no documentation to the BSP graphics extension, and especially to time axis. I have also found a lot of examples of normal charts with time axis, but none which show a simple defition of fixed values.
The chart is merely for show-case use, therefore using fixed values is no problem.
If anyone has an idea as to what might work, please help
Thanks
Svenja

i have used a model class.
data: model type ref to ZCL_GRAPH_CPH_MODEL . " this class implements IF_GRAPH_DATA_MODEL interface
  create object model.
<graphics:chart width               = "400"
                          height              = "300"
                          igs_rfc_destination = "IGS_RFC_DEST" >
            <graphics:data model="<%= model %>" />
            <graphics:custom>
              <graphics:nativexml>
                <?xml version="1.0" encoding="utf-8"?>
                <SAPChartCustomizing version="1.1">
                 <GlobalSettings>
in the method (IF_GRAPH_DATA_MODEL~GET_DATA_XML) i populate the values like this.
  TYPES: BEGIN OF t_point_data,
             tooltip TYPE string,
             value TYPE string,
           END OF t_point_data.
  TYPES: t_point_data_tab TYPE STANDARD TABLE OF t_point_data.
  DATA: BEGIN OF t_series_data,
          tooltip TYPE string,
          label TYPE string,
          point_data TYPE t_point_data_tab,
        END OF t_series_data.
  DATA: l_ixml                                 TYPE REF TO if_ixml,
        l_ixml_sf                              TYPE REF TO if_ixml_stream_factory,
        l_istream                              TYPE REF TO if_ixml_istream,
        l_ostream                              TYPE REF TO if_ixml_ostream,
        l_document                             TYPE REF TO if_ixml_document,
        l_parser                               TYPE REF TO if_ixml_parser,
        l_root_element                         TYPE REF TO if_ixml_element,
        l_categories_element                   TYPE REF TO if_ixml_element,
        l_series_1_element                     TYPE REF TO if_ixml_element,
        l_series_2_element                     TYPE REF TO if_ixml_element,
        l_c_element                            TYPE REF TO if_ixml_element,
        l_s_element                            TYPE REF TO if_ixml_element,
        l_series_1_data                        LIKE t_series_data,
        l_series_2_data                        LIKE t_series_data,
        l_point_data                           TYPE t_point_data,
        l_category_name                        TYPE string,
        l_category_data_tab                    TYPE STANDARD TABLE OF string,
        l_tooltip                              TYPE string,
        l_apostrophe                           TYPE string VALUE  ''''.
* fill category data <outtab> is an itab holding the values to be passed to graph
  LOOP AT <outtab> ASSIGNING <l_line> .
    ASSIGN COMPONENT 1 OF STRUCTURE <l_line> TO <l_field> .
    APPEND <l_field> TO l_category_data_tab.
  ENDLOOP .
* fill data for series 1
  LOOP AT <outtab> ASSIGNING <l_line> .
    ASSIGN COMPONENT 2 OF STRUCTURE <l_line> TO <l_field> .
    l_series_1_data-tooltip = 'Actual'.
    l_series_1_data-label = 'Actual'.
    l_point_data-tooltip = <l_field> .
    l_point_data-value = <l_field> .
    APPEND l_point_data TO l_series_1_data-point_data.
  ENDLOOP .
* fill data for series 2
  LOOP AT <outtab> ASSIGNING <l_line> .
    ASSIGN COMPONENT 3 OF STRUCTURE <l_line> TO <l_field> .
    l_series_2_data-tooltip = 'Plan'.
    l_series_2_data-label = 'Plan'.
    l_point_data-tooltip = <l_field> .
    l_point_data-value = <l_field>.
    APPEND l_point_data TO l_series_2_data-point_data.
  ENDLOOP .
  l_ixml = cl_ixml=>create( ).
  l_ixml_sf = l_ixml->create_stream_factory( ).
  l_document = l_ixml->create_document( ).
  l_root_element = l_document->create_element( name = 'SimpleChartData' ).
  l_root_element->set_attribute( name = 'version' value = '1.0' ).
  l_document->append_child( new_child = l_root_element ).
* create category xml
  l_categories_element = l_document->create_simple_element( parent = l_root_element  name = 'Categories' ).
  LOOP AT l_category_data_tab INTO l_category_name.
    l_c_element = l_document->create_simple_element( parent = l_categories_element  name = 'C' value = l_category_name ).
  ENDLOOP.
* create series 1 xml
  l_series_1_element = l_document->create_simple_element( parent = l_root_element  name = 'Series' ).
  l_tooltip = 'title='.
  CONCATENATE l_tooltip l_apostrophe l_series_1_data-tooltip l_apostrophe INTO l_tooltip.
  l_series_1_element->set_attribute( name = 'extension' value = l_tooltip ).
  l_series_1_element->set_attribute( name = 'label' value = l_series_1_data-label ).
  LOOP AT l_series_1_data-point_data INTO l_point_data.
    l_s_element = l_document->create_simple_element( parent = l_series_1_element  name = 'S' value = l_point_data-value ).
    l_tooltip = 'title='.
    CONCATENATE l_tooltip l_apostrophe l_point_data-tooltip l_apostrophe INTO l_tooltip.
    l_s_element->set_attribute( name = 'extension' value = l_tooltip ).
  ENDLOOP.
* create series 2 xml
  l_series_2_element = l_document->create_simple_element( parent = l_root_element  name = 'Series' ).
  l_tooltip = 'title='.
  CONCATENATE l_tooltip l_apostrophe l_series_2_data-tooltip l_apostrophe INTO l_tooltip.
  l_series_2_element->set_attribute( name = 'extension' value = l_tooltip ).
  l_series_2_element->set_attribute( name = 'label' value = l_series_2_data-label ).
  LOOP AT l_series_2_data-point_data INTO l_point_data.
    l_s_element = l_document->create_simple_element( parent = l_series_2_element  name = 'S' value = l_point_data-value ).
    l_tooltip = 'title='.
    CONCATENATE l_tooltip l_apostrophe l_point_data-tooltip l_apostrophe INTO l_tooltip.
    l_s_element->set_attribute( name = 'extension' value = l_tooltip ).
  ENDLOOP.
  l_ostream = l_ixml_sf->create_ostream_xstring( xml ).
  l_document->render( ostream = l_ostream ).
Regards
Raja

Similar Messages

  • BSP Graphics & IF_GRAPH_DATA_MODEL

    Hello All,
    I am, once again, trying to generate an MTA in BSP using <graphics:chart>. I already managed to generate the MTA hard-coding the values into the BSP page (this was fine for a prototype presentation), but now I have to integrate the MTA using data coming from a cube. 
    I have created an internal table holding the data from the cube which looks something like this:
      Milestone    Actual Date     Plan Date
        M100         20060101       20060101
        M200         20060301       20060201
    I have implemented (as suggested in my previous post by Raja:  BSP Graphics Extension (MTA))
    a class with the interface IF_GRAPH_DATA_MODEL and have included all of the suggested coding from Raja's post, the only stuff I added being bold:
    TYPES: BEGIN OF t_point_data,
                   tooltip TYPE string,
                   value   TYPE string,
                   <b>value2  TYPE string,</b>
             END OF t_point_data.
      TYPES: t_point_data_tab TYPE STANDARD TABLE OF t_point_data.
      DATA: BEGIN OF t_series_data,
              tooltip    TYPE string,
              label      TYPE string,
              point_data TYPE t_point_data_tab,
            END OF t_series_data.
      DATA: l_ixml                                 TYPE REF TO if_ixml,
            l_ixml_sf                              TYPE REF TO if_ixml_stream_factory,
            l_istream                              TYPE REF TO if_ixml_istream,
            l_ostream                              TYPE REF TO if_ixml_ostream,
            l_document                             TYPE REF TO if_ixml_document,
            l_parser                               TYPE REF TO if_ixml_parser,
            l_root_element                         TYPE REF TO if_ixml_element,
            l_categories_element                   TYPE REF TO if_ixml_element,
            l_series_1_element                     TYPE REF TO if_ixml_element,
            l_series_2_element                     TYPE REF TO if_ixml_element,
            l_c_element                            TYPE REF TO if_ixml_element,
            l_s_element                            TYPE REF TO if_ixml_element,
            l_series_1_data                        LIKE t_series_data,
            l_series_2_data                        LIKE t_series_data,
            l_point_data                           TYPE t_point_data,
            l_category_name                        TYPE string,
            l_category_data_tab                    TYPE STANDARD TABLE OF string,
            l_tooltip                              TYPE string,
            l_apostrophe                           TYPE string VALUE  ''''.
      FIELD-SYMBOLS: <l_line> TYPE /sie/sbds_mta,
                     <l_field> TYPE ANY.
    * fill category data <outtab> is an itab holding the values to be passed to graph
      LOOP AT outtab ASSIGNING <l_line> .
        ASSIGN COMPONENT 1 OF STRUCTURE <l_line> TO <l_field> .
        APPEND <l_field> TO l_category_data_tab.
      ENDLOOP .
    * fill data for series 1
      LOOP AT outtab ASSIGNING <l_line> .
        ASSIGN COMPONENT 2 OF STRUCTURE <l_line> TO <l_field> .
        l_series_1_data-tooltip = 'Actual'.
        l_series_1_data-label   = 'Actual'.
        l_point_data-tooltip    = <l_field>.
        l_point_data-value      = <l_field>.
        <b>l_point_data-value2     = <l_field>.</b>
        APPEND l_point_data TO l_series_1_data-point_data.
      ENDLOOP .
    * fill data for series 2
      LOOP AT outtab ASSIGNING <l_line> .
        ASSIGN COMPONENT 3 OF STRUCTURE <l_line> TO <l_field> .
        l_series_2_data-tooltip = 'Plan'.
        l_series_2_data-label   = 'Plan'.
        l_point_data-tooltip    = <l_field> .
        l_point_data-value      = <l_field>.
        <b>l_point_data-value2     = <l_field>.</b>
        APPEND l_point_data TO l_series_2_data-point_data.
      ENDLOOP .
      l_ixml = cl_ixml=>create( ).
      l_ixml_sf = l_ixml->create_stream_factory( ).
      l_document = l_ixml->create_document( ).
      l_root_element = l_document->create_element( name = 'SimpleChartData' ).
      l_root_element->set_attribute( name = 'version' value = '1.0' ).
      l_document->append_child( new_child = l_root_element ).
    * create category xml
      l_categories_element = l_document->create_simple_element( parent = l_root_element  name = 'Categories' ).
      LOOP AT l_category_data_tab INTO l_category_name.
        l_c_element = l_document->create_simple_element( parent = l_categories_element  name = 'C' value = l_category_name ).
      ENDLOOP.
    * create series 1 xml
      l_series_1_element = l_document->create_simple_element( parent = l_root_element  name = 'Series' ).
      l_tooltip = 'title='.
      CONCATENATE l_tooltip l_apostrophe l_series_1_data-tooltip l_apostrophe INTO l_tooltip.
      l_series_1_element->set_attribute( name = 'extension' value = l_tooltip ).
      l_series_1_element->set_attribute( name = 'label' value = l_series_1_data-label ).
      LOOP AT l_series_1_data-point_data INTO l_point_data.
        l_s_element = l_document->create_simple_element( parent = l_series_1_element  name = 'S' value = l_point_data-value ).
        l_tooltip = 'title='.
        CONCATENATE l_tooltip l_apostrophe l_point_data-tooltip l_apostrophe INTO l_tooltip.
        l_s_element->set_attribute( name = 'extension' value = l_tooltip ).
      ENDLOOP.
    * create series 2 xml
      l_series_2_element = l_document->create_simple_element( parent = l_root_element  name = 'Series' ).
      l_tooltip = 'title='.
      CONCATENATE l_tooltip l_apostrophe l_series_2_data-tooltip l_apostrophe INTO l_tooltip.
      l_series_2_element->set_attribute( name = 'extension' value = l_tooltip ).
      l_series_2_element->set_attribute( name = 'label' value = l_series_2_data-label ).
      LOOP AT l_series_2_data-point_data INTO l_point_data.
        l_s_element = l_document->create_simple_element( parent = l_series_2_element  name = 'S' value = l_point_data-value ).
        l_tooltip = 'title='.
        CONCATENATE l_tooltip l_apostrophe l_point_data-tooltip l_apostrophe INTO l_tooltip.
        l_s_element->set_attribute( name = 'extension' value = l_tooltip ).
      ENDLOOP.
      l_ostream = l_ixml_sf->create_ostream_xstring( xml ).
      l_document->render( ostream = l_ostream ).
    The problem I am having, and the reason I have added those lines of coding in bold, is that the MTA needs two date point to create a point on the chart. The internal table which holds the mta data is passing my values along just fine, but the method is missing the part where I create the two point values to be plotted on the graph.
    I would be thankful if someone could help me figure this one out - I simply don't get it
    Thanks a lot
    Svenja

    Hi,
    what exactly is the problem?
    Using the documentation about the data XML of the chart engine you should get the idea how the data is to be structured.
    And finally use create_simple_element of iXML to create it accordingly. Take care of defining the correct parent node
    Regards, Kai

  • Space added to path when using graphics extension

    Hi,
    I'm having a strange problem.  I use the 'chart' element of BSP extension 'graphics', but this doesn't show me the generated graph in the portal.
    I've done some debugging and I've found out that this extension uses the method cl_graph_util=>publish_blob for putting the generated image in the server cache and generates a url inside the application.
    For retrieving the current application.  This method uses  
    path = request->get_header_field( '~PATH_TRANSLATED' ).
    Now after this call, the content of the variable 'path' is '/sap/bc/bsp/arinso/EAQ_BP /output/result.do'.  So a space is added after the name of my BSP application and before the subfolder that contains my controller.
    Can anyone tell me where I might have misconfigured something that causes this?
    Thanks,
    Tim

    I couldn't find what causes it, but I've solved it by putting this code, just before the chart tag.
      data l_path type string.
      l_path = request->get_header_field( '~PATH_TRANSLATED' ).
      condense l_path no-gaps.
      request->set_header_field( name = '~PATH_TRANSLATED'
      value = l_path ).

  • Windows 8.1 Explorer crash only on graphic extension files *.jpg *.png etc

    Like in title, when right click on graphic files explorer crash.
    No alerts no windows with some solution text etc. Explorer just shut down and restart...
    Please help me, I'm getting tired of this OS, way more buggy than windows 7.

    Hi,
    Did you install any application recently? According to your description, it seems like Shell Extension caused this problem, you can use ShellExView tool to check shell extension.
    ShellExView: http://www.nirsoft.net/utils/shexview.html
    Roger Lu
    TechNet Community Support

  • BSP graphics not displaying

    Hi guys,
    In DSWP transaction, OPerations-System monitoring, Gives below error.
    SAP Note
    The following error text was processed in the system:
    BSP Exception: Internal Error in Business Server Page Runtime.
    Program CL_BSP_RUNTIME================CP
    Include CL_BSP_RUNTIME================CM001
    Line 196 
    I can see below link get executed in browser
    http://pw200-3.xxx.xxxxxx.com:8000/sap/bc/solman/defaultUser/graphic/solmangraphic.htm?sap-language=E&sap-client=001&_appl=SOLMAN&CMD=GRDI&SLID=000000000100100&ASID=000000000000267&_cacheid=4913CC17C7734621E10000000A21C81A
    Question ?
    Is it a Service active problem?  or  Should i have to add the any Handler class CL_HTTP_EXT_BSP or etc in Handler List Tag?
    if so which SERVICE i have to set this?
    Any troubleshooting way?
    regards

    thanks

  • Graphic Extension to the SAP-Menu

    Hello Everyone,
    Did anyone knows whether it's possible to add extension to the SAP-menu.
    I would like to add some entries related to an external application.
    Another question will be :
    If I can do this, can I put it in a new package an export it to another system to have it there.
    What I also knows, that it should be consistent, when someone install some new packages from SAP, my client customization should not be erased.
    Ps. Has SAP some kind of Dynamic/Graphic Interfaces where we could do this ?
    Well, I'm not talking about the User Exit, in case someone will propose me that.
    Thanks In Advance.
    Best Regards,
    Kais

    A list of connections can be gotten in 1.1 from this call:
    Connections.getInstance().getConnNames()
    then to get the actual JDBC connection:
    Connections.getInstance().getConnection("MyConnName")
    -kris

  • Graphics extension

    im naveen,i have taken lenovo essential series G570 before a month,with i5 processor.i have taken it with intel HD graphics,and with DOS,no extra graphics card.now i want to have extra graphics card of 1GB,can i have it on my laptop?????plzzzzz tell me.....

    as i pointed before, upgrading graphic cards are not possible due to it's soldered to the mainboard. you will need to replace the whole mainboard.

  • Leopard Graphics Extensions Issues (ALWAYS WITH THE GRAPHICS!)

    I'm perfectly new to this support for the purposes of this problem.
    The problem that has recently popped up is when ever I log in I'm greeted with two messages about "AppleIntelGMAX3100.kext" and "AppleIntelGMAX3100FB.kext" not being installed properly. As such, I have no access to any resolution other than 1280x800, no transparency effects, I cannot adjust the brightness or contrast, nor can I use the keyboard shortcuts for brightness.
    I've tried reinstalling 10.5.4, only to discover that it does not contain anything in terms of graphics updates.
    I just need to reinstall these two plug ins properly, but I can seem to get a decent way of doing it. Anybody have any ideas how I can get those working without the system disk (it's at a friends house, I'll need to wait for a few days before I can get it back!) ????

    As far as I'm aware the only solution is to reinstall OS X. You can do this via Archive and Install which does not erase the drive provided you have ample free disk space:
    How to Perform an Archive and Install
    1. Be sure to use Disk Utility first to repair the disk before performing the Archive and Install.
    Repairing the Hard Drive and Permissions
    Boot from your OS X Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Installer menu (Utilities menu for Tiger.) After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list. In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive. If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported, then quit DU and return to the installer.
    If DU reports errors it cannot fix, then you will need Disk Warrior (4.0 for Tiger) and/or TechTool Pro (4.5.2 for Tiger) to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    2. Do not proceed with an Archive and Install if DU reports errors it cannot fix. In that case use Disk Warrior and/or TechTool Pro to repair the hard drive. If neither can repair the drive, then you will have to erase the drive and reinstall from scratch.
    3. Boot from your OS X Installer disc. After the installer loads select your language and click on the Continue button. When you reach the screen to select a destination drive click once on the destination drive then click on the Option button. Select the Archive and Install option. You have an option to preserve users and network preferences. Only select this option if you are sure you have no corrupted files in your user accounts. Otherwise leave this option unchecked. Click on the OK button and continue with the OS X Installation.
    4. Upon completion of the Archive and Install you will have a Previous System Folder in the root directory. You should retain the PSF until you are sure you do not need to manually transfer any items from the PSF to your newly installed system.
    5. After moving any items you want to keep from the PSF you should delete it. You can back it up if you prefer, but you must delete it from the hard drive.
    6. You can now download a Combo Updater directly from Apple's download site to update your new system to the desired version as well as install any security or other updates. You can also do this using Software Update.

  • How to Use Graphics Map

    Hi,
    i want to create events on the  graphics as the maps in BSP.  we can do this in HTML using <map> and <area>extensions.
    There is <graphics> extension in BSP, but i don't know how to use this extension.
    <%@extension name="graphics" prefix="graphics" %>
    <graphics:map>
    </graphics:map>
    Does anybody know how to use the graphics as maps in bsp?  Can somebody help me please?
    Thanks.

    Look at the below sample BSP application:
    GRAPH_BSP_TEST
    GRAPH_TUT_CHART
    GRAPH_TUT_JNET
    Hope it might help.
    Raja

  • An Aid For BSP Development

    An Aid For BSP Development
    Hi,
    I have developed a small tool as an aid to BSP Development.
    I describe it briefly here.
    You can see screen shots on www.sapprogrammer.com. Click on BSP Find.
    It turns out that the tool is even more useful than I figured as I wrote it.
    It took over a year to write at weekends and in the evenings.
    As it got more and more powerful I saw that it was enabling me to do things I could not otherwise have done.
    I also believe it would be extremely useful to extend it in some ways that seem to offer themselves naturally now.
    So here’s the description:
    Find a String in a BSP
    (A BSP means here : The BSP in SE80 + its models defined in the BSP + its application class.)
    The program runs thru a BSP and its Models and its Application Class and looks for whatever string of characters you require.
    It produces a legible list showing the places you should go to find that string. (See screen shots).
    Advantages:
    This cuts down work time as a developer enormously.
    In addition, if you seek an empty string the program will list the whole BSP. Thus you can print your BSP.
    Extensions:
    I have since extended it to run over a range of BSPs. You can’t run over many because it takes too long but you can run over 2 or 3.
    What I should like to do now:
    The program proves to be so useful I should like to see if it is possible to:
    *     Integrate it to any extent into the ABAP Workbench. It is purposely completely separate at the moment.
    *     Use it to compare BSP Versions. We have just received Service Packs and a large BSP has been changed. It would be good to have a tool to show the differences between our copy of the old version and the new one.
    Would anyone be interested in cooperation on this? Its probably too much work for me alone. In particular the workbench question would presumably require cooperation with SAP itself?
    Kind regards
    David Lawn

    There is no doubt that this is a very excellent tool. We have had this problem many times before. Often we can see in the HTTP trace the error, but have no way to easily find the source in the server. What we currently do is a hack: we download the source, and search on disk. Very clumsy. In this sense, we can clearly see the value in this tool. I can only support David in saying that this is a very useful tool.
    From the side of the SAP, we can unfortunately not help. I will forward you append to the workbench group to again check. But we have to see the reality that our team is already overcommited for Netweaver '05 development.
    Which does not prevent you from just running this program directly from SE38 (or even better, assign it a transaction code). This does not reduce the true value of the tool.
    If there are people interested in building a small group to help David, it will be good, and I see a lot of interest. Important it that you just clear the licensing aspects. I think that using the forum for communication is ok (if you don't use emails).
    regards, brian

  • Problem with a script to remove graphics

    Hello,
    I have tried to build a javascript to remove all graphics whose extension is not ".EPS" (with "EPS" really in upper cases, as it is for Mathtype equations in Word import).
    But It doesn't work and I can't understand why.
    Here is the script:
    //The script intend to remove all graphics whose extension is not ".EPS"
    var myDoc = app.activeDocument;
    var myGraphics = myDoc.allGraphics
    //Remove graphic if graphic extension is different from ".EPS"
    for (var p = 0; p < myGraphics.length; p++) {
        var myImage = myGraphics[p]
        if (CheckExtEps(myImage) != 0){
        myImage.remove ()
    //Compare graphic extension with ".EPS" and return myExtValue = 0 if it matches exactly
    function CheckExtEps(myImage) {
        var  myString = myImage.name
        myExt = myString.substr(myString.lastIndexOf( "." ))
        myExtValue = myExt.localeCompare(".EPS")
        return myExtValue
    When I run this script, ALL the graphics are removed, ".EPS" included.
    I do have ".EPS" graphics in my document and I expected them not to be removed.
    So there is something wrong somewhere, but I don't know what to change.
    Any ideas?
    By the way, I have a more generic question as a beginner:
    I am working with ExtendScript Toolkit. How can I do to check my script step by step?
    For exemple, how can I display my variables values as "myString", "myExt", "myExtValue" at each step?
    Actually, this script is a step for a bigger script I intend to build to deal with Mathtype equations in Word import.
    After not-EPS graphics beeing removed, I wish to relink all remaining equation prewiews to eps in a selected folder, by consecutive order.
    But this is a big piece of scripting to swallow for me, so I'm working slowly, step by step.
    TIA
    Best regards
    Nicolas

    Hello Ariel
    Thank you very much for your help.
    1. I added semicolons at the end of lines, but the script result is the same.
    2. Running line by line, I could see in the Console where is the problem:
    variable "myString" is always undefined.
    Well, I have to get more inside my script...
    Thank's again
    Best regards
    Nicolas
    Nicolas BALBO  
    [email protected]
    22, rue d'Hauteville  75010 PARIS
    Tel : 33 (0)1 42 57 14 31
    Le 18 avr. 2012 à 17:36, Arïel a écrit :
    Re: Problem with a script to remove graphics
    created by Arïel in InDesign Scripting - View the full discussion
    Well, I can't see any semicolons in your script. Maybe that's just the
    email interface, but there should be semicolons at the ends of lines.
    In the ESTK, you can step through a script a line at a time. Just click
    on the downwards pointing arrow instead of the "play" arrow. Each time
    you click, the script will advance one line. In the Console window
    (Windw>Console) you can then type the name of the variable you wish to
    examine.
    Ariel
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4344039#4344039
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4344039#4344039. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in InDesign Scripting by email or at Adobe Forums
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Stacked format in chart using graphics:chart

    I Implemented a graphics:chart element and is working fine, I know how to set Pie format, bars, line in 2D or 3D, but I cant find info about how to set the stacked format.
    I read the PDF that comes with the SAP chart Designer. In the section “Blocks” with Time Axis gives and example.
    And the example is the following:
    <?xml version="1.0" encoding="utf-8"?>
    <ChartData>
    <Categories>
      <Category>20060703;120000</Category>
      <Category>20060704;120000</Category>
      <Category>20060705;120000</Category>
      <Category>20060706;120000</Category>
    </Categories>
    <Series label="Coffee">
      <Point>
       <Value type="y">94</Value>
      </Point>
      <Point>
       <Value type="y">110</Value>
      </Point>
      <Point>
       <Value type="y">139</Value>
      </Point>
      <Point>
       <Value type="y">192</Value>
      </Point>
    </Series>
    <Series label="Espresso">
      <Point>
       <Value type="y">35</Value>
      </Point>
      <Point>
       <Value type="y">39</Value>
      </Point>
      <Point>
       <Value type="y">38</Value>
      </Point>
      <Point>
       <Value type="y">59</Value>
      </Point>
    </Series>
    </ChartData>
    I copy, paste this example and I dont get stacked columns I see 2 series for each category, and I see 20060703;120000 as a label of the column. Something is wrong and I dont get it.
    Some1 have a code sample of a stacked graphics:chart ?

    Hi Roddy,
    I can only assume that the default value for this attribute is for a column chart.
    Here is a sample of a stacked column chart. I just did what was suggested above but using ChartDesigner to create the customising and then I pasted it into the sample. As mentioned I created a second series of data.
    <%@page language="abap" %>
    <%@extension name="graphics" prefix="graphics" %>
    <%@extension name="htmlb" prefix="abap" %>
    <graphics:chart igs_rfc_destination = "IGS_RFC_DEST"
                    width               = "300"
                    height              = "300"
                    format              = "JPG"
                    font_family         = "Arial Unicode MS"
                    dimension           = "PseudoThree" >
      <graphics:data>
        <graphics:nativexml>
          <?xml version="1.0" encoding="utf-8"?>
          <SimpleChartData>
            <Categories>
              <C>Category 1</C>
              <C>Category 2</C>
              <C>Category 3</C>
              <C>Category 4</C>
              <C>Category 5</C>
            </Categories>
            <Series>
              <S label="17.55%">17.55</S>
              <S label="17.10%">17.10</S>
              <S label="8.70%">8.7</S>
              <S label="8.25%">8.25</S>
              <S label="6.87%">6.87</S>
            </Series>
            <Series>
              <S label="6.87%">6.87</S>
              <S label="8.25%">8.25</S>
              <S label="8.70%">8.7</S>
              <S label="17.10%">17.10</S>
              <S label="17.55%">17.55</S>
            </Series>
          </SimpleChartData>
        </graphics:nativexml>
      </graphics:data>
      <graphics:custom>
        <graphics:nativexml>
                <?xml version="1.0" encoding="utf-8"?>
          <SAPChartCustomizing version="2.0">
           <GlobalSettings>
            <Dimension>Two</Dimension>
            <TransparentColor>None</TransparentColor>
            <ColorPalette>Tradeshow</ColorPalette>
            <ColorOrder>Default</ColorOrder>
            <Gaps>Void</Gaps>
            <EqualizeValueAxes>false</EqualizeValueAxes>
            <ThreeD>
             <Ratio>1.75</Ratio>
             <Distance>20</Distance>
             <Depth>10</Depth>
             <DepthCalculation>Automatic</DepthCalculation>
            </ThreeD>
            <Defaults>
             <ChartType>StackedColumns</ChartType>
             <FontFamily>Automatic</FontFamily>
            </Defaults>
            <Colors>
             <Color id="1">RGB(187,204,221)</Color>
             <Color id="2">RGB(204,222,240)</Color>
             <Color id="3">RGB(221,234,243)</Color>
             <Color id="4">RGB(221,234,243)</Color>
             <Color id="5">RGB(236,244,249)</Color>
             <Color id="6">RGB(236,244,249)</Color>
             <Color id="7">RGB(255,255,255)</Color>
             <Color id="8">RGB(255,0,255)</Color>
             <Color id="9">RGB(126,168,222)</Color>
             <Color id="10">RGB(107,152,202)</Color>
             <Color id="11">RGB(79,135,191)</Color>
             <Color id="12">RGB(44,106,174)</Color>
             <Color id="13">RGB(19,80,142)</Color>
             <Color id="14">RGB(192,192,192)</Color>
             <Color id="15">RGB(192,192,192)</Color>
             <Color id="16">RGB(0,0,0)</Color>
             <Color id="17">RGB(198,222,127)</Color>
             <Color id="18">RGB(171,197,94)</Color>
             <Color id="19">RGB(147,174,68)</Color>
             <Color id="20">RGB(118,143,44)</Color>
             <Color id="21">RGB(91,111,33)</Color>
             <Color id="22">RGB(192,192,192)</Color>
             <Color id="23">RGB(192,192,192)</Color>
             <Color id="24">RGB(156,235,145)</Color>
             <Color id="25">RGB(255,229,112)</Color>
             <Color id="26">RGB(248,211,61)</Color>
             <Color id="27">RGB(241,194,10)</Color>
             <Color id="28">RGB(220,180,0)</Color>
             <Color id="29">RGB(200,163,0)</Color>
             <Color id="30">RGB(192,192,192)</Color>
             <Color id="31">RGB(192,192,192)</Color>
             <Color id="32">RGB(255,250,102)</Color>
             <Color id="33">RGB(196,179,236)</Color>
             <Color id="34">RGB(162,149,205)</Color>
             <Color id="35">RGB(135,123,176)</Color>
             <Color id="36">RGB(109,99,150)</Color>
             <Color id="37">RGB(91,81,130)</Color>
             <Color id="38">RGB(192,192,192)</Color>
             <Color id="39">RGB(192,192,192)</Color>
             <Color id="40">RGB(255,103,88)</Color>
             <Color id="41">RGB(169,204,197)</Color>
             <Color id="42">RGB(137,167,161)</Color>
             <Color id="43">RGB(115,145,140)</Color>
             <Color id="44">RGB(88,115,110)</Color>
             <Color id="45">RGB(61,82,77)</Color>
             <Color id="46">RGB(192,192,192)</Color>
             <Color id="47">RGB(192,192,192)</Color>
             <Color id="48">RGB(192,192,192)</Color>
             <Color id="49">RGB(199,172,137)</Color>
             <Color id="50">RGB(167,147,123)</Color>
             <Color id="51">RGB(145,129,109)</Color>
             <Color id="52">RGB(115,102,88)</Color>
             <Color id="53">RGB(82,76,69)</Color>
             <Color id="54">RGB(192,192,192)</Color>
             <Color id="55">RGB(192,192,192)</Color>
             <Color id="56">RGB(192,192,192)</Color>
             <Color id="57">RGB(220,138,188)</Color>
             <Color id="58">RGB(195,103,158)</Color>
             <Color id="59">RGB(174,90,140)</Color>
             <Color id="60">RGB(155,61,115)</Color>
             <Color id="61">RGB(126,38,89)</Color>
             <Color id="62">RGB(192,192,192)</Color>
             <Color id="63">RGB(192,192,192)</Color>
             <Color id="64">RGB(192,192,192)</Color>
            </Colors>
           </GlobalSettings>
           <Elements>
            <ChartElements>
             <Background>
              <Visibility>true</Visibility>
              <Extension/>
              <Insets>3</Insets>
              <Color>@6</Color>
              <SecondaryColor>RGB(0,0,0)</SecondaryColor>
              <Pattern>None</Pattern>
              <Gradient>None</Gradient>
              <Texture>None</Texture>
              <TextureMode>Tile</TextureMode>
              <Transparency>0</Transparency>
              <BorderColor>None</BorderColor>
              <BorderStyle>Solid</BorderStyle>
              <BorderWidth>1</BorderWidth>
             </Background>
             <PlotArea>
              <Visibility>true</Visibility>
              <Extension/>
              <Alignment>Automatic</Alignment>
              <ManualPosition>
               <Top>0</Top>
               <Left>0</Left>
               <Bottom>100</Bottom>
               <Right>100</Right>
              </ManualPosition>
              <Color>@5</Color>
              <SecondaryColor>RGB(0,0,0)</SecondaryColor>
              <Pattern>None</Pattern>
              <Gradient>None</Gradient>
              <Texture>None</Texture>
              <TextureMode>Tile</TextureMode>
              <Transparency>0</Transparency>
              <BorderColor>@4</BorderColor>
              <BorderStyle>Solid</BorderStyle>
              <BorderWidth>1</BorderWidth>
             </PlotArea>
             <Title>
              <Visibility>true</Visibility>
              <Extension/>
              <Caption/>
              <Position>Top</Position>
              <AlignToPlot>false</AlignToPlot>
              <Insets>4</Insets>
              <Text>
               <FontFamily>Automatic</FontFamily>
               <Color>@16</Color>
               <Size>8</Size>
               <Style>Normal</Style>
               <HorizontalPosition>Default</HorizontalPosition>
               <VerticalPosition>Default</VerticalPosition>
               <Direction>Default</Direction>
              </Text>
              <Color>None</Color>
              <SecondaryColor>RGB(0,0,0)</SecondaryColor>
              <Pattern>None</Pattern>
              <Gradient>None</Gradient>
              <Texture>None</Texture>
              <TextureMode>Tile</TextureMode>
              <Transparency>0</Transparency>
              <BorderColor>None</BorderColor>
              <BorderStyle>Solid</BorderStyle>
              <BorderWidth>1</BorderWidth>
             </Title>
             <Subtitle>
              <Visibility>true</Visibility>
              <Extension/>
              <Caption/>
              <Position>Top</Position>
              <AlignToPlot>false</AlignToPlot>
              <Insets>4</Insets>
              <Text>
               <FontFamily>Automatic</FontFamily>
               <Color>@16</Color>
               <Size>8</Size>
               <Style>Normal</Style>
               <HorizontalPosition>Default</HorizontalPosition>
               <VerticalPosition>Default</VerticalPosition>
               <Direction>Default</Direction>
              </Text>
              <Color>None</Color>
              <SecondaryColor>RGB(0,0,0)</SecondaryColor>
              <Pattern>None</Pattern>
              <Gradient>None</Gradient>
              <Texture>None</Texture>
              <TextureMode>Tile</TextureMode>
              <Transparency>0</Transparency>
              <BorderColor>None</BorderColor>
              <BorderStyle>Solid</BorderStyle>
              <BorderWidth>1</BorderWidth>
             </Subtitle>
             <Legend>
              <Visibility>true</Visibility>
              <Extension/>
              <Caption/>
              <Alignment>ToPlotArea</Alignment>
              <Position>Bottom</Position>
              <Insets>4</Insets>
              <Order>Ascending</Order>
              <OrderByRow>false</OrderByRow>
              <OrderByData>false</OrderByData>
              <MoreInfo>false</MoreInfo>
              <ManualPosition>
               <Top>93.9048</Top>
               <Left>7.24382</Left>
               <Bottom>98.6667</Bottom>
               <Right>98.7633</Right>
              </ManualPosition>
              <Text>
               <FontFamily>Automatic</FontFamily>
               <Color>@16</Color>
               <Size>9</Size>
               <Style>Normal</Style>
              </Text>
              <Color>None</Color>
              <SecondaryColor>RGB(0,0,0)</SecondaryColor>
              <Pattern>None</Pattern>
              <Gradient>None</Gradient>
              <Texture>None</Texture>
              <TextureMode>Tile</TextureMode>
              <Transparency>0</Transparency>
              <BorderColor>None</BorderColor>
              <BorderStyle>Solid</BorderStyle>
              <BorderWidth>1</BorderWidth>
              <SashColor>RGB(0,0,0)</SashColor>
              <SashStyle>Solid</SashStyle>
              <SashWidth>1</SashWidth>
             </Legend>
            </ChartElements>
            <ChartTypes>
             <StackedColumns>
              <Visibility>true</Visibility>
              <Extension/>
              <Percentage>true</Percentage>
              <Distance>50</Distance>
              <AutoBorder>false</AutoBorder>
              <BlockStyle>Rectangle</BlockStyle>
              <ConnectionLines>false</ConnectionLines>
             </StackedColumns>
            </ChartTypes>
            <ChartAxes>
             <CategoryAxis>
              <Visibility>true</Visibility>
              <Extension/>
              <Minimum>1</Minimum>
              <MinimumAutomatic>true</MinimumAutomatic>
              <Maximum>5</Maximum>
              <MaximumAutomatic>true</MaximumAutomatic>
              <Order>Ascending</Order>
              <VariableCategories>false</VariableCategories>
              <AxisType>Flat</AxisType>
              <Centered>false</Centered>
              <Position>Primary</Position>
              <Color>None</Color>
              <SecondaryColor>RGB(0,0,0)</SecondaryColor>
              <Pattern>None</Pattern>
              <Gradient>None</Gradient>
              <Texture>None</Texture>
              <TextureMode>Tile</TextureMode>
              <Transparency>0</Transparency>
              <BorderColor>None</BorderColor>
              <BorderStyle>Solid</BorderStyle>
              <BorderWidth>1</BorderWidth>
              <Line>
               <Visibility>true</Visibility>
               <Extension/>
               <CategoryGap>0</CategoryGap>
               <WrapText>true</WrapText>
               <Position>AtBorder</Position>
               <Insets>2</Insets>
               <Axis>
                <Color>@1</Color>
                <Style>Solid</Style>
                <Width>2</Width>
               </Axis>
               <MajorTicks>
                <Color>@1</Color>
                <Style>Solid</Style>
                <Width>2</Width>
               </MajorTicks>
               <MajorTickGap>0</MajorTickGap>
               <Text>
                <FontFamily>Automatic</FontFamily>
                <Color>@16</Color>
                <Size>9</Size>
                <Style>Normal</Style>
                <HorizontalPosition>Default</HorizontalPosition>
                <VerticalPosition>Default</VerticalPosition>
                <Direction>Default</Direction>
               </Text>
               <Color>None</Color>
               <SecondaryColor>RGB(0,0,0)</SecondaryColor>
               <Pattern>None</Pattern>
               <Gradient>None</Gradient>
               <Texture>None</Texture>
               <TextureMode>Tile</TextureMode>
               <Transparency>0</Transparency>
               <BorderColor>None</BorderColor>
               <BorderStyle>Solid</BorderStyle>
               <BorderWidth>1</BorderWidth>
              </Line>
              <GridLine>
               <Visibility>true</Visibility>
               <Extension/>
               <MajorLines>
                <Color>@2</Color>
                <Style>Solid</Style>
                <Width>1</Width>
               </MajorLines>
               <MajorTickGap>0</MajorTickGap>
              </GridLine>
              <Title>
               <Visibility>true</Visibility>
               <Extension/>
               <Caption/>
               <Text>
                <FontFamily>Automatic</FontFamily>
                <Color>@16</Color>
                <Size>8</Size>
                <Style>Normal</Style>
                <HorizontalPosition>Default</HorizontalPosition>
                <VerticalPosition>Default</VerticalPosition>
                <Direction>Default</Direction>
               </Text>
               <Color>None</Color>
               <SecondaryColor>RGB(0,0,0)</SecondaryColor>
               <Pattern>None</Pattern>
               <Gradient>None</Gradient>
               <Texture>None</Texture>
               <TextureMode>Tile</TextureMode>
               <Transparency>0</Transparency>
               <BorderColor>None</BorderColor>
               <BorderStyle>Solid</BorderStyle>
               <BorderWidth>1</BorderWidth>
              </Title>
              <Unit>
               <Visibility>true</Visibility>
               <Extension/>
               <Caption/>
               <Text>
                <FontFamily>Automatic</FontFamily>
                <Color>@16</Color>
                <Size>8</Size>
                <Style>Normal</Style>
                <HorizontalPosition>Default</HorizontalPosition>
                <VerticalPosition>Default</VerticalPosition>
                <Direction>Default</Direction>
               </Text>
               <Color>None</Color>
               <SecondaryColor>RGB(0,0,0)</SecondaryColor>
               <Pattern>None</Pattern>
               <Gradient>None</Gradient>
               <Texture>None</Texture>
               <TextureMode>Tile</TextureMode>
               <Transparency>0</Transparency>
               <BorderColor>None</BorderColor>
               <BorderStyle>Solid</BorderStyle>
               <BorderWidth>1</BorderWidth>
              </Unit>
             </CategoryAxis>
             <ValueAxis id="ValueAxis1">
              <Visibility>true</Visibility>
              <Extension/>
              <Minimum>0</Minimum>
              <MinimumCalculation>Automatic</MinimumCalculation>
              <Maximum>100</Maximum>
              <MaximumCalculation>Automatic</MaximumCalculation>
              <ScalingType>Linear</ScalingType>
              <Order>Ascending</Order>
              <Position>Primary</Position>
              <Color>None</Color>
              <SecondaryColor>RGB(0,0,0)</SecondaryColor>
              <Pattern>None</Pattern>
              <Gradient>None</Gradient>
              <Texture>None</Texture>
              <TextureMode>Tile</TextureMode>
              <Transparency>0</Transparency>
              <BorderColor>None</BorderColor>
              <BorderStyle>Solid</BorderStyle>
              <BorderWidth>1</BorderWidth>
              <Line>
               <Visibility>true</Visibility>
               <Extension/>
               <Insets>2</Insets>
               <Format/>
               <Axis>
                <Color>@1</Color>
                <Style>Solid</Style>
                <Width>2</Width>
               </Axis>
               <MajorTickCalculation>AutomaticTicks</MajorTickCalculation>
               <NumberMajorTicks>6</NumberMajorTicks>
               <MajorTicks>
                <Color>@1</Color>
                <Style>Solid</Style>
                <Width>2</Width>
               </MajorTicks>
               <AutomaticMinorTicks>true</AutomaticMinorTicks>
               <NumberMinorTicks>4</NumberMinorTicks>
               <MinorTicks>
                <Color>@1</Color>
                <Style>Solid</Style>
                <Width>1</Width>
               </MinorTicks>
               <Text>
                <FontFamily>Automatic</FontFamily>
                <Color>@16</Color>
                <Size>9</Size>
                <Style>Normal</Style>
                <HorizontalPosition>Default</HorizontalPosition>
                <VerticalPosition>Default</VerticalPosition>
                <Direction>Default</Direction>
               </Text>
               <Color>None</Color>
               <SecondaryColor>RGB(0,0,0)</SecondaryColor>
               <Pattern>None</Pattern>
               <Gradient>None</Gradient>
               <Texture>None</Texture>
               <TextureMode>Tile</TextureMode>
               <Transparency>0</Transparency>
               <BorderColor>None</BorderColor>
               <BorderStyle>Solid</BorderStyle>
               <BorderWidth>1</BorderWidth>
              </Line>
              <GridLine>
               <Visibility>true</Visibility>
               <Extension/>
               <MajorLines>
                <Color>@2</Color>
                <Style>Solid</Style>
                <Width>1</Width>
               </MajorLines>
               <MajorTickGap>0</MajorTickGap>
               <MinorLines>
                <Color>@3</Color>
                <Style>Solid</Style>
                <Width>1</Width>
               </MinorLines>
               <MinorTickGap>0</MinorTickGap>
              </GridLine>
              <Title>
               <Visibility>true</Visibility>
               <Extension/>
               <Caption/>
               <Text>
                <FontFamily>Automatic</FontFamily>
                <Color>@16</Color>
                <Size>8</Size>
                <Style>Normal</Style>
                <HorizontalPosition>Default</HorizontalPosition>
                <VerticalPosition>Default</VerticalPosition>
                <Direction>Default</Direction>
               </Text>
               <Color>None</Color>
               <SecondaryColor>RGB(0,0,0)</SecondaryColor>
               <Pattern>None</Pattern>
               <Gradient>None</Gradient>
               <Texture>None</Texture>
               <TextureMode>Tile</TextureMode>
               <Transparency>0</Transparency>
               <BorderColor>None</BorderColor>
               <BorderStyle>Solid</BorderStyle>
               <BorderWidth>1</BorderWidth>
              </Title>
              <Unit>
               <Visibility>true</Visibility>
               <Extension/>
               <Caption/>
               <Text>
                <FontFamily>Automatic</FontFamily>
                <Color>@16</Color>
                <Size>8</Size>
                <Style>Normal</Style>
                <HorizontalPosition>Default</HorizontalPosition>
                <VerticalPosition>Default</VerticalPosition>
                <Direction>Default</Direction>
               </Text>
               <Color>None</Color>
               <SecondaryColor>RGB(0,0,0)</SecondaryColor>
               <Pattern>None</Pattern>
               <Gradient>None</Gradient>
               <Texture>None</Texture>
               <TextureMode>Tile</TextureMode>
               <Transparency>0</Transparency>
               <BorderColor>None</BorderColor>
               <BorderStyle>Solid</BorderStyle>
               <BorderWidth>1</BorderWidth>
              </Unit>
             </ValueAxis>
             <ValueAxis id="ValueAxis2">
              <Visibility>false</Visibility>
              <Extension/>
              <Minimum>0</Minimum>
              <MinimumCalculation>Automatic</MinimumCalculation>
              <Maximum>1</Maximum>
              <MaximumCalculation>Automatic</MaximumCalculation>
              <ScalingType>Linear</ScalingType>
              <Order>Ascending</Order>
              <Position>Secondary</Position>
              <Color>None</Color>
              <SecondaryColor>RGB(0,0,0)</SecondaryColor>
              <Pattern>None</Pattern>
              <Gradient>None</Gradient>
              <Texture>None</Texture>
              <TextureMode>Tile</TextureMode>
              <Transparency>0</Transparency>
              <BorderColor>None</BorderColor>
              <BorderStyle>Solid</BorderStyle>
              <BorderWidth>1</BorderWidth>
              <Line>
               <Visibility>true</Visibility>
               <Extension/>
               <Insets>2</Insets>
               <Format/>
               <Axis>
                <Color>@1</Color>
                <Style>Solid</Style>
                <Width>2</Width>
               </Axis>
               <MajorTickCalculation>AutomaticTicks</MajorTickCalculation>
               <NumberMajorTicks>6</NumberMajorTicks>
               <MajorTicks>
                <Color>@1</Color>
                <Style>Solid</Style>
                <Width>2</Width>
               </MajorTicks>
               <AutomaticMinorTicks>true</AutomaticMinorTicks>
               <NumberMinorTicks>4</NumberMinorTicks>
               <MinorTicks>
                <Color>@1</Color>
                <Style>Solid</Style>
                <Width>1</Width>
               </MinorTicks>
               <Text>
                <FontFamily>Automatic</FontFamily>
                <Color>@16</Color>
                <Size>9</Size>
                <Style>Normal</Style>
                <HorizontalPosition>Default</HorizontalPosition>
                <VerticalPosition>Default</VerticalPosition>
                <Direction>Default</Direction>
               </Text>
               <Color>None</Color>
               <SecondaryColor>RGB(0,0,0)</SecondaryColor>
               <Pattern>None</Pattern>
               <Gradient>None</Gradient>
               <Texture>None</Texture>
               <TextureMode>Tile</TextureMode>
               <Transparency>0</Transparency>
               <BorderColor>None</BorderColor>
               <BorderStyle>Solid</BorderStyle>
               <BorderWidth>1</BorderWidth>
              </Line>
              <GridLine>
               <Visibility>true</Visibility>
               <Extension/>
               <MajorLines>
                <Color>@2</Color>
                <Style>Solid</Style>
                <Width>1</Width>
               </MajorLines>
               <MajorTickGap>0</MajorTickGap>
               <MinorLines>
                <Color>@3</Color>
                <Style>Solid</Style>
                <Width>1</Width>
               </MinorLines>
               <MinorTickGap>0</MinorTickGap>
              </GridLine>
              <Title>
               <Visibility>true</Visibility>
               <Extension/>
               <Caption/>
               <Text>
                <FontFamily>Automatic</FontFamily>
                <Color>@16</Color>
                <Size>8</Size>
                <Style>Normal</Style>
                <HorizontalPosition>Default</HorizontalPosition>
                <VerticalPosition>Default</VerticalPosition>
                <Direction>Default</Direction>
               </Text>
               <Color>None</Color>
               <SecondaryColor>RGB(0,0,0)</SecondaryColor>
               <Pattern>None</Pattern>
               <Gradient>None</Gradient>
               <Texture>None</Texture>
               <TextureMode>Tile</TextureMode>
               <Transparency>0</Transparency>
               <BorderColor>None</BorderColor>
               <BorderStyle>Solid</BorderStyle>
               <BorderWidth>1</BorderWidth>
              </Title>
              <Unit>
               <Visibility>true</Visibility>
               <Extension/>
               <Caption/>
               <Text>
                <FontFamily>Automatic</FontFamily>
                <Color>@16</Color>
                <Size>8</Size>
                <Style>Normal</Style>
                <HorizontalPosition>Default</HorizontalPosition>
                <VerticalPosition>Default</VerticalPosition>
                <Direction>Default</Direction>
               </Text>
               <Color>None</Color>
               <SecondaryColor>RGB(0,0,0)</SecondaryColor>
               <Pattern>None</Pattern>
               <Gradient>None</Gradient>
               <Texture>None</Texture>
               <TextureMode>Tile</TextureMode>
               <Transparency>0</Transparency>
               <BorderColor>None</BorderColor>
               <BorderStyle>Solid</BorderStyle>
               <BorderWidth>1</BorderWidth>
              </Unit>
             </ValueAxis>
            </ChartAxes>
           </Elements>
           <Values>
            <Series>
             <Visibility>true</Visibility>
             <XAxisId>Primary</XAxisId>
             <YAxisId>Primary</YAxisId>
             <LineType>Direct</LineType>
             <ShowInLegend>Automatic</ShowInLegend>
             <ShowLabel>false</ShowLabel>
             <Format>$Label</Format>
             <LineColor>Automatic</LineColor>
             <LineStyle>Solid</LineStyle>
             <LineWidth>2</LineWidth>
             <Color>Automatic</Color>
             <SecondaryColor>RGB(0,0,0)</SecondaryColor>
             <Pattern>None</Pattern>
             <Gradient>None</Gradient>
             <Texture>None</Texture>
             <TextureMode>Tile</TextureMode>
             <Transparency>0</Transparency>
             <MarkerShape>Rectangle</MarkerShape>
             <MarkerSize>5</MarkerSize>
             <BorderColor>Automatic</BorderColor>
             <BorderStyle>Solid</BorderStyle>
             <BorderWidth>1</BorderWidth>
             <Text>
              <FontFamily>Automatic</FontFamily>
              <Color>@16</Color>
              <Size>8</Size>
              <Style>Normal</Style>
              <HorizontalPosition>Default</HorizontalPosition>
              <VerticalPosition>Default</VerticalPosition>
              <Direction>Default</Direction>
             </Text>
            </Series>
            <Series id="Series1">
             <Visibility>true</Visibility>
             <ChartType>Automatic</ChartType>
             <XAxisId>Primary</XAxisId>
             <YAxisId>Primary</YAxisId>
             <LineType>Direct</LineType>
             <ShowInLegend>Automatic</ShowInLegend>
             <ShowLabel>false</ShowLabel>
             <Format>$Label</Format>
             <LineColor>Automatic</LineColor>
             <LineStyle>Solid</LineStyle>
             <LineWidth>2</LineWidth>
             <Color>Automatic</Color>
             <SecondaryColor>RGB(0,0,0)</SecondaryColor>
             <Pattern>None</Pattern>
             <Gradient>None</Gradient>
             <Texture>None</Texture>
             <TextureMode>Tile</TextureMode>
             <Transparency>0</Transparency>
             <MarkerShape>Rectangle</MarkerShape>
             <MarkerSize>5</MarkerSize>
             <BorderColor>Automatic</BorderColor>
             <BorderStyle>Solid</BorderStyle>
             <BorderWidth>1</BorderWidth>
             <Text>
              <FontFamily>Automatic</FontFamily>
              <Color>@16</Color>
              <Size>8</Size>
              <Style>Normal</Style>
              <HorizontalPosition>Default</HorizontalPosition>
              <VerticalPosition>Default</VerticalPosition>
              <Direction>Default</Direction>
             </Text>
            </Series>
            <Series id="Series2">
             <Visibility>true</Visibility>
             <ChartType>Automatic</ChartType>
             <XAxisId>Primary</XAxisId>
             <YAxisId>Primary</YAxisId>
             <LineType>Direct</LineType>
             <ShowInLegend>Automatic</ShowInLegend>
             <ShowLabel>false</ShowLabel>
             <Format>$Label</Format>
             <LineColor>Automatic</LineColor>
             <LineStyle>Solid</LineStyle>
             <LineWidth>2</LineWidth>
             <Color>Automatic</Color>
             <SecondaryColor>RGB(0,0,0)</SecondaryColor>
             <Pattern>None</Pattern>
             <Gradient>None</Gradient>
             <Texture>None</Texture>
             <TextureMode>Tile</TextureMode>
             <Transparency>0</Transparency>
             <MarkerShape>Rectangle</MarkerShape>
             <MarkerSize>5</MarkerSize>
             <BorderColor>Automatic</BorderColor>
             <BorderStyle>Solid</BorderStyle>
             <BorderWidth>1</BorderWidth>
             <Text>
              <FontFamily>Automatic</FontFamily>
              <Color>@16</Color>
              <Size>8</Size>
              <Style>Normal</Style>
              <HorizontalPosition>Default</HorizontalPosition>
              <VerticalPosition>Default</VerticalPosition>
              <Direction>Default</Direction>
             </Text>
            </Series>
            <Series id="Series3">
             <Visibility>true</Visibility>
             <ChartType>Automatic</ChartType>
             <XAxisId>Primary</XAxisId>
             <YAxisId>Primary</YAxisId>
             <LineType>Direct</LineType>
             <ShowInLegend>Automatic</ShowInLegend>
             <ShowLabel>false</ShowLabel>
             <Format>$Label</Format>
             <LineColor>Automatic</LineColor>
             <LineStyle>Solid</LineStyle>
             <LineWidth>2</LineWidth>
             <Color>Automatic</Color>
             <SecondaryColor>RGB(0,0,0)</SecondaryColor>
             <Pattern>None</Pattern>
             <Gradient>None</Gradient>
             <Texture>None</Texture>
             <TextureMode>Tile</TextureMode>
             <Transparency>0</Transparency>
             <MarkerShape>Rectangle</MarkerShape>
             <MarkerSize>5</MarkerSize>
             <BorderColor>Automatic</BorderColor>
             <BorderStyle>Solid</BorderStyle>
             <BorderWidth>1</BorderWidth>
             <Text>
              <FontFamily>Automatic</FontFamily>
              <Color>@16</Color>
              <Size>8</Size>
              <Style>Normal</Style>
              <HorizontalPosition>Default</HorizontalPosition>
              <VerticalPosition>Default</VerticalPosition>
              <Direction>Default</Direction>
             </Text>
            </Series>
            <Series id="Series4">
             <Visibility>true</Visibility>
             <ChartType>Automatic</ChartType>
             <XAxisId>Primary</XAxisId>
             <YAxisId>Primary</YAxisId>
             <LineType>Direct</LineType>
             <ShowInLegend>Automatic</ShowInLegend>
             <ShowLabel>false</ShowLabel>
             <Format>$Label</Format>
             <LineColor>Automatic</LineColor>
             <LineStyle>Solid</LineStyle>
             <LineWidth>2</LineWidth>
             <Color>Automatic</Color>
             <SecondaryColor>RGB(0,0,0)</SecondaryColor>
             <Pattern>None</Pattern>
             <Gradient>None</Gradient>
             <Texture>None</Texture>
             <TextureMode>Tile</TextureMode>
             <Transparency>0</Transparency>
             <MarkerShape>Rectangle</MarkerShape>
             <MarkerSize>5</MarkerSize>
             <BorderColor>Automatic</BorderColor>
             <BorderStyle>Solid</BorderStyle>
             <BorderWidth>1</BorderWidth>
             <Text>
              <FontFamily>Automatic</FontFamily>
              <Color>@16</Color>
              <Size>8</Size>
              <Style>Normal</Style>
              <HorizontalPosition>Default</HorizontalPosition>
              <VerticalPosition>Default</VerticalPosition>
              <Direction>Default</Direction>
             </Text>
            </Series>
           </Values>
           <Images/>
          </SAPChartCustomizing>
        </graphics:nativexml>
      </graphics:custom>
    </graphics:chart>
    Cheers
    Graham Robbo

  • Can't upgrade from 9.04 without graphical problems maybe from ATIextension?

    Hello,
    I figured before I make the leap into purchasing a new machine (Mac or PC-still not sure) I'd post a reoccuring problem with my old Power Mac G4. I have tried on a number of occasions to upgrade from the 9.04 preinstalled system to 9.1 and then even higher. 9.2.1 and 9.2.2 to no success. I'll explain. Here are my machine specs:
    ---Power Mac G4
    ---400mhz (I believe it is an AGP Graphic not a PCI)
    ---512mb ram
    ---10gb hd, but i have a 120gb wd internal in the upper brack spot right above the 10g. I've been using the 120 gb split in 2 partitions as my 9.04 startup disk.
    ---external zip 250 usb attached.
    ---LaCie 52x cd burner attached via firewire
    Everytime I try to run the update (and I have downloaded these more than once, thinking maybe it was corrupt on download) it leaves trails on my screen. For instance, when I scroll up and down in windows using the arrows all the text corrupts to the point you can't read it. If you move the windows around the screen that leaves trails and corrupts as well. I took some time and I think narrowed it down (maybe). If I remove the NEW ATI graphics extensions from the extensions folder (the ones from 9.1 install and replace them with the 9.04 (ones from my startup disk). The problem vanishes. So in a sense I'm running 9.1 with 9.04 ATI extensions. I did what the read me says for installing the update and I believe the firmware was up to date where it called for.
    The overall hope was to maybe someday put OS X on this G4, which if I remeber correctly you're suppose to be able to do on a mac this old. But I'm having no luck what so ever.
    Any help would be appreciated. Maybe I can keep this machine running a bit longer before having to invest in another one.
    Thanks again.

    Hi, Creative -
    One thing that comes to mind is that OS 9 (at least 9.1 and later, maybe earlier, too) installs two ATI extensions when only one is needed, the one specific to the kind of graphics card in the machine. Having both active can cause some problems.
    Specifically, the two extensions are named -
        ATI Rage 128 3D Accelerator
        ATI Radeon 3D Accelerator
    Check in Apple System Profiler (on ASP's Devices & Volumes page, click the info triangles on the bus labelled PCI) to determine which card you have, Rage or Radeon, and then disable (or remove) the extension for the other kind of card.

  • Insta Graphics

    Hi.
    I have Dreamweaver CS3 and Fireworks MX2004 on my computer. I
    downloaded the Insta Graphics extension, and get an error:
    ReferenceError: done is not defined.
    How can I get this to work? Will this extension not work with
    CS3?
    Thanks,
    Steven

    I would imagine not. The InstaGraphics extensions were
    released between
    2001 and 2003 .. years before DW CS3 was created .. the whole
    extension
    manager has been rewritten since then.
    Nancy Gill
    Adobe Community Expert
    Author: Dreamweaver 8 e-book for the DMX Zone
    Co-Author: Dreamweaver MX: Instant Troubleshooter (August,
    2003)
    Technical Editor: Dreamweaver CS3: The Missing Manual,
    DMX 2004: The Complete Reference, DMX 2004: A Beginner's
    Guide
    Mastering Macromedia Contribute
    Technical Reviewer: Dynamic Dreamweaver MX/DMX: Advanced PHP
    Web Development
    "Steven Nestler" <[email protected]> wrote
    in message
    news:fhft23$mfe$[email protected]..
    > Hi.
    > I have Dreamweaver CS3 and Fireworks MX2004 on my
    computer. I downloaded
    > the
    > Insta Graphics extension, and get an error:
    ReferenceError: done is not
    > defined.
    > How can I get this to work? Will this extension not work
    with CS3?
    > Thanks,
    > Steven
    >

  • Replace graphics card on 27" iMac

    Hello
    The graphics card on my Late 2009 27" iMac has gone puff!
    I've got yellow vertical lines on the screen and the only way I can get the machine to start is by removing the graphics extensions from the library... it's a pain in the but as it makes the machine unusable in it's current state - But I'm cool about it all as it still works perfectly well as a monitor for my MacBookPro
    Anyway, all that aside, can anyone tell me if the cards are replaceable or are the soldered onto the mother board and, in short, I'm buggered!!!
    I've already replaced the hard drive, so I'm happy enough to dig inside and change the thing if I can, I just did;t want to start only to find that it's soldered on!
    If it can be replaced can any one recommend a good retailer in the UK that I can get one from?
    Thank you in advance!
    if it helps the machines serial number is - VW*****5RU
    Regards
    Silver!
    <Edited By Host>

    The Radeon graphics card in the late 2009 quad cores can not only be replaced, it can be upgraded! https://www.ifixit.com/Guide/iMac+Intel+27-Inch+EMC+2309+or+2374+Graphics+Card+R eplacement/9553
    You just gotta be able to find one!

Maybe you are looking for

  • File Upload.. Strange Problem..

    im trying to read file data and print it in the browser. I dont want to save the file. just to read the uploaded file which is TAB delimited.. First time it works fine. but If I browse back button and reload another file and submit. I am getting cont

  • Sending a Rich Text (RTF) email using the Java Mail API

    Folks I've spent about half a day trying to find out how to do this, now I'm not even convinced you can. Here's the problem... I currently use JasperReports to generate an HTML report, this I then send as the body of a Multipart email. Because there

  • I want to edit properties of the interface windows opened while "Open File", "Save Page As" and interface opened during Downloading of any file.

    I am doing a small project on dedicated web client where in user automatically logs in non-root user and Firefox automatically starts. I am using Fedora 14 kernel 2.6.35.12-88.fc14.i686 and Firefox 3.6.16. I have installed only Gnome in my computer w

  • Itunes does not recognize IPAD

    I have a new IPAD2 and when I connect it to my Home PC Itunes does not recognize it. It is recognized on my work PC. How can I fix?

  • Generate a Report

    hi Friends, i have three table 1- CREATE TABLE "TRANSACTION_DETAILS" ( "S_NO" NUMBER, "BILL_NO" NUMBER, "BILL_DATE" DATE, "PARTY_NAME" VARCHAR2(1000), "VEHICLE_NO" VARCHAR2(20), "ITEM_NAME" VARCHAR2(500), "DESCRIPTION" VARCHAR2(4000), "QTY" NUMBER, "