How did Steve group exploded wedges in pie chart

In his MacWorld keynote today, Steve showed a pie chart with 3 wedges exploded together (9:36 in, the US SmartPhone Marketshare slide). The Apple wedge is exploded, but so are the Palm, Motorola and Nokia wedges, yet they are exploded together, with no space between them. Is this possible in Keynote '08 or is Steve using unreleased features? I've tried selected all three and changing the explode value, but they separate.

I'll post the .key file used to create that image.
http://idisk.mac.com/makentosh-Public/multixplode.zip
The main things to consider is:
a) Don't move the wedges you want "connected"
b) You'll need one "Preview Passthru" for each separately exploded bit
So, you begin by setting up your chart with all the appropriate elements. Then, pull away the ones you DON'T want stuck together. Preview Passthru them (Copy, Open Preview, Command-N, Copy, Paste back into Keynote OR Preview Passthru for short), then use the "Draw a Shape" to click out a shape that surrounds the ones that are stuck together. Select the shape and the image and "Mask with Selected Shape". If you've only got two separated groups, move all the others back to the center, move the "attached" ones away and Preview Passthru that group, then mask it.
You'll see how I masked all three parts in the linked Keynote file.

Similar Messages

  • How do you ungroup or expand a pie chart in Adobe Illustrator CS6?

    How do you ungroup or expand a pie chart in Adobe Illustrator CS6? This functionality seems to have been removed. Say I'd like to remove the legend: before, I could ungroup the chart, release its link to the data, and then delete the legend with my white mouse. Object > Expand no longer works either. This is supremely frustrating.

    In the end, I closed the dialogue box that shows the data, and was able to choose Object > Ungroup. Then it prompted me saying: "The selection contains a graph. After a graph is ungrouped you will no longer be able to access its graph style, its data or change its graph designs." - Which is what I was looking for. So in short, when the data is open, everything under Object will be greyed out. Additionally, Object > Expand no longer works in CS6.
    As a note, before I figured all this out, I resorted to a quick clipping mask to get rid of the legend, since selecting with the direct selection tool (A) and deleting was met with a 'you can't do that' prompt. That worked nicely, and kept the data.

  • How to allow custom colors to SSRS Pie-Chart?

    Hi,
     I have a pie-chart in my report.
    Can anybody please tell me How I can allow custom color to each part/slice of the piechart..??or How i can assign cutom pallete to pie-chart?
    BhushanBhushan

    Hi,
    I think u r using one data Field and One category Field in the Graph.
    Then We have use Code Option
    -----Add this in Code
    Private colorPalette As String() = { "Teal", "Gold", "Aqua"}
       Private count As Integer = 0
     Private mapping As New System.Collections.Hashtable()
      Public Function GetColor(ByVal groupingValue As String) As String
            If mapping.ContainsKey(groupingValue) Then
                Return mapping(groupingValue)
            End If
            Dim c As String = colorPalette(count Mod colorPalette.Length)
            count = count + 1
            mapping.Add(groupingValue, c)
            Return c
        End Function
    Finally add this Expression in the Fill Option. And we can add more colors in the Code based on no. of Category
    =Code.GetColor(Category_Field)
     for example =Code.GetColor(Fields!Zone.Value)
    Regards,
    Thiyagu
    I've done everything listed here and in the link provided, but I get an error that reads, "There is an error on line 0 of custom code: [BC30201] Expression expected." I'm using SSRS 2005.
    Does anyone know what this could be?

  • How to combine several measures into 1 pie chart

    Hello everyone,
    I have a requirement to create a design studio application with a pie chart to show several measures.
    It means that I have several different measures and I want to let each piece of the pie chart present 1 measure.
    For example, I need to combine measure1 ,measure2, measure3(which correspond KeyFigures in Bex query) into 1 pie chart and there should have 3 pieces.I tried change swap axis option and put all measures into row, not works.
    I am very appreciate if anyone could help. Thanks a lot.

    Hi !
    There is a tricky way to do that.
    Read the following document How to combine several measures into 1 Pie chart
    hope it helps,
    Roman

  • How to Fill PieChart Explode Wedge Potion

    All,
    I need to create a Pie Chart with two Wedges using perWedgeExplodeRadius = [0,0.2]. It works fine. But my requirments is i need to fill the explode wedge potion with someother color.
    I have attached the expected PieChart, i need help for how to achive the gray potion. It's possible to draw a circle around the chart or there is any way to fill that explode potion. Please help me.
    Thanks in advance.
    By,
    Dhanasekaran

    Figured it out.
    Here is a simple example;
    <?xml version="1.0" encoding="utf-8"?>
    <!-- http://blog.flexexamples.com/2007/11/15/displaying-a-pieseries-items-data-when-a-user-clic ks-an-item-in-a-flex-piechart-control/ -->
    <s:Application
        xmlns:fx="http://ns.adobe.com/mxml/2009"
        xmlns:mx="library://ns.adobe.com/flex/mx"
        xmlns:s="library://ns.adobe.com/flex/spark"
        >
        <fx:Declarations>
        </fx:Declarations>
        <fx:Script>
            <![CDATA[
                import mx.charts.series.items.PieSeriesItem;
                import mx.charts.events.ChartItemEvent;
                [Bindable]
                public var chartDP:Array = [
                    {wedgeName:'Pie wedge 1', percent:45 },
                    {wedgeName:'Pie wedge 2', percent:25},
                    {wedgeName:'Pie wedge 5', percent:22},
                    {wedgeName:'Pie wedge 4', percent:8}
                private function pieChart_itemClick(evt:ChartItemEvent):void {
                    var psi:PieSeriesItem = evt.hitData.chartItem as PieSeriesItem;
                    myTextArea.text += "\rwedgeName: "+psi.item.wedgeName+" percent: "+ psi.item.percent;
            ]]>
        </fx:Script>
    <s:VGroup>
        <mx:PieChart id="pieChart"
                     dataProvider="{chartDP}"
                     itemClick="pieChart_itemClick(event);"
                     showDataTips="false"
                     height="300"
                     width="300">
            <mx:series>
                <mx:PieSeries id="pieSeries"
                              field="percent">
                </mx:PieSeries>
            </mx:series>
        </mx:PieChart>
        <s:TextArea id="myTextArea"  y="82" width="350" height="250" />
    </s:VGroup>
    </s:Application>

  • Problem with wedge in Pie chart

    Hi all,
    i'm having a Pie chart which has some four or five sections. By using wedge option i'm able to cut out a single piece from the whole chart. But my requirement is i need to show all pieces individually. Is it possible? Please help me in this.
    Kind regards,
    karthick

    Hi Karthick,
    it is not impossible, but it is not very easy to accomplish this. First of all, the chart engine (Corda PopChart) is bounded by OBIEE. What I mean is that OBIEE doesn't use the full functionality of the chart engine, so when you want to customize the chart, beyond the functionality OBIEE uses, then there is no other option then to edit the PopChart XML files (.pcxml). In ..\OracleBI\web\app\res\s_oracle10\popbin\ and ..\OracleBI\oc4j_bi\j2ee\home\applications\analytics\analytics\res\s_oracle10\popbin you can find pie.pcxml which defines the pie chart.
    About your problem: you want to explode all wedges in your pie chart. According to the Corda documentation you can only explode one wedge, but it is possible to create a pie chart with gaps between all wedges and you can also set the size of the gap. So by setting these parameters I guess you can get what you want.
    Example: You need to add ShowPieGap='True' to this line in the .pcxml.
    <Properties Effect='2D' EffectPercentX='10' EffectPercentY='60' OutlineType='Darker' ShowPieGap='True'/>I also recommend you to read John's experiences with editing PCXML of Corda:
    http://obiee101.blogspot.com/search/label/CORDA
    http://obiee101.blogspot.com/search/label/PCXML
    Regards,
    Stijn

  • How to add more data point in Pie chart

    The default data point for Pie chart is 5, how could I add more data  point, I notice that I can do assign the cell to the value under data in General tab property of chart pie, but, in the sample drill down, there is no value for that value, and it still has 6 data point.

    Hi DFW
    The sample file has got the spreadsheet range missing thats all.  Just add the range you need to your pie chart.
    Regards
    Charles

  • How could I improve the way a pie chart shows (CR 10)?

    The pie chart has five slices - a very large one and four very small slices. I have to show labels for it, and the problem is that no matter how I try to rotate or enlarge the chart the four labels for the small slices are very close to each other.
    I am using Crystal Reports 10 and it has to be a pie chart and I have to show up its labels. Do I have any solution to "beautify" this?

    It sounds like you're having a similar problem to one I've had. When this happens, I double-click the entire pie chart. This should bring it up by itself in a new window. In this window you can individually move around the labels (and percentages if you have them). Also, you can do as the previous person mention and while in this view, right click and select "Chart Options." Sometimes rotating or even expanding the chart can add more space in between the pie slices.

  • How to present percent and value in pie chart?

    Hi guys,
    I tried to present both percent and value in a pie chart in web intelligence. I've looked over data value setting but still no luck. Can we request this feature to be available in the next SAP BO platform upgrade.
    Thanks.

    Hi,
    You can try this .
    1)
    Add 2 Pie charts in your Report (Align top
    & Left Same Size ) .
    Set Background Color Transparency 0%
    Set Data Value Presentation value for 1 st (Outside)
    Percent for 2nd (Inside)
    Make size of the pie as per the value presentation  .

  • How did Steve Jobs project his iPad onto the big screen?

    Steve did it. Why can't we? I understand that Apple's Component AV cable will only play video files on my TV from my iPad, but I would like to demonstrate all the iPad's features to an audience like Jobs did. Any clues, anybody? Thanks.

    Mr. Holton is correct: Steve Jobs has specially modified units when he does a presentation on an iPhone or iPad. At this time the only way to project the iPad's interface and most applications would be to use something like a document camera.
    Regards.

  • How to display values inside the Pie chart?

    Hi Expert,
    How to display the values inside the Pie chart, instead of Mouse over values. Can u pls help me to do this one.
    Is it possible can we use mentioned below kind of pie charts in Xcelsius 2008.
    Thanks & Regards,
    Tamil
    Edited by: Rajesh Kumar Thoppe on Dec 13, 2010 10:41 AM

    Hi A G,
    Thank You for quick response!!!
    in this Text tab I am able to see below check box only
    1) Chart Title
    2) Sub Title
    3) Legend
    4) Mouse-Over
    Kindly advise me if i am wrong and let me know how to achieve this.
    Note: We have Xcelsius 2008 environment
    Thanks & Regards,
    Tamil
    Edited by: Rajesh Kumar Thoppe on Dec 13, 2010 1:58 PM

  • Pie chart legend options

    I have a spreadsheet with "expense categories" in one column and "dollar figures" in the second column.
    When I highlight the columns and create a chart I DON'T want to have to use "show legend" (with the color circles at the bottom) as it repeats my expense categories and just takes up space.
    What I want is what shows up with I click on the pie chart. When I do that, it changes my spreadsheet and shows the corresponding colors to the left of the categories.
    Is there a way to have my spreadsheet legends show up like in the picture below to the left?  It goes away the minute I click off the pie chart or try to print.
    Thanks in advance.

    See if this gets you started
    http://dl.dropbox.com/u/54961502/For%20Apple%20Forums/Legend%20in%20Table.number s
    I put the legend in a separate table that consists of a single column. The column contains formulas that refer to the data table (Table 1). The formulas are not affected by sorting the data table, you can sort it all you want and the legend will be correct. I filled each cell with color and used conditional formatting to make it white text on a white background if there is no header text for that row. I also made the borders white so they would blend into the page. Add text in one of the empty rows of the data table and you'll see how it acts.
    Notice that a pie chart has only six different colors, then the colors repeat. You can modify that but you'll also have to modify what I did by changing the legend cells to the the new colors. I changed the colors by turning on the legend, using the magnifying glass in the Color window to get the color, then drag/dropping the color on the cell. I do not know how many different colors you can use.
    I recommend locking the legend table so it cannot be modified by the user.
    I recommend turning Wrap off in the data table.  If text wraps it makes the row taller which will cause the legend and the table to become misaligned.  Changing the font, changing rows sizes manually, or moving the table will do that too.
    I recommend locking the chart so it cannot be modified by the user.

  • Change colors in multiple pie chart - with legend

    I need to change the colors of groups shown in multiple pie chart diagram in CR XI.
    I managed to actually change the colors in the diagram by using highlighting rules in the wizard. (Sorry, I need to guess the correct English terms since I am using the German version.)
    But the colors in the legend are not affected by the rules, so the legend displays colors which are not shown in the diagrams at all. How can I fix this?
    Thanks in Advance
       Andreas

    Hi Andreas
    I have the same problem.
    I found this BO note:
    https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/sno/ui_entry/entry.htm?param=69765F6D6F64653D3030312669765F7361706E6F7465735F6E756D6265723D3131383434373026
    I says that this behaviour is by design and cannot change
    Not what you would expect really! 
    If the series colour can be changed then why does the series marker colour not match the series it represents?
    Patrick

  • Issues converting Pie Chart to 3D

    Hello all,
    I am having issues within Illustrator CC.  I created a Pie Chart and found a tutorial on how to convert it to 3D.  Unfortunately whenever I Extrude and Bevel it, nothing happens.  I turn preview on...no change.  Nothing I am doing will convert it to 3D.   This works just fine on a copy of CS6 I have on a different computer.  Is there a setting that is off or something?
    Thanks

    That's odd. I was able to see the 3D effect applied to the graph fine on my end. Did you forget to select the pie chart before applying the effect?
    If that's not the case, can you try resetting preferences (Adobe Illustrator * Setting preferences) or perhaps launch Illustrator in a new user account and see if that helps?
    Let us know!
    Amy

  • Pie chart legend should display values and percents

    Hi All,
    Can any body suggest me how to display values and percent in pie chart legend.Thanks in advance.
    Edited by: 997414 on Apr 1, 2013 11:25 PM

    Hi,
    I used this tag : <SliceLabel textType="LD_TEXT_PERCENT"/>
    My full graph;
    chart:
    <Graph depthAngle="50" depthRadius="8" pieDepth="30" pieTilt="20" seriesEffect="SE_AUTO_GRADIENT" graphType="PIE"><LegendArea visible="false" automaticPlacement="AP_NEVER" position="LAP_BOTTOM" /><LocalGridData colCount="1" rowCount="{count(.//DSYATIRIMDAGILIMANA_ROW)}"><RowLabels><xsl:for-each select=".//DSYATIRIMDAGILIMANA_ROW" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"><Label><xsl:value-of select="RAPORAD" /></Label></xsl:for-each></RowLabels><DataValues><xsl:for-each select=".//DSYATIRIMDAGILIMANA_ROW" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"><RowData><Cell><xsl:value-of select="ORAN" /></Cell></RowData></xsl:for-each></DataValues></LocalGridData>
    <SliceLabel textType="LD_TEXT_PERCENT"/>
    </Graph>
    I hope, It helps you since I figure it out in very very hard way.
    This is the main reference : http://www.oracle.com/technetwork/middleware/reports/graph-dtd-technote-2-094743.html

Maybe you are looking for