Can I combine 'sets' and 'stacked' charts?

Hi all
I want to create a column chart in Numbers which combines sets (which I understand to be connected columns grouped together) with stacks (one or more columns split into smaller parts).
Is this possible?
Thanks!     : )

To the best of my knowledge there is no chart that has a combination of stacked columns and sets. You can make two (or more) stacked column charts, make some adjustments and settings and put them together.  It takes a few steps to do it right. Below is an example that needs some more work. I set the Y axis min and max to the same values for both charts. Same vertical and horizontal size for both charts, adjusted the gap between sets to be 140%, moved the legends so they didn't overlap, removed the Y axis value labels for the chart that is furthest to the right, changed colors on the chart furthest to the right. I didn't know what to do about the X axis labels. If you have an even number of sets you might have to turn them off and put a one-row table there to replicate the labels. If you have an odd number of sets, you could use the labels from the center set and turn the rest of them off.

Similar Messages

  • Use two streams to manager client video/audio,Can i combine streams and record it with server AS API

    Use two streams to manager client video/audio,Can i combine streams and record it with server AS API
    I tried Stream.play()
    var s=Stream.get("combine");
    s.play("video");
    s.play("audio",null,null,false);
    s.record("append");
    it's don't work!!

    Thanks, that's what I had thought. Our domain.com zone is sourced internally and replicated to our advertisers for external users, so there's no way to change the result for internal vs external users.
    This is a rudimentary question that I should already know but I sort of inherited this after it was built: Can I have users sign in with their email address ([email protected]) but under the hood, their SIP address is [email protected]? This would let users
    sign in with an address they expect, but it would take advantage of the the local lyncdiscoverinternal record.
    Thanks,
    Matt

  • Cfchart yaxis scale is wrong when combining bar and line charts

    Hi, I am trying to combine a bar and line chart ti display data.  Everything looks good except that the yaxis scale is off.  I set the scaleMin to 0 but that doesn't help.  Below is my code, the custom XML style and a screen shot.  My ultimate goal is to get the yaxis to start at 0, not -1,000 as is currently the case.  I have combined this data with each set represented as bar charts and do not have this problem.  It must be the combo of bar and line charts together.  Any assistance is most appreciated.
    <cfchart title = "#variables.ReportName# Seedlings Ordered"
        style = "../SO_R_overall.xml"
        Format = "PNG"
        pieSliceStyle = "solid"
        show3D = "no"
        showBorder = "yes"
        showLegend = "yes"
        tipStyle = "MouseOver"
        chartHeight = "#DefinedChartHeight#"
         chartWidth = "#DefinedChartWidth#"
        font="arial"
        fontsize="12"
        fontBold="yes"
        scaleFrom="0">
        <cfchartseries
            type="bar"
            seriesLabel="Goal"
            query="getDivisionGoalsByDivision"
            valueColumn="divisiongoal" 
            itemColumn = "division"
            dataLabelStyle="Value"
            seriesColor="99CCFF"
            >           
        </cfchartseries>   
        <cfchartseries
            type="line"
            seriesLabel="Ordered"
            query="getQTYordered"
            valueColumn="QTYordered" 
            itemColumn = "division"
            dataLabelStyle="Value"
            seriesColor="green"
            >           
        </cfchartseries>
    </cfchart>
    ***************** Custom Chart Style called *****************
    <?xml version="1.0" encoding="UTF-8"?>
    <frameChart is3D="false">
            <frame xDepth="3" yDepth="3" outline="#333333" lightColor="white"
            leftAxisPlacement="Front" rightAxisPlacement="Front" stripColor="#CCCCCC"/>
            <xAxis scaleMin="0">
                <labelStyle isHideOverlapped="false" orientation="Horizontal"/>
                <titleStyle font="Arial-10-bold" isMultiline="true">Division</titleStyle>
            </xAxis>
            <yAxis scaleMin="0">
                <titleStyle font="Arial-10-bold"/>
                <dateTimeStyle majorUnit="Year" minorUnit="Month"/>
                <labelFormat style="Pattern" pattern="#,##0"/>
            </yAxis>        
            <dataLabels font="Arial-10" foreground="black" autoControl="true"/>
            <legend>
                   <![CDATA[ $(rowLabel)  ]]>   
              </legend>
            <decoration style="RoundShadow"/>
            <popup background="#C8FFFFFF" foreground="#333333"/>
            <paint paint="Plain"/>
            <insets left="5" top="5" right="5" bottom="5"/>
    </frameChart>

    I should have also said that I am using 8.0 Pro.
    I want to have the output similar to an e-book.
    The issue (Sept-October of 19xx)
    Then the individual pages (bookmarked)

  • A single report can't combine portrait and landscape oriented pages

    Post Author: joelo2
    CA Forum: Crystal Reports
    Hi,
    Can a single report in Crystal report XI (version 11.5.8.826) combine portriat and landscape oriented pages like Crystal report 2008?   For example, I have one main report with several subreports in the main report.  I want one subreport be in portrait page orientation and the other subreports in landscape.  Can I do something like that in Crystal report XI version?    I even tried writing a small .net program to do this, but it doesn't seem to allow me to do that programmatically either.  Please help

    Post Author: ngra
    CA Forum: Crystal Reports
    I'd like to elevate this issue with Crystal Reports XI. There is a critical application which we developed in-house which needs both portrait and landscape orientation in each of the 30,000 plus documents we are sending out every month.If developers in Business Objects are picking this thread up - we need a patch for this limitation - quick. Right now, we are toying with the possibility of exporting the documents into a text format with markers indicating if a page is portrait or landscape. This is to be loaded into a Xerox machine (which costs hundreds of thousands of dollars), where it is mapped automatically to portrait or landscape. Note to Business Objects: This will provide us and countless others with much value. Think 80/20 rule - most bang for your development bucks and value for your customers!

  • Combination line and bar chart ?

    Hi,
    I would like to show a chart with 4 rows as bar and 1 row as line chart basically a combination chart?
    Is it possible in keynote/
    Thanks.
    SG

    Insert two charts on the slide, change one to line and keep the other as bar, change the colour so the line can be easily seen.

  • With regex, how can I combine backreference and repetition

    Let's say I have a four byte long input string, consisting of four hex values:  0x03 0x03 0x03 0x03
    If I use repetition in a regex string pattern: .{4}  it matches true.
    Also, if I use backreference in a new regex pattern: (.)\1\1\1  it matches true.
    But I want to combine the two.  Say that the first byte is a length byte of the following bytes.  Then I'd believe it should be possible to do this: (.).{\1}
    The thought is that the first byte is stored as "variable" \1, and reused as the repetition counter.  So in this case, all four byte strings starting with 0x03 should match true.
    But this doesn't work!
    What am I doing wrong here?  Is this just not possible?

    ojohnsen wrote:
    No RegEx experts here?
    I am not an expert, but I play one on this forum.  To show something is possible is quick, since you can demonstrate it.  To show something is impossible is a bit harder.  For now I say, not possible.  And you do realize that .{4} will match any four character string, not anything repeated four times, right?
    That said, it sounds like you know the format of your string, so perhaps a regex would not be your first choice.  You could split a string, read the first byte, then construct a regex like ^(.)\1{length-1} and see if the remainder of the string begins with a value repeated length times.

  • How can I combine Left and Right audio?

    Hi,
    When I record video, one lapel mic records to the left channel and the other records to the right channel in one audio track. I can't seem to figure out how to combine them within Premiere Pro (I've already attempted searching the forums for more info). I know in Sony Vegas you can right click the single audio track and select "Combine" and it will combine the 2 channels so that when people watch the end product you have both voices coming out of both speakers.
    Any help would be appreciated.
    Thanks
    Kelly G.

    Hello,
    Yes i have the same issue.
    I use the duplicate Audio track and fill left and right all the time.
    when i am doing Interview videos i usually have one person on channel 1 and the other on channel 2 and it comes out as L and R in Premiere.
    Today i was shooting with myself on Channel 2 and a shotgun for some ambient sound on channel 1.
    In Vegas or FCP 7 there is a simple effect to drag and drop called " Combine" that nicely combines the L and R channels each into stereo.
    I used to use it quite a bit and think it would be a great addition to Premiere Pro.
    So i am wondering several years since this was first post if Premiere does in fact now have this option...and where it might be that i over looked it?
    If not.....is there an easier way to do this than the fill left and right method?
    Thanks so Much!
    Mark

  • Can one combine static and instance methods?

    Hi,
    Can one define a method so that is can be used as both a static or an instance method?
    Basically I'm trying to simplify my class to so that I can call a method either statically with parameters or instantiated using it's own attributes.
    In other words, I'm trying to accomplish both of these with one method:
    zcl_myclass=>do_something_static( im_key = '1234' ).
    lv_myclass_instance->do_something( ).   " key in private attributes
    Why would I want to do that?
    I would like to avoid instantiation in some cases for performance reasons and would like to keep it simple by having only one method to do basically the same thing.
    Any input or alternative suggestions welcome.
    Cheers,
    Mike

    Ok, I may be reaching here a bit, I know, but maybe this may give you some ideas.  After creating the object, pass it back to the method call.
    report zrich_0001.
    *       CLASS lcl_app DEFINITION
    class lcl_app definition.
      public section.
        data: a_attribute type string.
        class-methods: do_something importing im_str type string
                                   im_ref type ref to lcl_app optional.
    endclass.
    *       CLASS lcl_app IMPLEMENTATION
    class lcl_app implementation.
      method do_something.
        if not im_ref is initial.
           im_ref->a_attribute = im_str.
          write:/ 'Do_Something - ',  im_ref->a_attribute.
        else.
          write:/ 'Do_Something - ',  im_str.
        endif.
      endmethod.
    endclass.
    data: o_app type ref to lcl_app.
    start-of-selection.
      create object o_app.
      call method o_app->do_something(
               exporting
                   im_str = 'Instansiated'
                   im_ref = o_app ).
      call method lcl_app=>do_something(
               exporting
                   im_str = 'Static' ).
    Regards,
    Rich Heilman

  • Can I combine ASP and JSP pages?

    Hi all,
    Maybe a dumb question...
    but Can I have ASP pages in my JSP application?
    My problem is as follows:
    In the JSP pages of my application, I have some links to ASP application:
    http://domain/app.asp
    Now IIS is running on another port. But I do not want to go through all my JSP and change the above link to:
    http://domain:port/app.asp
    Instead any request to http://domain/app.asp should be automatically forwarded to http://domain:port/app.asp
    How can this be done? I am using Tomcat as my JSP container.
    m_asu

    Actually that is not what I am looking for. I dont want to 'buy' any product. I dont want to deploy ASP application with the JSP application. I just want to redirect the client to another website through an ASP page.
    Only catch is that this ASP page needs to sit in my JSP container (Apache Tomcat). Is this possible?
    m_asu

  • Combining Column and Line charts

    I'm trying to put together a composite graph, consisting of
    both LineSeries and Column Series, for a financial page. I'm
    rendering the entire graph inside of a ColumnChart. However, when
    multiple points for the lineseries are close together, the
    mouse-over only displays a single dataTip. When working in a
    LineChart, multiple dataTips are displayed for any points close
    together or on top of each other; is there any (preferably simple!)
    way to replicate that functionality in a ColumnChart?
    Thanks!

    And to make it even more fun, I just know discovered that
    interpolateValues="false" does not seem to function properly within
    a columnChart. Does anyone know a workaround for this
    problem?

  • LR 1.4.1 - Can I combin catalog and make as one?

    I working on LR 1.4.1 and when I first started useing it I just used it ,now I would love to combind some of my old catalogs into one for ease of work flow.
    Is able to be done?
    Thanks

    RICHARD RODAMAR had this to say:
    I working on LR 1.4.1 and when I first started useing it I just used it ,now I would love to combind some of my old catalogs into one for ease of work flow.
    Is able to be done?
    You should be able to IMPORT CATALOG, yes. This will add the contents of
    the old catalog to the currently opened catalog. I've never had to do
    it, but it's supposed to Just Work.

  • Modifying Version Set and/or Stack Attributes

    My Photoshop Elements (PSE) 5.0 catalog has many version sets and stacks.
    Contrary to my expectation, I recently learned that that edits to the top photo's attributes (e.g. Date, Caption, Notes, Tags, etc.) did not translate through to the underlying photos of the associated version set or stack. As a consequence, subsequently moving a different photo to the top of a stack or version set can lead to loss (or at least displacement) of these important attributes.
    Is there a way to get PSE to automatically copy attribute changes through to the underlying photos or at least to ask the user if (s)he wants edits to translate through the version set or stack? If this feature is not currently available, I think it would be a significant value-added enhancement to the product.

    Users tend to use software differently and to have differing needs and preferences. Barb's point is valid in that, should Adobe provide the ability to assign attributes 'through' a version set or stack, the feature would warrant a user prompt or preference setting to acomodate user's differing needs and preference.
    Exceptional software, like PSE, anticipates and supports user needs in an efficient and predictable manner. Version sets, almost by definition, can be expected to have the same date, time, tags, captions and notes. Stacks - perhaps to a lesser degree.
    Forcing users to perform tasks in a specified sequence (e.g. adjusting attributes before version sets or stack generation), or to expand stacks or version sets to assign attributes through to underlying photos, seems unnecessarily tedious and inconvenient. For instance, expanding version sets and stacks forces users to aboard current search criteria.
    Anyone who has imported large batches of scanned negatives or slides which contain no meaningful metadata (with PSE set to auto-correct red-eye and to recommend stacks) knows how easy it is to generate version sets and stacks BEFORE the user begins the process of attribute assignment or correction.

  • How to find Heap and stack space

    How to find the heap sapce and stack space allocated at the moment.
    My requirement, I need to test our application by changing both of these, and atfter finish testing and have to set them to old values.

    You may consider reading up on how the Java stores data. There is no malloc() in java. I don't believe there is anyway within java that you can check the heap and stack size. And you can't allocate memory directly in java anyway so you wouldn't be able to change the value if you did get it. I would suggest using C or C++ to do this. Of course you can use JNI to call a C/C++ method from your java class but you will still have to first write the method in C/C++ which will make it platform specific anyway, so again I would suggest writeing this in another language which provides methods with direct access to the stack.

  • Can I combine the out put of TWO FIELDs into One fields  in BW query

    Hi,
    For example, I have two fields ‘FIRST name’ and ‘last Name’ in the info provider and in theBW query these two are displayed in two separate field with independent drill down capability, Can I combine those and show as a single field with a single drill down capability.
    Thanks

    Hi Arunava,
    Combination of two fields can be done at Excel level where we will not get the drill down. We can rather use use an object which is compunded for the two names and then add them in the cube. we can achieve the functionality of drill down on the report level.
    Hope this will help you in resolve the issue.
    Regards,
    Phani.

  • Secret data sets and variables in photoshop elements.

    In photoshop elements 4 thru 8, you can use data sets
    and variables, with the actions recorded for them in
    photoshop and then installed into photoshop elements.
    They work exactly like they do in photoshop and in fact
    there is already a menu item in photoshop elements,
    under in export menu, called export data sets as files.

    Not sure a I read you correctly but if I understand you
    what you have to do is make the first two images as dynamic variables using the variable panel and save it as a data set
    then replace those two images and save those as a data set
    So now you have data set one and two.
    You can save that as an variable library (xml)and that can be loaded into other documents.
    The question is can it be actioned?
    It can be scripted and do you want the same two images to replace the same two image in each document.
    I think you really have to tell us more.

Maybe you are looking for

  • Using CreateTime and RETIRETIME in a temporal query instread of WM_VALID

    Hello every one! I created a version enabled table using the workspace manager that supports both the valid time and transaction time. I implemented a really simple temporal query: SELECT ID as instanceID, WM_VALID as VT, num FROM Employee AS OF TIME

  • Managed WGM Preferences!

    Hi, I'm trying to create a master image for Mac labs, and I have created a computers group and add all the labs to that group and assigned preferences to that specific group.. i have two questions: 1) all those computers in that computer group has an

  • Camera Raw not working/errors

    Hey! I can't install camera raw. I've seen the same problems on the forum already, but unanswered. I get errors: "This is not the right kind of document" "Camera Raw editing is not enabled" I have creative design suite CS4, also bridge cs6. Ive tried

  • Soft proofing to send to online printer

    Its my understanding that LR 1.0 doesnt support soft proofing. To that end, I'm hoping someone will have some suggestions for me. I use an online printer for all of my customer's prints. I'm coming from Aperture with a mix of Capture NX. Both of thos

  • "Enter Password" prompt won't go away without Force Quitting Mail

    Hi, I've been having this problem for a few weeks now. I have Mail at work set to always ask me for my password for a POP account (the only account setup in Mail). The problem is that if I don't type in the password correctly the first time, then I'm