Stacked Column Chart Value does not show in Preview or SWF

I have created a simple (one-column) stacked Column chart from an imported Excel 2007 spreadsheet. I am using 3 values and all three are there when I am editing the chart. When I do a Preview or Export it to a .swf file, the third value does not show up. It only shows the first two.
I am running Xcelsius 2008, Version 5.1.3.0, build 12,1,3,495.
Edited by: Rich Krejsa on Apr 9, 2009 9:35 PM

Hi Rich,
Try to rebind the data with the component and preview and see.
Also check with other charts to see if you get the same behaviour.
Try placing a table component and display those cell and see what values are there when you preview.
There could also be posiblities that the third values must be very small as compared to the other two,so check that as well and may be select the secodry scale in the general tab for the 3rd series.
Let me know if this helps.
Thanks,
Amit Mathur.

Similar Messages

  • Stacked Column Chart Data Labels Not Appearing

    I am using SetSytle in Actionscript to make the data labels in a stacked column chart appear inside but it's not working.
    A portion of the code I am using to create the chart is below:
                    //initialize column set for stacked columns
                    var colSet:ColumnSet = new ColumnSet();
                    colSet.type="stacked";
                     for each(var node:XML in _chartDP){
                         var k:int = 0;
                         //skip zero datapoints
                         if (parseInt(node.toString()) != 0) {
                             //if measure node does not exist, add as series
                             k = uniqueYCat(node.attribute("BillTo"));
                             if (k == -1){                                                        
                                    // Create the new column series and set its properties.
                                    var localSeries:ColumnSeries = new ColumnSeries();
                                    localSeries.setStyle("labelPosition","inside");
                                    localSeries.dataProvider = dataArray;
                                    localSeries.yField = node.attribute("BillTo");
                                    localSeries.xField = "ConfidenceStatus";
                                    localSeries.displayName = node.attribute("BillTo");
                                    localSeries.setStyle("showDataEffect", ChangeEffect);
                                    // Back up the current series on the chart.
                                    var currentSeries:Array = chart.series;
                                    // Add the new series to the current Array of series.
                                    currentSeries.push(localSeries);
                                    //Add Array of series to columnset
                                    colSet.series.push(localSeries); 
                                       //assign columnset to chart
                                    chart.series = [colSet];
    After some more research, I put a breakpoint inside ColumnChart.as in the following function:
        mx_internal function getSeriesLabelPos(series:Series):void
            if(series is ColumnSeries)
                var columnSeries:ColumnSeries = ColumnSeries(series);
                var position:String = columnSeries.labelPos;
                if(position == "inside" || position == "outside" || position == "none")
                    _needLabels = true;
            else if(series is ColumnSet)
                var setSeries:Array /* of Series */ = ColumnSet(series).series;
                for (var i:int = 0; i < setSeries.length; i++)
                    getSeriesLabelPos(setSeries[i]);
    the following line: var position:String = columnSeries.labelPos;
    returns postion as null. It looks like the setStyle is not passing the correct value to this function.
    Any ideas as to what is going on?

    chart appearance is controlled by xml files located in
    {cfroot}\charting\styles. the file for bar charts is
    default.xml
    you will want to:
    1) copy thisfile to your site's root or some other folder
    (i.e. same
    folder that the page displaying your chart is in)
    2) edit the file and change isHideOverlapped attribute of
    labelStyle
    property for xAxis to "false"
    3) point the STYLE attribute of your cfchart tag to this new
    file.
    hth
    Azadi Saryev
    Sabai-dee.com
    http://www.sabai-dee.com/

  • TIFFs does not show in Preview app or DVDSP

    I'm rendering TIFFs for subtitles using Belle Nuit.
    The TIFFs (either TIFF-RLE for Final Cut Pro or TIFF-DVD for DVDSP) are generated just fine.
    But they do not show when using the default Preview. Preview Inspector just says "No document"...(!)
    I can view them just fine in Photoshop, QuickTime player 7 or other apps.
    And the TIFF-RLEs works just fine in Final Cut Pro (but I can't look at the TIFFs beforehand using Preview).
    Now, the problem really is that DVDSP does not show the TIFFs/subtitles at all - and that's a problem. The STL Graphics file works just fine. The TIFFs are placed on the Track just fine, but they do not show at all.
    What might have happened? Checking one of the TIFFs, I have read/write access to the file.

    Problem solved - semms like Apple did a change in the system-wide TIFF importer, that caused the TIFFs generated to be seen as 0x0 pixels in size.
    The maker of Belle-Nuit have solved the issue in the 2.1.0b1 beta.

  • Animation does not show when previewed or published

    I have an animation that appears to be working, and shows in edit mode, but that does not appear at all when I preview or publish. It is a countdown clock I need to an activity.

    Hi there
    What version of Captivate are you using?
    If it's version 4, note that you may choose an Actionscript version to use.
    Click Edit > Preferences...> Project node > Publish Settings node.
    Cheers... Rick
    Click here for Adobe Certified Captivate and RoboHelp HTML Training
    Click here for the SorcerStone Blog
    Click here for RoboHelp and Captivate eBooks

  • Bridge does not show image previews anymore on one of my drives

    Bridge isn't showing image previews on one of my drives. I have tried resetting the preferences as well as deleting the cache to no avail.

    I don't believe so, because it operates as expected in finder. It's only bridge that doesn't seem to want to create the thumbnails. I went to the thread you posted, Robert, but unfortunately I'm not on Windows and don't see any "online" or "offline" options.
    Transporter is not a cloud service. It's actually a local hardware device, so it's more a network drive than anything else.

  • Show 2D Stacked column chart values

    Hi,
    I use the following sql which shows the percententage of errors in a month
    SELECT NULL
    ,      TO_CHAR(MA.DATE_LOGG,'Mon'),
    sum(decode(el.error_type,'On',1,0)) "Ons",
    sum(decode(el.error_type,'Pa',1,0)) "Prt",
    sum(decode(el.error_type,'No D',1,0)) "No D",
    sum(decode(el.error_type,'Sys',1,0)) "Sys",
    sum(decode(el.error_type,'Oth',1,0)) "Oth"
    FROM
           table1 MA, table2 EL, table3 CR
           WHERE
                     MA.ERROR = EL.ERROR
           AND       MA.ERROR IS NOT NULL
           AND       MA.COUNTRY = CR.COUNTRY_CODE        
          AND       TO_CHAR(DATE_LOGG,'YYYY') = nvl(:P5_FILTER,to_char(sysdate,'YYYY'))
          AND       CR.REGION_CODE = NVL(:P5_REGION,CR.REGION_CODE)
    GROUP BY TO_CHAR(MA.DATE_LOGG,'Mon'),  trunc(ma.date_logg, 'Month')
    ORDER BY  trunc(ma.date_logg, 'Month')Now the values are showing correctly, however, the bar stacked shows the actual percentage value, e.g 60% on the stacked bars. When we mouse over the bar it shows the "No D", Sys, Oth . Is there a way to permanently show both the Decode type and the percentages?
    Apex 4.1/11g
    Thanks,
    Sun

    Hi Sun,
    If you wish to incorporate the series name in the values displayed on the bar elements themselves, then you will need to customise the chart XML and update the <label_settings> tag to incorporate {%SeriesName}. I've added an example to my sample application, outlining where the XML needs to be modified: http://apex.oracle.com/pls/apex/f?p=36648:90. For a complete list of available AnyChart keywords, such as %SeriesName, please refer to the AnyChart online documentation: http://anychart.com/products/anychart/docs/users-guide/label-text-formatting.html?fromtree.
    I hope this helps.
    Regards,
    Hilary

  • Refundable deposite value does not show in customer balance

    User had created a miscellaniuos reciept in AR to record once of the customer refundable deposite. At the period end it was noticed that the amount remain in the cash clearing account. But user need to show the refundable depotice on the customer balance. User had passed a Journal entry to transfer money in to refundable deposite account. But Customer balance is not updated. Is there a mathod to show this refundable depostie value in the customer balance.

    Hello.
    A Miscellaneous Receipt cannot be associated with a customer account. In your case i think you should use a Credit Memo with the accounting of the journal entry.
    Octavio

  • Custom property values does not show in XML forms!

    Hi All
    I have created a property in the portal which has multiple values, I have added these values in the 'Allowed Values' section. Then in my XML form I reference this property in a combo box. I have restarted the j2EE engine and opened the form and the properties are not displayed in the combo box it is blank!
    Does anyone know why?
    Thanks in advance!

    Thanks anyways...

  • Image does not show in Preview or web page

    I have a page on my website with four images. It looks fine in Design mode but in Preview mode and on the web, one of them is missing. I tried re-linking but that did not work. Suggestions??

    I haven't received anything at the [email protected] e-mail address. The file cannot be attached to a reply to this message from the forum, since the forum doesn't support attachments on e-mails. Please send a separate message with the file to [email protected] Thanks.

  • Half of my Content Does Not Show in Preview! Help!

    After editing the site, I went to preview it and half of it was missing! But when I returned to editing mode, it was all there.
    I have no idea what I did so please help!!
    Thanks

    Issue was with Google Map code that you have placed on same page.
    Embed code was not closed properly, once it is closed other contents are displayed on preview.
    I have emailed back the file to you.
    Thanks,
    Sanjit

  • How do I print an email off my ipad using Epson iprint so it does not show the preview box as well as the email?

    How do I print an actual email only from my ipad using Epson iprint without the split preview box also showing?

    No, tried that and whilst it closes the split screen when in the email app itself it still shows on the
    Epson iprint screen and email when printed off.

  • New release - audio bar does not show on preview

    Just wondering - I really need this to work. The audio is set to visible. Tested in FF, Chrome and Safari on Windows.

    Hi,
    We have released the patch (CC 2014.1.1) with the fixes to some similar issues, please give it a try and let us know if the problem still persists. More details here - Edge Animate 2014.1.1 is now live
    Regards,
    Devendra

  • WPF: How to make the first column does not show row separator and Left column separator in DataGrid?

    Our WPF application uses DataGrid.
    One of request is that first column of DataGrid does not show row separator and also does not show Left column separator. So it looks like the first column does not belong to the DataGrid. However, when select a row, the cell of first column still get selected.
    How do we make it? Thx!
    JaneC

    Hi Magnus,
    Thanks for replying our question and provide your solution!
    Your solution works by setting "HorizontalGridLinesBrush" and "VerticalGridLinesBrush" to {x:Null} in the DataGrid style and modify "CellStyle" in first column as following:
    <DataGridTextColumn MinWidth="32"
    Binding="{Binding CellName}"
    CanUserReorder="False"
    CanUserSort="False"
    Header="Cell}"
    IsReadOnly="true" >
    <DataGridTextColumn.CellStyle>
    <Style TargetType="DataGridCell">
    <Setter Property="IsEnabled" Value="False"></Setter>
    <Setter Property="Template">
    <Setter.Value>
    <ControlTemplate TargetType="{x:Type DataGridCell}">
    <Border BorderThickness="0" BorderBrush="{x:Null}"
    Background="{Binding Background, RelativeSource={RelativeSource AncestorType={x:Type DataGrid}}}" Margin="-1">
    <Grid Background="{TemplateBinding Background}" VerticalAlignment="Center" Height="42">
    <ContentPresenter VerticalAlignment="Center"/>
    </Grid>
    </Border>
    </ControlTemplate>
    </Setter.Value>
    </Setter>
    </Style>
    </DataGridTextColumn.CellStyle>
    </DataGridTextColumn>
    We found another way to achieve it by using DataGridRowHeader. The good way to use DataGridRowHeader is that we do not need to make the first column ReadOnly (click on first column does not select whole row anymore). Select RowHeader in a row will select
    whole row. Move scroll bar horizontally, the row header still keep in visible area.
    <Style TargetType="{x:Type DataGridRowHeader}" x:Key="dataGridRowHeaderStyle">
    <Setter Property="VerticalContentAlignment" Value="Center" />
    <Setter Property="HorizontalAlignment" Value="Center" />
    <Setter Property="Height" Value="42" />
    <Setter Property="SeparatorBrush" Value="{x:Null}" />
    <Setter Property="FontSize" Value="16" />
    <Setter Property="Template">
    <Setter.Value>
    <ControlTemplate TargetType="{x:Type DataGridRowHeader}">
    <Grid>
    <Border x:Name="rowHeaderBorder"
    BorderThickness="0"
    Padding="3,0,3,0"
    Background="{Binding Background, RelativeSource={RelativeSource AncestorType={x:Type DataGrid}}}"
    BorderBrush="{x:Null}">
    <ContentPresenter HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
    VerticalAlignment="{TemplateBinding VerticalContentAlignment}"
    SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" />
    </Border>
    </Grid>
    </ControlTemplate>
    </Setter.Value>
    </Setter>
    </Style>
    <DataGrid>
    <DataGrid.RowHeaderStyle>
    <Style TargetType="DataGridRowHeader" BasedOn="{StaticResource dataGridRowHeaderStyle}">
    <Setter Property="Content" Value="{Binding CellName}" />
    <Setter Property="Width" Value="35"/>
    </Style>
    </DataGrid.RowHeaderStyle>
    </<DataGrid>
    JaneC

  • The new value of bind variable does not show up after changed by PL/SQL

    Hi,
    I am running APEX 3.2. I use PL/SQL process to assign a new value to a bind variable, say, :P2_TEST := 123. The new value does not show up on the page although I can see it in the Session status.
    How can I make the new value to be displayed on the page immediately after the process is run?
    Kind regards,
    Tee

    Maybe you could use an ajax routine to refresh the item in your pl/sql routine?
    Thank you,
    Tony Miller
    Webster, TX

  • Pasted image does not show when imported to AI

    Mac OS 10.4.11 - Acrobat CS4. I made a contact sheet of images in Bridge which was saved as a PDF. In Acrobat I pasted another image (different size ratio) and saved again. However, when I placed the image in Illustrator the pasted image did not show, only the original contact images. It does not show at preview level either, but when the PDF is opened it is definitely there. I tried to 'flatten' it but cannot find a option that works.See attached file.

    I would love to help you, but I'm totally lost as to what you are trying to do.
    Here are my questions:
    Mac OS 10.4.11 - Acrobat CS4.
    There really isn't an Acrobat CS4. There is Acrobat 9 that shipped with CS4. But let's go one.
    I made a contact sheet of images in Bridge which was saved as a PDF.
    OK, that's good, I understand what you're doing.
    In Acrobat I pasted another image (different size ratio) and saved again.
    OK, this is where you lost me. Acrobat does not have a paste image ability. Exactly how did you get that image onto the Acrobat page? You copied from where? You pasted how? This is totally screwey.
    However, when I placed the image in Illustrator the pasted image did not show, only the original contact images.
    Placed what image? The original PDF contact sheet? Why are you trying to put it into Illustrator? There's no reason I can think of to do such a thing.
    PDF is usually the final output form. It isn't a page layout tool to place into other programs.
    It does not show at preview level either, but when the PDF is opened it is definitely there.
    Still trying to figure out what you talking about.
    I tried to 'flatten' it but cannot find a option that works.See attached file.
    You have totally lost me. There is no "flatten" in PDF? That's in Photoshop? What are you doing???

Maybe you are looking for