Line chart with more than 15 data series - color problem

Hi all,
I've built a line chart with 32 data series (user can control, which of them are displayed at a time). For series 16 to 32 I did manipulate the URL in the browser directly, because Application Express does only display parametrs for up to 15 series. This works fine so far except of displaying the colors. For each sieries I defined a different color. 29 of my 32 series are displayed in the desired color. But series 29, 31 and 32 are displayed in a default-color (#0099CC). It seems that this is a SVG-problem. In the SVG-source I find the wrong color. When I export my application, I see the right color.
Thanks for help,
Chris

Hello,
Which version of APEX are you using?
Go to your Flash Chart attributes - get into your series (click the icon) in the section of Series Query you'll find the maximum rows.
Regards,
Dimitri
-- http://dgielis.blogspot.com/
-- http://apex-evangelists.com/
-- http://apexblogs.info/

Similar Messages

  • Line Chart with more than 15 datapoints

    I'm using Apex 3.1.
    I am trying to create a line chart with more than 15 data points. Apparently 15 is the default. Question is, How do I change the default?
    The Wiki has advice for changing the "Maximum Rows" parameter, but "Maximum Rows" is not to be found, either in the chart attributes or series attributes.
    http://wiki.shellprompt.net/bin/view/Apex/ChartIssues
    I have encountered this limitation with SVG line charts and Flash line and scatter charts. Seems like it must be an easy thing to figure out; I feel embarassed asking such a question. But I've been through all the application property pages, much of the documentation, and several tutorials... Where can I change this? It's driving me nuts!
    Thanks
    Fred

    Hello,
    Which version of APEX are you using?
    Go to your Flash Chart attributes - get into your series (click the icon) in the section of Series Query you'll find the maximum rows.
    Regards,
    Dimitri
    -- http://dgielis.blogspot.com/
    -- http://apex-evangelists.com/
    -- http://apexblogs.info/

  • ORDER BY in line chart with more than 1 lines

    Hello,
    I created a line chart and added 3 chart rows. The x-axis shows the calendar week, which should be ordered.
    It works perfectly with only one row, but if I add a 2nd or a 3rd row and execute it, the chart shows nothing and stays blank.
    If I delete the "ORDER BY KW" for each row the x-axis is mixed up.
    Here is my SQL:
    select null link, KW label, SUM(SNDG) value
    from "TBL_FB_SNDG_FRTTR"
    WHERE SEND_KZ = 'Z'
    group by KW
    order by KW
    Can anybody help me?
    Thanks so much,
    LISA

    I found a solution:
    - create a VIEW which is ORDER BY KW
    - use this VIEW instead of the table for the chart
    - remove the GROUP BY
    Now the SQL:
    select null link, KW label, SNDG value
    from "VIEW_FB_FTTR_SNDG"
    WHERE SEND_KZ = 'Z'
    Before I tried it by using the GROUP BY and it did not work ... why it works without it - I don't know. ;-)
    Greetings,
    LISA :-)

  • Percentage Bar chart with more than 1 measure

    Hi everbody,
    i have a new big problem.
    point of departure: i want to create a bar chart (stacked vertical) with more than 1 measure.
    Vertical axis should be from 0% to 100%. Horizontal there are diverse, let's say departments.
    Now it becomes tricky: Every department once more has its own under-departments.
    So far so good. The measure is the number of employees per under-department.
    So: in one bar you can see the complete number of employees per department AND the number of employees of one under-department in each block of this bar.
    -> That's the idea!
    Now: The whole chart should be presented in percentage.
    -> Therefore i need to divide the particular block by the complete number of employees per bar and multiply it by 100.
    My question is: How can i create a kind of dynamic variable, which adatps itself to the particular department
    Edited by: 941338 on 27.06.2012 04:53

    Looks like you need a dynamic variable to hold the value to calculate futher, for that using prompt(this should follow your criteria to get value) with prsentation variable, use the presentation variable in the report to calculate.
    If it is helpful, please mark as correct or helpful

  • Sales order with more than 9 items causing problem

    Hi,
    I have a situation here.
    A sales order is created in the system and since it is order related billing so its billing document is also generated. The billing document is not relevant for accounting. So, the only 2 documents are a sales order and its billing document.
    Due to some technical restrictions,if the number of lines is more than 9 the printout wont come.Henceforth,the user is unable to take a printout so I need to give him a solution.
    What shall I suggest him?

    Hi,
    >So, my question is that,should I ask the user to create a credit memo wrt the billing document and then split the sales order with 2 invoices(one with say 5 and the other invoice with the rest of the quantities)?
    So, if my undestanding is right then you want to create a credit memo after invoice ? If yes, then why are you splitting the sales order ? Also, this is something strange kind of ABAP logic which would not allow to print an invoice with more than 9 line items... Now, as you said if your sales order is having more than 9 line items then only print doesn't come.. right ? then in your case at this moment there are only 9 line items so ideally you'd be able to get a print.. right ?
    I think there is some confusion out here with your two posts.. kindly clarify...
    Hrishi

  • Line Chart - Formatting more than 4 lines in line chart

    Hi,
    How to format more than 4 lines in line chart using Crystal report Designer as by default it will display 4 lines in design mode.
    Able to format 4 lines but i have to display total 6 lines.
    Urgent. Please help....
    Thanks,
    ThakurS

    Hi,
    The design mode is not the right place to edit lines, bars etc for Charts.
    You can select individual lines from the Preview Mode and edit them.
    Hope this helps!
    -Abhilash

  • SVG with more than one series (not working)

    i have a line chart of type series as described in http://jes.blogs.shellprompt.net/2006/05/25/generic-charting-in-application-express/
    and it is working fine!!!
    now i want to add a new series in changing the parameter of my procedure to show the 2nd line in the same chart but then the svg region is blank.
    what i'm doing wrong
    my datastructure is
    timestamp|value series 1|value series 2
    the timestamp is mapped to "name"
    the series is mapped to "value"
    Message was edited by:
    wzilgens

    its based on a transaction log table; one row is called TRX_LINES, another TRX_REDO
    Series1:
    SELECT link,label,value FROM TABLE(stat_pkg.populate_job_stats(208,'TRX_LINES'))
    sample data:
    null 2006.09.21 14:26:11 5004
    null 2006.09.21 14:26:42 5041
    null 2006.09.21 14:27:18 5022
    null 2006.09.21 14:27:39 5416
    null 2006.09.21 14:27:49 6000
    series2:
    SELECT link,label,value FROM TABLE(stat_pkg.populate_job_stats(208,'TRX_REDO'))
    sample Data:
    null 2006.09.21 14:26:11 4072572
    null 2006.09.21 14:26:42 4266152
    null 2006.09.21 14:27:18 4085460
    null 2006.09.21 14:27:39 4441464
    null 2006.09.21 14:27:49 4799588
    as you see, the x axis are the same timestamps (because it is exactly the same row)

  • WS_DOWNLOAD and line item with more than 1024 characters

    I want to download a file with line size greater than 1024. I am in version 40B and when i use function module ws_download and it creates two lines instead of one. Is there a solution with another function module or something else?

    Hi
    Are you trying to download in binary format(filetype BIN) ?. Only binary format has length constraint of 1023 characters. Download in 'ASC' or 'DAT' format.
    Also WS_DOWNLOAD is obsolete , use the methods of class CL_GUI_FRONTEND_SERVICES.
    Regards
    Pawan

  • Line chart with different "colors": Values not available are displayed as 0

    Hello,
    I defined a line chart with more than one lines (aka "colors" in the chart wizzard) - each line representing the (monthly) values of a year. x axis are the 12 months of the year; y axis are the values.
    When one defines such a line chart in BIP client there is a choice between sum, average and count for the data values.
    This is no problem for my template as there is only one value per month/year - so I used sum.
    The problem: for the actual year there are no values for future months . But bip nevertheless shows 0 for this month/year... Can one prevent this?
    Regards
    Peter

    Solved it finally - unavailable values must explicitly be passed to the report with nothing contained in the value tag.

  • Formating Line thickness for lines in graphs with more than 6 lines.

    I have a line graph with more than 6 lines on it and I'm trying to make them all 1px.
    I can specify a line thickness for the first 6 lines but after that, the lines go back to the default thickness.
    Is it possible to change the default line thickness for a graph or format the line thickness for the 7th line and more?

    Good news! I found out how to format more than 6 lines of data and it's really simple to do!
    In the bottom left hand corner of the Format Chart Data, next to the Clear All button, is a button marked ADD.
    If you click this button, another row is added allowing you to format the 7th line of data.
    Click again and you get a row for the 8th line and keep clicking to add more lines.
    I'm making a note of it here in case it is useful to someone out there who searches on this problem in the future.
    Edited by: user2052587 on Jan 6, 2010 2:45 PM

  • Creating a multi series line chart with different data providers

    I have 3 data providers of the same structure i.e ArrayCollection of DataElement and want to use them to create a multiseries line chart. I do not have just 1 dataProvider that can be used but 3 different data providers of the same structure that i want to use each for different series.
    [Bindable] private var orangeSales : ArrayCollection =
                    new ArrayCollection(
                        [ { sales: 101000, month: new Date( '01/01/2008' ) },
                            { sales: 960000, month: new Date( '02/01/2008' ) },
                            { sales: 475000, month: new Date( '03/01/2008' ) },
                            { sales: 425000, month: new Date( '04/01/2008' ) }
                [Bindable] private var appleSales : ArrayCollection =
                    new ArrayCollection(
                        [ { sales: 991000, month: new Date( '01/01/2008' ) },
                            { sales: 140000, month: new Date( '02/01/2008' ) },
                            { sales: 565000, month: new Date( '03/01/2008' ) },
                            { sales: 255000, month: new Date( '04/01/2008' ) }
                [Bindable] private var bananaSales : ArrayCollection =
                    new ArrayCollection(
                        [ { sales: 891000, month: new Date( '01/01/2008' ) },
                            { sales: 147560, month: new Date( '02/01/2008' ) },
                            { sales: 295000, month: new Date( '03/01/2008' ) },
                            { sales: 574000, month: new Date( '04/01/2008' ) }
    I want to create a line chart with orangeSales, appleSales and bananaSales as three different lines on the chart for different dates specified.
    <mx:ColumnChart showDataTips="true" >
            <mx:horizontalAxis>
                <mx:CategoryAxis
                    dataProvider="{orangeSales}"
                    categoryField="month"
                    />
            </mx:horizontalAxis>
            <mx:series>
                <mx:LineSeries displayName="OrangeSales" yField="sales" xField="month" dataProvider="{orangeSales}"/>
                <mx:LineSeries displayName="AppleSales" yField="sales" xField="month" dataProvider="{appleSales}"/>
                <mx:LineSeries displayName="BananaSales" yField="sales" xField="month" dataProvider="{bananaSales}"/>
            </mx:series>
    </mx:ColumnChart>
    Please help!

    Sorry for the confusion. Actually I must be doing some thing wrong like using ColumnChart to display a line chart or something like that.
    I have now realized that a multi series line chart can be built by having a different data provider for each of the LineSeries object.
    So the code below would create a multi series line graph :
    [Bindable] private var orangeSales : ArrayCollection =
                    new ArrayCollection(
                        [ { sales: 101000, month: new Date( '01/01/2008' ) },
                            { sales: 960000, month: new Date( '02/01/2008' ) },
                            { sales: 475000, month: new Date( '03/01/2008' ) },
                            { sales: 425000, month: new Date( '04/01/2008' ) }
                [Bindable] private var appleSales : ArrayCollection =
                    new ArrayCollection(
                        [ { sales: 991000, month: new Date( '01/01/2008' ) },
                            { sales: 140000, month: new Date( '02/01/2008' ) },
                            { sales: 565000, month: new Date( '03/01/2008' ) },
                            { sales: 255000, month: new Date( '04/01/2008' ) }
                [Bindable] private var bananaSales : ArrayCollection =
                    new ArrayCollection(
                        [ { sales: 891000, month: new Date( '01/01/2008' ) },
                            { sales: 147560, month: new Date( '02/01/2008' ) },
                            { sales: 295000, month: new Date( '03/01/2008' ) },
                            { sales: 574000, month: new Date( '04/01/2008' ) }
    I want to create a line chart with orangeSales, appleSales and bananaSales as three different lines on the chart for different dates specified.
    <mx:ColumnChart showDataTips="true" >
            <mx:horizontalAxis>
                <mx:CategoryAxis
                    dataProvider="{orangeSales}"
                    categoryField="month"
                    />
            </mx:horizontalAxis>
            <mx:series>
                <mx:LineSeries displayName="OrangeSales" yField="sales" xField="month" dataProvider="{orangeSales}"/>
                <mx:LineSeries displayName="AppleSales" yField="sales" xField="month" dataProvider="{appleSales}"/>
                <mx:LineSeries displayName="BananaSales" yField="sales" xField="month" dataProvider="{bananaSales}"/>
            </mx:series>
    </mx:ColumnChart>

  • Read CAN Data message With more Than 64 bits

    Dear All,
    I'm working With CAN card PCI Series 2 with Labview 8.2.1 and Measurement and automation 5.1.
    I'm making measures from an ECU.
    This one (please see piture) is composed with more than 64 bits for one ID.
    I don't found how I can read those Data using "Channel API". Is It possible ?
    On MAX I am not able to creat CAN Task measure with more Than 64 bits...
    It is necessary to use only "Frame API".
    Thanks for repply.
    Regards
    Solved!
    Go to Solution.
    Attachments:
    Transmition_Data _ECU_ A_50Hz.JPG ‏80 KB

    NI-CAN Channel API is not able to deal with Multi frame messages, so you would need to use the NI-CAN Frame API to read the Multi frame message and do the conversion into physical values on your own.

  • Line Chart with Multiple Series

    Post Author: JayZee
    CA Forum: Charts and Graphs
    HI
    I am trying to create a line chart with multiple series for trend analysis on CR XI but not having much luck, I thought it would be so simple to do!
    My data is provided summarized on the server and is returned as 12 rows:
    Month       Year1        Year2      Year3      Year4     Year5January      100           80          75           90          120February      85           25           40           25          80etc for the rest of the months
    My problem is that I can only get the chart to accept the values to display as a summary and not just as the data pulled back from the server.  I have read an article on the support site for Crystal 6.0  but it doesn't seem to translate well into XI.
    If necessary I could redesign the table to bring back un-summarized data but that is quite a big job.
    Any help greatly appreciated.
    Jay

    Post Author: Tim Wise
    CA Forum: Charts and Graphs
    In the chart expert, put Month in the 'On change of' box and put each year in the 'Show values' box. This puts the month on the x-axis and plots each year as a line.
    Is that what you want?
    I did this in CR 2008 using your data in an Excel sheet.

  • Line chart with different length series?

    Hello,
    I would like to draw a line chart with three different series.
    1. Previous year
    2. Current year (until now)
    3. Estimate (2 months)
    I've got 12 values for the previous year, 4 values for the current year (January to April) and 2 estimated values for May and June.
    When I define the three series, each is stretched over the whole width of the chart. How can I avoid that and force for instance the April values to be displayed above each other? Is it possible at all with this type of chart? (In Excel, it's quite easy...)
    Thanks for any help!
    Sabine

    Hi,
    You’ll have to write a query for your series 2 and 3 that has the same number of data points as your series 1 query, in your example that would be 12. Line series charts are always stretched over the full width by design. The months for which you have no data, would have a value of NULL. Please note that there is one issue, which has been fixed in 2.2, that causes the charting engine to only render dots instead of lines for series 2, 3, …, if they have a NULL value at the last data point. So if I understand your requirements correctly, you should try this on our 2.2 hosted beta instance, and then upgrade to 2.2 when it comes out.
    Regards,
    Marc

  • Finding of materials in scheduling agreement with more than 150 lines

    Dear Experts,
    we are in need to find materials in scheduling agreement with more than 150 lines. In standard SAP, materials can be searched only based on item Nos. is there a way we can search by material in ME38. also we noticed that find icon is greyed out in ME38.
    Please suggest.
    One more request is, to create an uplaod program for maintaining delivery schedules for multiple SAs.
    please sugegst if this is feasible.
    Regards
    Raghavendra MS
    9886138875

    I am also curious if anyone has found a solution to this problem.
    We routinely have scheduling agreements that are hundreds of line items. Users find it difficult to find the line item they wish to work with. It would be helpful if we could search by material number or sort the line items by material.
    As Raghavendra mentioned (ctrl+F) functionality is not available in ME33L or ME38.
    Thanks.

Maybe you are looking for

  • How to insert image in forms?

    Hi Friends, I m new to Forms. plz tell me how to display image in canvas (form)? I m using Forms 6i.

  • How to search for a specific String within an ArrayList

    I am creating an inherited class, CD, that has a field of "tracks". I am wondering how you would search through the ArrayList and list the track number that correlates with a search term. For instance, if I have a track called "Radar Love" and it is

  • Mystery File in Trash and Locked Disks

    Hi all, Have some weirdness going on with my system. First, I have a mystery file appearing in my trash that can not be identified. It appeared about the same time as I started having problems with three of my external drives that I can not access an

  • I get TONS of nstat_lookup_entry failed: 2

    this is my /var/log/kernel.log: Aug 17 13:35:20: --- last message repeated 20 times --- Aug 17 13:35:29 mini kernel[0]: nstat_lookup_entry failed: 2 Aug 17 13:35:59: --- last message repeated 3 times --- Aug 17 13:36:07 mini kernel[0]: nstat_lookup_e

  • Configuration changes when the host name gets changed

    hi, Can you please let me know what I should change and where if I change my host name after installing EP NW'04? Anything in Config tool and anything in DB? Chandra.