Dynamic Charting question - On maximum rows and omiy label interval values

Hi,
I was wondering if it was possible to define a application variable and then reference it from within a Chart series definition.
I frequenctly need to go in and exapnd the maximum number of rows for my chart series definitions to a value greater than
15. And, if I have a Chart with multiple series it seems to make sense that they all have the same value. This made me think
of trying to use some sort of variable. I tried using a hidden page item. However, Apex seemed to want a static numerical value
and so I needed to just hard code the value for now. Has anyone had success with somethin else?
Another issue I have is with the label display. When ploting time series data that allows the user to define a date range its hard
to know up front how to set the Omit Label Interval. An ida solution would be to define a number of desired points that the chart
can handle and dynamically assign omit interval based on some sort of formula. Again, the static value assignment makes sense for some
date inputs and not so much for others.
Thanks for any suggestions!

Thanks for your reply.
Not sure how to change the Chart Type to Custom XML
For example, for one of my charts under Chart Settings the Chart Type is set as 2D Line.
I don't see Custom XML as an option on that drop down.
I do see some XML code under Region Definition | Source. Is that what you are referring to?
Thanks!

Similar Messages

  • Hiding row and column labels

    You can format a table so that it looks just like a form — e.g. give it a background color, shadow, etc. Looks very nice. However, whenever you click on a cell, the row and column the row and column labels suddenly appear, and the visual illusion of a form is lost. Is there any way to prevent the row and column labels from appearing short of locking the table which also mades it uneditable? If not, I think this would be a useful feature.

    swehba wrote:
    You can format a table so that it looks just like a form — e.g. give it a background color, shadow, etc. Looks very nice. However, whenever you click on a cell, the row and column the row and column labels suddenly appear, and the visual illusion of a form is lost. Is there any way to prevent the row and column labels from appearing short of locking the table which also mades it uneditable?
    Feature unavailable.
    If not, I think this would be a useful feature.
    Here you are speaking to end users like you so your thoughts are useless.
    _Go to "Provide Numbers Feedback" in the "Numbers" menu_, describe what you wish.
    Then, cross your fingers, and wait _at least_ for iWork'11
    Yvan KOENIG (VALLAURIS, France) mardi 12 avril 2011 12:28:32

  • Add dynamic buttons to each report row and bind the row data to buttons specific to that row

    I have a page with a form at the top and a report at the bottom which is tied to a table. I need to add a pair of buttons for each row of the table and add dynamic actions for these buttons. I need to submit the data corresponding to the row to a REST service and refresh the table/row. I know it is possible to add ajax call and refresh the table after the response is received. But I am not sure how I can dynamically include a pair of buttons on each row and have the access the data corresponding to the record when a particular button is clicked. I was not able to find such a feature using the help page. Can you please let me know if this is possible. Thanks in advance.
    Below is the representation of how I need the page to look like.
    Col 1
    Col 2
    Col 3
    data 1
    data 21
    data 31
    Button 1
    Button 2
    data 2
    data 22
    data 32
    Button 1
    Button 2
    data 3
    data 23
    data 33
    Button 1
    Button 2
    data 4
    data 24
    data 34
    Button 1
    Button 2
    I should be able to access data 1, data21, data 31 from button 11 and button21 etc.

    select data1,
              data2,
              data3,
              null button1,
              null button2,
              rowid r_id
    from .....
    If you edit the column for button1 and navigate to the Column Formatting region you can create your button here, several different ways.  You will need to play around with how you prefer.  See below:
    <input class="button1" type="button" id="#R_ID#" value="label for the button" /> or <button id="#R_ID#">label for button</button> or you could use <a> and apply css of your theme.
    You also create both buttons in a single column.  From here you can reference any of the columns from your select by using the #COLUNMNAME# format (as I did with R_ID).
    You will next need to something similar for all columns you want to be able to grab when you click the buttons.  See below:
    --- This would be for data1 column
    <span id="D1-#R_ID#">#DATA1#</span>
    You would do these for each column that you want access to when button clicked as mentioned above.  You could bypass this step and use jquery to traverse the DOM using .closest() and .find() and give each column a distinct class.  Is is your preference.
    You would then create a dynamic action triggered when .button1 is clicked.  Now that you have that object you can get the id of the triggering object which would be your r_id and from there you can access all your individual data points(all this done in a javascript in the dynamic action) and assign to hidden items on your page.  The next step of that dynamic action you could execute pl/sql and pass those in page items.
    Hope that all makes sense.
    David
    Message was edited by: DLittle
    Just as a bit of clarification:  the r_id column does not have to be rowid, but it does need to be unique for each row return.  You could use your primary key or rownum.  Whatever works for your scenario.

  • Search row and column for return value

    Dear Sir/Madam,
                               I have a problem for searching spreadsheet and hope you can help me out a bit.  Im pretty new to Labview and Im currently using Labview 8.0.  My task is to search the spreadsheet I have attached in row and column-wise, then return the corresponding value out.  I had an attempt in doing this as you can see from the vi that i have attached.  I try inputting the 'read from measurement file' into an array and using delete, index and search array I will be able to find the index value for the relevant row and column that i searched for by inputting them into an index array with the orginal array from the 'read from measurement file'.
                              So ultimately, when i enter a row value of 0.5 and a column value of 0.3, my output will be 1.688.
                              I can't see any mistakes in my logic but I getting really strange results, like I can read my data has been entered into an array but when i try deleting the first column and put it into another array, the orginal array with nothing deleted is outputted hence making my search to give out -1 value. So could you take a look please and give me any suggestion that can solve my problem or enhance the code a bit.  Thank you for your time.
    Best Regards,
    Coato
    P.s for some reason i can't attached the .lvm file of my data hence i have attached the excel version but i think you need to convert it back to .lvm for the 'read from measurement file' function to work.
    Attachments:
    Backswing compensation.csv ‏10 KB
    Backswing comnpensation2.vi ‏109 KB

    Your VI makes absolutely no sense to me, but maybe I don't understand what you are trying to do.
    You seem to have dynamic data with 6 signals and 48 points/channel. Now you reshape this into an array of dynamic data with 4x13 elements from which you slice out one row or column, resp. "delete from array" is NOT the correct tool to do this, use "Index array" with one index unwired to get a row or column as 1D array.
    So you end up with two 1D arrays of dynamic data that you search for DBL. It is difficult to understand how you want to search for an array element that corresponds to a scalar DBL value of 0.1. Your array elements are NOT DBLs but dynamic data, each containing many signals!
    There are two elements on all your data that are "3", the rest are zero. You will never find anything that is 0.1.
    Maybe you can convert your original dynamic data to a 2D array with "rows are signals" using "convert from dynamic data", then operate on the 2D array.
    Coato wrote:
                              So ultimately, when i enter a row value of 0.5 and a column value of 0.3, my output will be 1.688.
    Sorry, Please explain.
    Please make a VI containing a simple 2D aray as diagram constant that contains e.g. 5x5 typical values. Let us know what kind of result you expect from your algorithm..
    LabVIEW Champion . Do more with less code and in less time .

  • Localization of CrossTab row and column label Crystal Report RPT file

    Dear all,
    Does anyone know how to support multiple locale texts (English and French) in CrossTab Row and Column Header labels and grand total labels? Is there a way to parameterize text objects CrossTab in one single Crystal Report RPT file to use some sort of locale resource file containing text string for different languages based on the users of RPT at runtime? The idea is to use one single RPT file to generate report for different locale text for CrossTab Row and Column abels and grand total labels  instead of creating RPT files per locale?

    Hi,
    Does the database have a column that identifies the language? If it does, then you could create two separate cross-tabs and place them in different sections and conditionally suppress the section depending on the language from the database.
    That's the only thing that can be done in my opinion.
    -Abhilash

  • How to dynamically calculate sub-total of rows and display when member changes in Hyperion Financial Report

    Requirement - I am writing a very  large reports from Hyperion Performance Cost management.
    Account is in Row. We are taking all level0 members in Row. In columns we are taking Entity,Cost Centers
    Current Structure of the Report
    41100  Entity1 Cost center1 20
    41100  Entity1 Cost center2 30
    41100  Entity1 Cost cenetr3 40
    41200  Entity 10 Cost center1 200
    41200  Entity 10 Cost center2 210
    41200  Entity 10 Cost center3 200
                 Grand Total  1000 ( For Example)
    User wants to dynamically add a sub total into the report when account (41200,41100) changes i.e. This is because , its a very large report of 100's of pages,
    Future State
    41100  Entity1 Cost center1 20
    41100  Entity1 Cost center2 30
    41100  Entity1 Cost cenetr3 40
    sub total 1 --------------------------90 ( This line should be automatically inserted here)
    41200  Entity 10 Cost center1 200
    41200  Entity 10 Cost center2 210
    41200  Entity 10 Cost center3 200
    sub total (n) -------------------------610  ( This line should be automatically inserted here)
                 Grand Total  1000 ( For Example)

    Hello,
    maybe re-consider this approach and say no to the users who request this. Try to think about other solutions.
    Sometimes a "no" helps them more than doing what they ask.
    You might export the whole in Excel. Then they can make their subtotals at every line.
    Regards,
    Philip.

  • Noob questions about front row and back up...

    Dear all,
    Please can you assist with the following for a proud new mac owner?
    1) Why do some songs/albums not play in front row but work in itunes?
    2) I have an external hard drive, iomega 500gb, which is very noisy. So i keep it switched off from the back. Can time machine still back up or does the external HDD have to be switched on?
    Many thanks...

    Hi Fireball Dragon
    1. I don't have a definite answer for you, but it sounds like a problem with your iTunes Library or the way you Imported your music into it. Go to: *Applications > Utilities > Disk Utility* and run *Disk Utility Repair Permissions.*
    Also how are you selecting Music to play in Front Row, Shuffle or by Albums, Artist, Songs?
    2. No Time Machine will not backup with the External HD turned off, but it will resume backup as soon as it is switched on mounted. I personally don't run Time Machine backups every hour, I only switch it on for a few backups every day or after adding important files.
    Dennis

  • Question about front row and screen saver

    I just got my Imac 20 inch screen computer. I've done every thing the directions say about starting my screen saver but it just wont start. Also in my itunes music library, that little remote control that lets your music play automatically while showing the album covers for the songs that are playing. Thats called front row. I see in preferences in front row that it says my screen saver is on but still it wont show my screen saver of which I chose from the apple menu. And front row only plays a few of my songs from my itunes library. Most of the songs, when I am trying to let them play automatically from the remote, will not play. When I try to click on a song from the remote that is not playing I get this sighn that says "front row cannot play this song. Return to Menu". All the songs in my Itunes library play fine when playing them directly from the library. It just seems like this "front row" thing is not working properly. Any one got any suggestions?
    Thanks

    I think I can verify that the screensaver should NOT be activating during a (DVD at least) movie; I've watched several without any screensaver intervention. Apple's been smart enough to disable the screensaver during DVD playback for quite some time - my brother was surprised when his Windows box at work interrupted his DVD with the screensaver.
    However, the screensaver (and password) did activate during FR iTunes play today. That was fine until I needed to pause playback and take a phone call. Can't pause without entering password, so I just closed the MBP's lid to put it to sleep. Annoying. Clearly, there are folks who'd prefer the screensaver never start when FR is active. Other security-minded folks might feel differently; fine, give us a preference pane.
    As my brother likes to say, whenever faced with the rare Apple problem, "Fix it Steve!" (Neither of us bother with "Fix it Bill," we know that's futile.)
    MacBook Pro 15" Mac OS X (10.4.7)
    MacBook Pro 15"   Mac OS X (10.4.7)  

  • Charting Question : How to manipulate Legend's labels

    I'm using a PieChart Control that uses dynamic data.
    <mx:PieChart id="gendersChart">
         <mx:series>
              <mx:PieSeries nameField="gender" field="count"/>                   
         </mx:series>                   
    </mx:PieChart>
    <mx:Legend dataProvider="{gendersChart}">
    For example, nameField value is = "male" and "female" for two wedges of pie chart, that is fine.
    But
    Legend control renders "male" and "female" as well, takes the values from the same nameField.
    How can i change those dynamic values at runtime? is there any legend label function or something?

    I would have thought the legend would update when you update the chart series.
    You can create a custom legend and update it manually or bind the labels in the custom legend to the values you want. There's doc on creating custom legends here:
    http://help.adobe.com/en_US/Flex/4.0/UsingSDK/WS2db454920e96a9e51e63e3d11c0bf69084-7c3e.ht ml

  • Require Maximum Rows & Columns to shown in report once generated....

    Hello,
    My client has a query that when a report is generated through Discoverer via the Oracle Self Service, it displays a limited set of rows and columns. The user has to click on the rows and column link (right above the displayed report) and then enter the values of how many rows or columns to exceed, to which then a whole report is refreshed displaying the desired data.
    The query my client has and wants to know is whether there is a possibility that the whole report, including maximum rows and columns, is displayed in one go, rather than clicking and setting up rows and column in every report again and again...??
    Thanks!

    Hi,
    I assume you talk about the discoverer viewer.
    In order to accomplish the user desire, the owner of the report should set once the columns and rows number to the max and save it like this.
    then every user will get the maximum number of rows (999) and columns.
    Tamir

  • 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

  • Change the row colors based on column values in MOSS 2007.

    Hi Team,
    I am using MOSS 2007 environment. In that I am having one SharePoint list. In that list based on column values rows colors need to change.
    Kindly help me anyone on this.
    Thanks,
    Ashok

    Hi Ashok,
    Please follow the below link:
    http://www.contentmaster.com/sharepoint-2010/conditional-formatting-of-list-views-for-sharepoint-2010-changing-the-font-colour/
    http://sharepoint.stackexchange.com/questions/7478/highlight-row-color-based-on-field-values-in-sharepoint-2010-list-view
    Best Regards,
    Brij K

  • Maximum Rows for series in Charts (Cluster Bar Charts)

    Question
    Is there a way to dynamically define the "Maximum Rows" value for all the series in a cluster bar chart? I tried putting "&item_name." into the "Maximum Rows" field for a series, but get an Application Builder error indicating that the value should be numeric. I would like to set the "Maximum Rows" for all the series in a chart "on the fly".
    Details
    I have one horizontal cluster bar chart with 4 series on my page that has a variable number of rows i.e. the number of bar clusters that I want plotted varies based on the user's criteria. For one set of data there may be 10 clusters. If the user changes the criteria, the chart could then have 20 clusters. I have the "Maximum Rows" field for all 4 series in the chart set to 31 rows.
    The Problem
    The chart with only 10 clusters is two thirds whitespace. The 10 clusters fills up the bottom third of the chart. The top two thirds of the chart is blank. The chart with 20 clusters fills up the chart with no whitespace. The chart with 40 clusters gets the top 10 clusters cut off and only displays the bottom 31 clusters.
    Any Suggestions
    If you have any suggestions how I can accomplish this, please post them. Currently I am not interested in going outside of HTML DB. I may end up doing that though to get a more dynamic charting tool.
    Thanks,
    Mike

    Note 367711.1 deals with this issue. The contents of the note are the below:
    At this time, this is not possible to dynamically set these charting attributes, however, an internal enhancement request has been created requesting that this functionality be incorporated into the product. The current plan is to incorporate this feature into 3.0 version of the product, however, this is just the current plan and can change depending on the complexity of the implementation.

  • Dynamically set maximum row count in Interactive Report

    Hi,
    Has anyone worked out a way of dynamically setting (e.g. via select list) the maximum row count value for an Interactive Report, taking into account issues with order by when the report is filtered. I'm aware of solutions like this: http://www.talkapex.com/2010/10/apex-reports-no-limit-downloads.html but as far as I can tell this doesn't work when the report is filtered and the IR is rewritten in the background. Data sets then become unreliable because they are reordered.
    Thanks,
    Mike

    Hi Mike,
    You can do that with javascript
    gReport.search('SEARCH',100)the 100 you can replace for any number you like.I have a report with filter,sorting and groups and it is gives no problem there.
    any number means any number but not higher than the number you set at Maximum Rows Per Page.
    You probably can mix the solution from Martin and the above code.
    Regards,
    Kees Vlek
    <tt>Company: http://www.orcado.nl
    Blog: http://www.orcado.nl/blog/blogger/listings/69-kvlek
    Twitter: http://www.twitter.com/skier66</tt>
    If the question is answered please change it to answered and mark the appropriate post as correct/helpfull.
    Edited by: kvlek on 24-apr-2013 12:29
    Edited by: kvlek on 24-apr-2013 12:35

  • Maximum Row Count - dynamically change

    Hi,
    How can I change dynamically (eg. from some item) value "Maximum Row Count" in "Report Attributes -> Layout and Pagination"?
    Is this possible?
    best regards,
    Jarek

    Thank you for your answer, but I want to do something else.
    I want to show all rows from my query in report with pagination.
    The number of rows increases.
    According to documentation, field "Number of Rows" sets the number of rows which I can see on one page and field "Maximum Row Count" sets the maximum number of rows which I can see on all pages (number of rows to query).
    I thougth, that when I set (before page is shown) a variable from eg. query "SELECT count(*) FROM table", I will be able to put this variable name in "Maximum Row Count" field, to see all rows from my query. However this field is the numeric field and I can't put any variable name there :(
    The only way to always show all records from my query is to set "Maximum Row Count" field to very high number? Is this natural way in apex? Is this only way?
    best regards,
    Jarek

Maybe you are looking for