Dynamic chart scale

Hi!
I'm working on a Line chart in Desktop Publisher, with this data:
<LocalGridData colCount="{count(xdoxslt:group(.//ROW, 'saw_2'))}" rowCount="{count(xdoxslt:group(.//ROW, 'saw_0'))}">
<DataValues>
<xsl:for-each-group xmlns:xsl="http://www.w3.org/1999/XSL/Transform" select=".//ROW" group-by="saw_0">
<RowData>
<xsl:for-each-group select="current-group()" group-by="saw_2">
<Cell>
<xsl:value-of select="sum(current-group()/saw_4)"/>
</Cell>
</xsl:for-each-group>
</RowData>
</xsl:for-each-group>
</DataValues>
</LocalGridData>
How can I dynamically set the scale of the Y1 axis (with the lowest value - 100, for example)?
If I set the axisMinAutoScaled="true" it starts from 0 and it's not the scale I want.
Thanks so!
DrPlexi

Hi Tim!
The problem is that I have some NaN in my data, and maybe that's why my axis scale starts from 0.
Here's an example of my data:
series1: 1,822,475 1,586,400 2,493,331 2,095,273 2,049,296
series2: 1,818,471 1,706,074 2,574,133 2,042,269 1,982,151
series3: 2,073,949 1,721,527 2,493,331 NaN NaN
The automatic scale is from 0 to 2,800K.
I'd like to have a scale from 1,200K to 2,800K: I want to take the lowest value (1,706,074) and set the scale at a point immediately below in the grid.
Is it possible to dinamically set a property in the xml linked to the lowest data value?
Thanks so!
DrPlexi

Similar Messages

  • Oracle bi publisher PDF output changes chart scale

    I have created report which has charts - bar charts
    I able to run report in various formats including interactive, html, excel, powerpoint, pdf etc.
    Now the chart scale on all other format reports showing perfect e.g. 3.0 height on y axis. So its basically adjusting as the max height (value) for y axis. But for PDF output no matter weather it has less than 3.0 for all values in that page, but it shows height 4.0 (instead of 3.0 max as other output formats are showing). So its not adjusting dynamically as other output formats.
    How can I get PDF document display same as other output formats? Because if all values less than 0.5 height, still PDF output showing height as 4.0 , so graph is not visible or almost touching to the ground with straight line.
    Please help and appreciate your help.
    Thanks

    Has there been any update on this? I am running into the same problem, only it is only affecting one of my charts. The maximum keeps on dynamically setting to 4.0, though I have also seen it set its maximum to 5 and minimum to -5 given certain parameters.
    I have three other charts on the same report: one with a dynamic maximum that sets correctly, and two that have a static maximum. The problem is only when I view it as a PDF.

  • InDesign CS5 -- dynamic charting workflow?

    Hi,
    I searched the forum but I feel like I haven't quite found my answer.  Basically, my organization, in the past, has produced a dynamic 'demographic fact sheet' document for communities in the Denver, Colorado USA region. (example: http://www.drcog.org/communityprofiles/PDFs/ArapahoeCounty.pdf)  This was previously done with an Access database and a mail merge in Microsoft Publisher (I know, I know), but we would like to bring this process into CS5, since our graphic designers work in InDesign CS5 and would like to redesign the look and feel of this document while automating this workflow so that it isn't as time-consuming as manually copying and pasting charts for each community.
    What kind of workflow would most easily produce a document like this?  It is essentially a mixture of charts and graphs along with some dynamic text.  I've read about Data Merge and XML, but I'm not sure about the charting and graph part of this -- most of the information I've found online talks about using Illustrator to make dynamic charts, but I'm not quite sure how to put everything together.  Basically, I'd like the process to work like it did with Publisher and Access, if possible.  We basically set up a template and then based on the data, Publisher generated a document that showed the appropriate data  (and correct values in graphs/charts) for every community.  The graphic designers have the CS5 Design Premium package, so they do have access to Illustrator and other Adobe apps if these are necessary.
    The data is stored in an enterprise database now (not Access), so extracting it to a CSV or other type of format is not a problem.
    InDesign is not my area of expertise, but I want to help with the process as much as I can.
    Thank you so much for any insight or recommendations!
    Jonathan

    This type of project would be too data intensive for Indesign. ID's data merge and ID's xml capabilities would not be sufficient either. Not to say that Indesign could not be used to create content, but the data portion would have to be driven with a 3rd party solution, something like XMPie.This type of solution typically is postioned at the print end and ties all the components: content created from ID, variable image, variable text, data export file to create custom chart, etc. to produce a finished customized print piece.

  • CHART BUILDER ERROR WHEN TRYING TO GENERATE DYNAMIC CHARTS ON A JSP PAGE

    I'm working with J Develop 9.03 on Windows 2000 Professional Edition.
    I'm using the JSP demo files provided with Oracle Chart Builder to generate
    dynamic charts. The user specifies the query parameters, including the date
    range and the query results are returned by means of a line chart (with date on
    the x axis and values on the y axis).
    When trying to compile the project I get the following error messages:
    Error(165,2): class FileOutputStream not found in class _graph
    Error(170,5): class File not found in class _graph
    Error(176,4): exception java.io.IOException is never thrown in the
    corresponding try block
    I checked to see that the chartbuilder library (chartbuilder.jar) files are
    loaded into the project library. It's unusual that the class is not being
    found. I don't understand why. I developed my project using the following steps:
    1. Unzipped Chart Builder installation files into c:\Oraclechartbuilder
    2. Loaded chartbuilder class library
    c:\Oraclechartbuilder\chartbuilder\lib\chartbuilder.jar into J Developer class
    path (by selecting <Project Settings> <Paths> and browsing to the
    chartbuilder.jar file).
    3. Created a new JSP page in J Developer (graph.jsp)
    4. Copied JSP code syntax from the Word Pad demo file and pasted into graph.jsp
    5. Changed the DB connection parameters and static directory location on the
    JSP page.
    6. Compiled the project and received the above errors.
    I would like to know why the classes are not being found and how to fix the problem. Thanks, Jaafar

    Hi mshah101,
    This can happen if the applet is compiled using an higher version of java and the browser is pointing to an older version (even if minor version number is higher)

  • Dynamic charting in J2ME using SVG - based on SQL query from a web server

    Hi
    I am creating a J2ME application which needs to generate dynamic charts for the user.
    The data for generating the charts is stored on a web server. In order to have minimal computations on the mobile device, I want to generate the charts on the web server itself.
    I have written a code which generates svg (svg tiny) charts dynamically on a web server based on sql queries on a database . Now I want a J2ME client app to be able to retrieve this data through a web service.
    Can someone guide me as to how to return svg files from a java web service.
    Any help would be greatly appreciated.
    Regards
    Sparsh

    Hi
    Actually, I am developing my application using Netbeans 6. In order to connect to my web service , I am using the J2ME client to web service as the type of my project and that uses the above mentioned API's.
    My question is how do I enable my web service to return a SVG file , and then how do I retrieve it in the J2ME client. Any example application that anyone knows online would be really helpful

  • [DW + PHP + MySQL] is there an extension to create dynamic charts?

    Hi all
    is there an extension for DW (I have DW 8) that let you
    create dynamic
    chart based on a mysql database?
    Once upon a time there was an interakt extension that was
    created just
    for this kind of applications, but now it is discontinued
    (thanks
    adobe) and I can't even buy it.
    Is there an alternative?
    Thanks in advance.
    tony

    Check
    http://www.webassist.com. They
    have one.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "sweetman" <[email protected]> wrote in message
    news:[email protected]..
    > Hi all
    >
    > is there an extension for DW (I have DW 8) that let you
    create dynamic
    > chart based on a mysql database?
    >
    > Once upon a time there was an interakt extension that
    was created just
    > for this kind of applications, but now it is
    discontinued (thanks
    > adobe) and I can't even buy it.
    >
    > Is there an alternative?
    >
    > Thanks in advance.
    >
    > tony

  • Looking for the best dynamic chart utility

    Hi-
    I'm creating a piece of software which extensively uses dynamic charts. The charts I'm using need to be updated atleast twice a second with over 10000 points on them. I've tried using jfreechart but its just too slow. I'm running a 900mhz c3 processor w/ 256 megs of ram on slackware linux 9.1. Does anyone know of a faster dynamic chart utility?
    -thanks

    Just a thought.
    I make svg 'templates' holding all the static parts of the graph and then at run time add to the DOM for example at a polyline representing (x,y) data. Extremely light weight.
    This is also in preparation for sending DOMFrags across the net to update a dynamic part of a display running on a client.

  • Dynamic chart using SharePoint list data

    Is it possible to create dynamic chart from SharePoint List data using OOB.
    I have column Status [ choice - Pending , Submitted, Resolved ] . I want to genrate graph[Pie or Bar] show number of items in each status
    V Jean

    Thanks Lakshmanan,
    But in my environment - chart webpart is not available [ restricted].
    Have tried below using script.. Hope might help for other
    https://www.nothingbutsharepoint.com/sites/eusp/Pages/finally-dynamic-charting-in-wss-no-code-required.aspx
    V Jean

  • Creating dynamic rating scale forms.

    Hi everyone!
    I was wondering if is possible to create dynamic rating scale forms.
    For example:
    I have a multiple choice field.
    Red
    Green
    Blue
    Yellow
    After this field I have a rating scale form.
    I'd like to create this rating scale only with the previous selected options in the multiple choice field.
    For example if I select only Red and Green, the rating scale form will have only two questions (Red and Green) and not the other choices.
    If I select Red, Green ane Blue the rating scale form will have three questions (Red, Green and Blue) and not the other choices.
    Is this possible?
    I have a Basic account if it could change something.
    Thank you for the attention, have a nice day!
    Andrea
    Message was edited by: AndreaM7890

    Hi,
    Dynamic rating scale fields as you described is not something we currently support but you can add or vote on feature ideas:
    http://forums.adobe.com/community/formscentral?view=idea
    If you need to add a new idea click "Create an idea" under "Actions" in the top right.
    As a workaround you could manually create multiple rating scale fields associated with your specific choices and use skip logic rules to show the corresponding rating scale field. For example, a rating scale field associated with choiceA, another one associated with choiceB ..etc.
    Thanks,
    Lucia

  • Create a number of Dynamic Charts based on "Work Centre" in BEx Workbook?

    Hi all,
    We are on BI 7.0
    I am trying to create a number of dynamic charts in a BEx workbook based on the different values of "Work Centre" so that each unique work centre has its own chart.
    All titles and descriptions would have to be dynamic based on the work centre.
    I.e If there are 20 work centres we would need 20 charts. 30 work centres 30 charts etc.
    Also to add a little more complexity we need to only show a chart if a key figure (Demand Hrs) has a value greater than ZERO.
    Would be very grateful and would assign generous points for a solution.
    This needs to be done in a BEx workbook.
    Thanks in advance,
    Steve Jones
    BI Consultant

    Hello,
    The only possible way you can have a work around is with help of VB macros.
    The logic would be simple: Have a VB Script to check the varying work centres from the report. Then for each work centre check for demand hrs greater than zero. Then you can go with a for or while loop to create the graphs as per needed.
    Take help of VB Script expert for this if needed. Also if you want to work around for yourself you can check the record marco functionality of the excel. VB Script Macro is your only way out and as in your case youu2019re using workbook, this satisfies your need.
    Regards,
    Shashank

  • Is it possible to add Dynamic Charts into Layout

    Hi all,
    I got a requirement to add dynamic charts when generating the PDF forms .
    The flow is a form is send by mail to a user.
    He populated it and send it back by mail to SAP .
    When SAP receive the mail, data is update in the backend and another forms have to be generat and send by mail.
    In the second form i need to create charts in order to have a more user friendly representation of data .
    I look everywhere but i do't find something to do it in background .
    Does somebody can help me ?
    Best regards

    Problem cancel

  • Changing dynamically chart in graphic Builder

    Is it possible to change chart dynamically in graphic builder?
    like pie chart into bar chart etc

    Dear Diana,
    unfortunately this is not possible.
    The chart title is build from the planning book name + the Show characteristic in the shuffler (+ available nav. attributes of the Show char).                                                           
    The functionality you requested doesn't exist in standard.            
    Regards,
    Tibor

  • Chart scale error

    I am coding a logging system in labview 7.1
    On the front panel I have several charts. If I try to change the x-scale by typing new end of scale value while running - labview crashes (LV7.1 has encountered an error, please tell Microsoft...)
    If I change the x-scale when the program is not running - labview sometimes crashes.
    The graphs are indicators OWGraph, Wave Height, Temperatures, Flow and in the lower loop, pressure difference.
    The data comes from on demand aquiring from a pci6120 card which runs in one loop - the displaying is handled in another loop (on top in posted code image) except from one chart which needs quicker updates.
    Attachments:
    code1.gif ‏158 KB
    code2.gif ‏51 KB

    I found the sinner, it cant handle the offset. I use an offset of the number of seconds since 1904... to display the current time on the x-axis. If I plot two or more plots in the chart and use property node-> x-axis.offset it crashes every time I try to manually change the x-axis. I used most of the day figuring this out and the rest of the day to find a workaround. Since I dont use the date - I ended up calculating the smallest number of seconds to put into offset so that the time got right. Because if you wire a constant (any size) into the property node it is no problem - if you wire a time stamp converted to double - it crashes. When I use a probe on the value, it displays it in scientific mode (3,2 e+9) I wouldnt think this is any different than a constant written 3200000000 - but it is the only explanation I have right now - and I am not using one more second to find out - cause my workaround works...
    In the code attached - the timestamp is input to a chart with a single plot, that however causes no problems...
    Attachments:
    code3.gif ‏19 KB

  • Dynamic charts in Bex WAD

    Hi Experts.
    My requirements are as follows. I want to include max number of 5 charts in a template. At the moment I have 20 different chart queries (this number will grow) to choose between, chart web items are basically the same, only data provider is different.
    A query will tell me what charts (i.e. chart queries) that soul be included, and I only want to build those charts.
    It is not a good solution to include all the 20 +++ charts in the template and just unhide the ones I want to show as this will be too much administration as the number of charts grow.
    Are there no other way, like programming an API somewhere, like we can program the reporting table interface?
    Best regards,
    Nina

    You can use the parameter ITEM_ID to dynamically assign a chart id to the web item.
    A sample implementation can be seen in the 0ANALYZER template include for charts.
    Thanks.

  • Invert Chart Scale without set Flipped or Properties Window

    There are a way to Invert Scale on Chart Plot without set the property Flipped programmatically or set the option inverted on properties window?
    I was created a executable program in labview and in any part of code exists a property Flipped and the properties window are not acessible. But one program user
    make the graph sliding from the right to the left, fliped.
    The are any combination of actions with mouse and keyboard to make the scale inverted? There are any combination of property values to do this?
    Solved!
    Go to Solution.

    I know how to invert the scale but I do not want to invert the scale.
    Nowhere in my code I am inverting the scale. Neither the properties window is accessible to the user so that he can do.
    But some user of my program could inadvertently inverting the scale and I can not understand how he did it.

Maybe you are looking for