CFCHARTSERIES seriesLabel not showing on Chart

I am using CFCHART in CF10 to create a basic line graph that will have one or more series'(lines) displayed on it.  Each line is a different color and I'd like to label each line so that the user knows what each graphical implementation of data it represents(i.e. blue for series 1, red for series 2 etc).
I am having no luck getting the label to show despite trying every single possible combination of attribute/label possible.  What am I doing wrong?
<CFCHART name="my_graph" chartheight="150" chartwidth="475" format="png" showborder="no" showxgridlines="no" showygridlines="no">
<CFCHARTSERIES type="line" color="Red" seriesLabel="Test Label">
<CFCHARTDATA item="2010" value="1000" />
<CFCHARTDATA item="2011" value="2000" />
<CFCHARTDATA item="2012" value="3000" />
<CFCHARTDATA item="2013" value="4000" />
</CFCHARTSERIES>
</CFCHART>
Shouldn't serieslabel show on the graph?

Yes Stuart, the exact vi's I posted are the ones I am using.  The posted vi labeled "not working" is not working on my 2009 labview.  Again all the details are in the original post.
I am confused as well.  Like I mentioned earlier, I would rather not begin on a clean sheet because I would have to copy too much from my "work project vi" to it.  I don't know how much my management would be interested in upgrading labview, but I'll ask about it later.
I won't be back to work until Wednesday,  Later Wednesday, I'll try to post a screenshot showing the 2 vi's next to each other and show how one does not have the x scale displayed at the bottom of the chart.
Thanks again and more insight is definitely welcome.

Similar Messages

  • Programitically creating column series to flex chart not showing the chart

    I want to create n number of series dynamically when i run my
    application.
    where n can be any value it depends on the data which i
    retrieve from database. below i pasted the example
    ( in this example i have taken n = 4 i.e., CountMax=4 if i
    change the CountMax=6 then it should generate 6series dynamically
    after calculating the values. ). just copy the below code and paste
    it in Flex builder and run the application.
    in this example i am facing problem, chart series are not
    showing. i dont know the reason why its not showing, if anyone got
    the solutions for the problem please let me know. my actual
    requirement is to retrieve data from Salesforce account and want to
    populate the arraylist then display the chart.
    <?xml version="1.0"?>
    <!-- Example showing using mx:LineSeries vs using AS to
    create chart series programmatically -->
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    creationComplete="drawChart()" layout="absolute">
    <mx:Script>
    <![CDATA[
    import mx.controls.Alert;
    import mx.charts.series.ColumnSeries;
    import mx.charts.series.LineSeries;
    import mx.collections.ArrayCollection;
    [Bindable]
    public var categoryArray:ArrayCollection = new
    ArrayCollection();
    [Bindable]
    public var sArray:ArrayCollection = new ArrayCollection();
    public function drawChart():void
    var histMax:int = 25;
    var histMin:int = 5;
    var countMax:int = 6;
    var tmpArr:Array = new Array();
    categoryArray.removeAll();
    for(var n:int = 0; n < 10; n++)
    tmpArr[n] = histMin + Math.round((2 * n) / 20 * (histMax -
    histMin));
    categoryArray.addItem({data:tmpArr[n]});
    // Add a series to the chart with the x-values and y-values
    // from the arrays and set the series type to a column chart
    for(var chartSeries:int = 0; chartSeries < countMax;
    chartSeries++)
    var tmpseries:Array = new Array(10);
    for(var i:int = 1; i < 10; i++)
    tmpseries = 3 * Math.random();
    var cs:ColumnSeries = new ColumnSeries();
    columnchart1.series.join( = [cs];
    sArray.addItem({data:tmpseries});
    //columnchart1.dataProvider = sArray;
    cs = new ColumnSeries();
    cs.dataProvider= sArray;
    cs.displayName = 'Series';
    cs.yField = 'data';
    columnchart1.series[chartSeries] = cs;
    ]]>
    </mx:Script>
    <mx:Panel title="Dynamic Series Adding Sample"
    width="195%" height="90%" layout="absolute">
    <mx:ColumnChart id="columnchart1" height="338"
    width="396" showDataTips="true" type="stacked" x="10" y="0">
    <mx:horizontalAxis>
    <mx:CategoryAxis dataProvider="{categoryArray}"
    categoryField="data"/>
    </mx:horizontalAxis>
    <mx:verticalAxis>
    <mx:LinearAxis baseAtZero="true" maximum="3"
    autoAdjust="true"/>
    </mx:verticalAxis>
    </mx:ColumnChart>
    </mx:Panel>
    </mx:Application>

    <?xml version="1.0"?>
    <!-- Example showing using mx:ColumnSeries vs using AS to
    create chart series programmatically -->
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    creationComplete="drawChart()" layout="absolute">
    <mx:Script>
    <![CDATA[
    import mx.graphics.SolidColor;
    import mx.charts.HitData;
    import mx.controls.Alert;
    import mx.charts.series.ColumnSeries;
    import mx.charts.series.LineSeries;
    import mx.collections.ArrayCollection;
    [Bindable]
    public var categoryArray:ArrayCollection = new
    ArrayCollection();
    public function drawChart():void
    var histMax:int = 25;
    var histMin:int = 5;
    var countMax:int = 3;
    var tmpArr:Array = new Array();
    categoryArray.removeAll();
    for(var n:int = 0; n < 10; n++)
    tmpArr[n] = histMin + Math.round((2 * n) / 20 * (histMax -
    histMin));
    categoryArray.addItem({data:tmpArr[n]});
    var cs:ColumnSeries = new ColumnSeries();
    columnchart1.series = [cs];
    // Add a series to the chart with the x-values and y-values
    // from the arrays and set the series type to a column chart
    for(var chartSeries:int = 0; chartSeries < countMax;
    chartSeries++)
    var tmpseries:Array = new Array(10);
    for(var i:int = 0; i < 10; i++)
    tmpseries
    = 1 * Math.random();
    if(tmpseries > 0.5)
    tmpseries
    = 1;
    else
    tmpseries = 0;
    var testArrCol:ArrayCollection = new ArrayCollection();
    for(var j:int =0; j < 10; j++)
    var m:Number = tmpArr[j];
    var m1:Number = tmpseries[j];
    testArrCol.addItem({mData:m.toString(),nData:m1.toString()});
    cs = new ColumnSeries();
    cs.dataProvider = testArrCol;
    cs.displayName = 'Series' + chartSeries;
    cs.xField = 'mData';
    cs.yField = 'nData';
    columnchart1.series[chartSeries] = cs;
    public function myTipFunction(hitData:HitData):String
    return(ColumnSeries(hitData.element).displayName +" - "+
    hitData.item.mData + "\n" + "Value : "+ hitData.item.nData);
    ]]>
    </mx:Script>
    <mx:Panel title="Dynamic Series Adding Sample" width="98%"
    height="90%" layout="absolute">
    <mx:ColumnChart id="columnchart1" height="338"
    width="396" showDataTips="true" type="stacked" x="10" y="0"
    dataTipFunction="{myTipFunction}">
    <mx:horizontalAxis>
    <mx:CategoryAxis dataProvider="{categoryArray}"
    categoryField="data"/>
    </mx:horizontalAxis>
    <mx:verticalAxisRenderer>
    <mx:AxisRenderer visible="false"/>
    </mx:verticalAxisRenderer>
    </mx:ColumnChart>
    </mx:Panel>
    </mx:Application>

  • Stocks Application Will not Show Most Charts - Any Fix?

    Hello,
    My Stocks app comes up with the message "Error Retrieving Chart" most of the time when I change to a different chart time scale.
    Anyone have any ideas on a fix?
    Thanks!

    If you mean CFX.UN.TO, that stock will show only 1 week or 1 day charts - all other time frames give "error retrieving" message. Since all other stocks retrieve all time frames, the problem is due to the data not being available from the source, not the app in the iPhone. If you go to the Yahoo source (touch the "Y!" in the lower left corner), the data is not available there either.

  • Programitically adding column series in flex chart is not showing the chart

    <?xml version="1.0"?>
    <!-- Example showing using mx:LineSeries vs using AS to
    create chart series programmatically -->
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    creationComplete="drawChart()" layout="absolute">
    <mx:Script>
    <![CDATA[
    import mx.controls.Alert;
    import mx.charts.series.ColumnSeries;
    import mx.charts.series.LineSeries;
    import mx.collections.ArrayCollection;
    [Bindable]
    public var categoryArray:ArrayCollection = new
    ArrayCollection();
    [Bindable]
    public var sArray:ArrayCollection = new ArrayCollection();
    public function drawChart():void
    var histMax:int = 25;
    var histMin:int = 5;
    var countMax:int = 6;
    var tmpArr:Array = new Array();
    categoryArray.removeAll();
    for(var n:int = 0; n < 10; n++)
    tmpArr[n] = histMin + Math.round((2 * n) / 20 * (histMax -
    histMin));
    categoryArray.addItem({data:tmpArr[n]});
    // Add a series to the chart with the x-values and y-values
    // from the arrays and set the series type to a column chart
    for(var chartSeries:int = 0; chartSeries < countMax;
    chartSeries++)
    var tmpseries:Array = new Array(10);
    for(var i:int = 1; i < 10; i++)
    tmpseries
    = 3 * Math.random();
    var cs:ColumnSeries = new ColumnSeries();
    columnchart1.series.join( = [cs];
    sArray.addItem({data:tmpseries});
    //columnchart1.dataProvider = sArray;
    cs = new ColumnSeries();
    cs.dataProvider= sArray;
    cs.displayName = 'Series';
    cs.yField = 'data';
    columnchart1.series[chartSeries] = cs;
    ]]>
    </mx:Script>
    <mx:Panel title="Dynamic Series Adding Sample"
    width="195%" height="90%" layout="absolute">
    <mx:ColumnChart id="columnchart1" height="338"
    width="396" showDataTips="true" type="stacked" x="10" y="0">
    <mx:horizontalAxis>
    <mx:CategoryAxis dataProvider="{categoryArray}"
    categoryField="data"/>
    </mx:horizontalAxis>
    <mx:verticalAxis>
    <mx:LinearAxis baseAtZero="true" maximum="3"
    autoAdjust="true"/>
    </mx:verticalAxis>
    </mx:ColumnChart>
    </mx:Panel>
    </mx:Application>

    <?xml version="1.0"?>
    <!-- Example showing using mx:ColumnSeries vs using AS to
    create chart series programmatically -->
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    creationComplete="drawChart()" layout="absolute">
    <mx:Script>
    <![CDATA[
    import mx.graphics.SolidColor;
    import mx.charts.HitData;
    import mx.controls.Alert;
    import mx.charts.series.ColumnSeries;
    import mx.charts.series.LineSeries;
    import mx.collections.ArrayCollection;
    [Bindable]
    public var categoryArray:ArrayCollection = new
    ArrayCollection();
    public function drawChart():void
    var histMax:int = 25;
    var histMin:int = 5;
    var countMax:int = 3;
    var tmpArr:Array = new Array();
    categoryArray.removeAll();
    for(var n:int = 0; n < 10; n++)
    tmpArr[n] = histMin + Math.round((2 * n) / 20 * (histMax -
    histMin));
    categoryArray.addItem({data:tmpArr[n]});
    var cs:ColumnSeries = new ColumnSeries();
    columnchart1.series = [cs];
    // Add a series to the chart with the x-values and y-values
    // from the arrays and set the series type to a column chart
    for(var chartSeries:int = 0; chartSeries < countMax;
    chartSeries++)
    var tmpseries:Array = new Array(10);
    for(var i:int = 0; i < 10; i++)
    tmpseries
    = 1 * Math.random();
    if(tmpseries > 0.5)
    tmpseries
    = 1;
    else
    tmpseries = 0;
    var testArrCol:ArrayCollection = new ArrayCollection();
    for(var j:int =0; j < 10; j++)
    var m:Number = tmpArr[j];
    var m1:Number = tmpseries[j];
    testArrCol.addItem({mData:m.toString(),nData:m1.toString()});
    cs = new ColumnSeries();
    cs.dataProvider = testArrCol;
    cs.displayName = 'Series' + chartSeries;
    cs.xField = 'mData';
    cs.yField = 'nData';
    columnchart1.series[chartSeries] = cs;
    public function myTipFunction(hitData:HitData):String
    return(ColumnSeries(hitData.element).displayName +" - "+
    hitData.item.mData + "\n" + "Value : "+ hitData.item.nData);
    ]]>
    </mx:Script>
    <mx:Panel title="Dynamic Series Adding Sample" width="98%"
    height="90%" layout="absolute">
    <mx:ColumnChart id="columnchart1" height="338"
    width="396" showDataTips="true" type="stacked" x="10" y="0"
    dataTipFunction="{myTipFunction}">
    <mx:horizontalAxis>
    <mx:CategoryAxis dataProvider="{categoryArray}"
    categoryField="data"/>
    </mx:horizontalAxis>
    <mx:verticalAxisRenderer>
    <mx:AxisRenderer visible="false"/>
    </mx:verticalAxisRenderer>
    </mx:ColumnChart>
    </mx:Panel>
    </mx:Application>

  • SCOM 2012 SP1 - Scheduled Report not showing any chart

    We have created 2 Scheduled Reports based on the Performance and Performance Details reports.
    The Scheduled Reports run every day and create a PDF file in the file share.
    The Reports however don't contain any charts. Selecting other output formats gives the same results...no charts. There no errors visible and no errors reported in the EventLogs.
    Does anyone know what might be the cause of this?

    Hi,
    Please ensure the reporting service is configured correctly. Meanwhile, check if the following KB is helpful.
    http://support.microsoft.com/kb/972821
    Niki Han
    TechNet Community Support

  • Charts are not showing up on OBIEE 111160 on Windows 2008 64 bit

    Hi,
    We have installed OBIEE 111160 on Windows server 2008 64 bit. We pointed our RPD and web catalog to OBIEE 111160. But, some of our reports are not showing the chart view. We are able to see data in table view. If we run the same RPD and web catalog on Windows server 2003 32 bit with OBIEE 111160, the reports are showing chart view.
    Can anybody help..
    Thanks,
    Anilesh

    I'm running 11g in same config as you, for me no issues.
    Not sure exact reason but try these checks
    Control Panel->Java : open it
    goto Java tab, click View see how many jre are available. If the jre is out side of OFM_HOME make sure you have it in CLASSPATH.
    if this is not working out try to set OFM_HOME\Oracle_BI1\jdk\jre, enable it and try.
    Let me know updates :)

  • Crystal Report Chart not showing up in Web Portal

    I have a created a chart using Crystal Reports(runs fine in Crystal) and published it on our Report Server. When I went to look at the report on our Web portal, the text objects were visible however the chart was not. Portal is in JSF technology (IceFaces) on JBoss server.
    Anyone know why this happening?
    I founded post
    [Re: Crystal Viewer in Servlet does not show graphics|Re: Crystal Viewer in Servlet does not show graphics]
    I have this in web.xml
    <context-param>
             <param-name>crystal_image_uri</param-name>
             <param-value>/my_app_name/crystalreportviewers115</param-value>
    </context-param>
    But in URL like this one
    /my_app_name/crystalreportviewers115/crystalimagehandler.jsp?dynamicimage=crystal7652571164231307864.png
    I haven't file "crystalimagehandler.jsp" I also didn't found "crystal7652571164231307864.png" file. how to resolve this problem?

    Yes I did. I created file "crystalreportviewers115" in my "WEB-INF" and coped there all file from "C:\Program Files\Business Objects\Common\4.0\crystalreportviewers12\".
    In tutorial which i founded [here|http://devlibrary.businessobjects.com/businessobjectsxir2/en/en/JRC_SDK/jrc_java_dg_doc/doc/jrcsdk_java_dg/Tutorials2.html#1459845] they saying that I must copy file "crystalreportviewers115" but in my case I have "crystalreportviewers12" and:
    - ChartSupport
    - java
    - managed
    In my case i haven't file "crystalreportviewers115" but "crystalreportviewers12".
    In eclipse the structure of my app (its "Dynamic Web Project") looks like:
    - myapp:
    _______ src
    _______ crystalreportviewers115
    _______ WebContent:
    _________________ WEB-INF
    Any advice?

  • Charts are not showing up in WEBI after the SAP Integration

    folks,
                  I have successfully iinstalled the following
                  BOBJ XI R3.1 Java version
                  Crystal Reports 2008 with SP1
                  Xcelsius 2008 enterprise
                  SAP GUI
                  Java Connector
                  SAP Integration tool kit.
    Now in WEBI when I want to draw some charts which are not showing up. Please give me some suggestions.
    Regards,
    preddy

    HI,
    I would suggest you open this in the WEb Intelligence forum unless this only happens with SAP based reports.
    Ingo

  • Charts are not showing up in WEBI

    folks,
    I have successfully iinstalled the following
    BOBJ XI R3.1 Java version
    Crystal Reports 2008 with SP1
    Xcelsius 2008 enterprise
    SAP GUI
    Java Connector
    SAP Integration tool kit.
    Now in WEBI when I want to draw some charts which are not showing up. Please give me some suggestions.
    Regards,
    preddy

    XCelsius 2008 SP3 is a full version of XCelsius. Just want to know if you install this version of your BOBJ server. I have heard that there may be problems with WebI after you install this version of XCelsius on your BOJB server.
    I would recommend to avoid this and install XCelsius on a separate machine.
    Regards,
    Stratos

  • Help with Datatip Not showing on 2 different charts at the same time

    What's up guys?  I am building a massive application and came across an issue. I was able to create a smaller flex application that recreate the problem. Basically its about the datatip. Let's say you have a Main application with tab navigation that calls 2 different modules:  Module A, and Module B. Module A has a piechart with datatip enabled. Module B has a linechart with datatip also enabled. For some reason the piechart datatip are showing while the linechart datatip are not showing on mouse over (only on click). Any idea what's going on or how to fix it so that both charts show their datatip on mouse over? -Thank you
    Here are the codes below:
    MAIN APPLICATION:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" paddingTop="20">
        <mx:VBox paddingTop="50" width="80%" height="100%" paddingLeft="50">       
                <mx:TabNavigator width="80%" height="100%" >           
                    <mx:VBox label="Module A" >
                        <mx:ModuleLoader url="tester2.swf" width="100%" height="100%"/>
                    </mx:VBox>
                    <mx:VBox label="Module B" mouseChildren="true" >
                        <mx:ModuleLoader url="tester.swf" width="100%" height="100%" />
                    </mx:VBox>                   
                </mx:TabNavigator>   
        </mx:VBox>   
    </mx:Application>
    Module A:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Module xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"   xmlns:local="assets.*"  initialize="_onInitialize( event )">
        <mx:Script>
            <![CDATA[
                import mx.controls.Alert;
                import mx.events.FlexEvent;
                import mx.collections.ArrayCollection;
                [Bindable] private var _chartDP:ArrayCollection;
                private function mouser(event:MouseEvent):void
                    Alert.show("RPG");
                private function  _onInitialize( event:FlexEvent ):void
                    // set up our chart data
                    _chartDP = new ArrayCollection();
                    _chartDP.addItem( { quarter:1, shooter:1000, racing:400, rpg:550 } );
                    _chartDP.addItem( { quarter:2, shooter:875, racing:230, rpg:600 } );
                    _chartDP.addItem( { quarter:3, shooter:920, racing:310, rpg:512 } );
                    _chartDP.addItem( { quarter:4, shooter:750, racing:130, rpg:489 } );
            ]]>
        </mx:Script>
        <!-- defining the chart -->
        <mx:LineChart id="gameSales_chrt"   
           dataProvider="{ _chartDP }" showDataTips="true"  y="45" x="83" >
            <!-- Setting our Axis/Axes -->
            <mx:horizontalAxis>
                <mx:CategoryAxis categoryField="quarter" title="Sales Quarter" />
            </mx:horizontalAxis>   
            <!-- Set up our data series -->   
            <mx:series >
                <mx:LineSeries yField="shooter" displayName="First Person Shooter" form="segment" />
                <mx:LineSeries yField="racing" displayName="Racing Simulation" form="segment" />
                <mx:LineSeries yField="rpg" displayName="Role Playing Game" form="segment"  />
            </mx:series>
        </mx:LineChart>
        <!-- Set up the legend for the chart -->
        <mx:Legend dataProvider="{ gameSales_chrt }" direction="horizontal"  x="121" y="10"/>
    </mx:Module>
    Module B:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Module xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"  initialize="_onInitialize( event )">
        <mx:Script>
            <![CDATA[
                import mx.events.FlexEvent;
                import mx.collections.ArrayCollection;
                [Bindable] private var _chartDP:ArrayCollection;
                private function  _onInitialize( event:FlexEvent ):void
                    // set up our chart data
                    _chartDP = new ArrayCollection();
                    _chartDP.addItem( { genre:"Shooter", quarter1:1000, quarter2:932,  quarter3:845, quarter4:663 } );
                    _chartDP.addItem( { genre:"Racing",  quarter1:565,  quarter2:875,  quarter3:732, quarter4:432 } );
                    _chartDP.addItem( { genre:"RPG",     quarter1:432,  quarter2:743,  quarter3:531, quarter4:289 } );
            ]]>
        </mx:Script>
        <!-- defining the chart -->
        <mx:PieChart id="gameSales_chrt"   
           dataProvider="{ _chartDP }"
           showDataTips="true" y="60" x="10">
            <!-- Set up our data series -->   
            <mx:series>
                <mx:PieSeries
                    nameField="genre"
                    field="quarter2"
                    labelPosition="insideWithCallout" />
            </mx:series>
        </mx:PieChart>
        <!-- Set up the legend for the chart -->
        <mx:Legend dataProvider="{ gameSales_chrt }" direction="horizontal"  y="10" x="24"/>
    </mx:Module>

    Well upon using the debug function and having a stop at the show datatip static function, i came across this error
    TypeError: Error #1034: Type Coercion failed: cannot convert mx.managers::DragManagerImpl@195b9b21 to mx.managers.IDragManager.
    at mx.managers::DragManager$/get impl()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\managers\DragManager.as:15 2]
    at mx.managers::DragManager$/get isDragging()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\managers\DragManager .as:187]
    at mx.charts.chartClasses::ChartBase/processRollEvents()[C:\work\flex\dmv_automation\project s\datavisualisation\src\mx\charts\chartClasses\ChartBase.as:2310]
    at mx.charts.chartClasses::ChartBase/mouseMoveHandler()[C:\work\flex\dmv_automation\projects \datavisualisation\src\mx\charts\chartClasses\ChartBase.as:4308]

  • Chart is not showing in Web Query

    Hi,
    I tried to display the query in web. The table was showing fine with all the information.
    However, when I clicked the graph tab for showing the information in chart, the chart is not showing and I got an error message saying 'Chart "GR2Chart": Data Provider does not contain any data'
    Do you think I need to create the chart first using Web Application Designer?
    Thanks a lot for your help.

    Hi all,
    Thanks a lot for the answers. Unfortunately, the problem can't be solved yet.
    I have asked the BASIS to check IGS Service, and it has been installed and has been restarted too but it didn't help.
    Regarding the web application designer, we don't need to create the web layout on web application designer right? You can publish the query automatically from web publish button on query designer. Only workbooks that we need to create the web layout on web application designer.
    It's just wierd that the table is showing the data but on the chart, it's saying there is no data.
    Thanks for your help by the way.

  • 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.

  • Chart on SumTotals does not show anything

    I am creating a spreadsheet that shows the total amount of water we use at our company on a daily basis. I created a sum total for the weekly totals of the different areas we have and when I try to create any type of chart, it will show the different areas on the legend however it will not show any of the data in the actual chart. I have no idea how to transfer sum total info to a chart. Any help will be greatly appreciated.

    Thank you all for your replies and suggestions. That is exactly the problem. The fields that I am doing I set the cell format to duration (i.e. h: mm etc) When I took those away and only the numbers appeared, I was able to create a chart. Too bad their isn't away you can have the cell format set to duration for example and have the chart show actual hours:min vs a total number. Or is there a way??? You have been a great help everyone. Please let me know if you know if that is possible to show duration in the cell format and create a chart. I don't know how to post a screenshot but this is the data I am using below. Sorry it is not the best format on this chat.
    Zone Sunday Monday Tuesday Wednesday Thursday Friday Saturday Totals
    1 20m 20m 20m 20m 20m 20m 20m 2h 20m
    2 15m 15m 15m 15m 15m 15m 15m 1h 45m
    3 2h 2h 0m
    4 35m 35m 35m 35m 35m 35m 35m 4h 5m
    5 35m 35m 35m 35m 35m 35m 35m 4h 5m
    6 12m 12m 12m 12m 12m 12m 12m 1h 24m
    Total Min 3:57 1:57 1:57 1:57 1:57 1:57 1:57 15:39

  • Charts not showing on report

    I've had crystal reports running for some time on our dedicated Internet server. This has been working OK for the last 10 months.
    I've added a new report which now uses charts however I'm having problems in that the chart does not get displayed. No red cross, just a blank white image with no chart.
    I've reviewed many support forums and as a result have doubled checked all entries in my web.config and file permissions on temporary file locations. Everything seems OK...
    I would point the blame at either something to do with the handlers surrounding CrystalImageHandler.aspx or file permissions, but what I don't understand is that embedded images within the report are working perfectly OK. It is  just the chart which is not showing.
    I double checked the image http location and both my embedded image and chart use the CrystalImageHandler.
    Embedded Image:
    http://mydomain.com/auth/CrystalImageHandler.aspx?dynamicimage=cr_tmp_image_5ba728a0-45a7-4732-938f-9ec0e0f9231a.png
    Chart:
    http://mydomain.com/auth/CrystalImageHandler.aspx?dynamicimage=cr_tmp_image_d4217261-ff67-48d5-97a8-be1fc6bdbe4e.png
    Even tried these in new browser windows. The first address shows, the second just shows a blank image.
    I've tried the exact same report from my local host and it works perfectly ok.
    I've also tried running procmon on the server to try and identify any ACCESS DENIED messages but none are shown.
    Any ideas to what might be wrong?
    Im using Crystal Reports 2008 with .Net 3.5 (Visual Studio 2008) on IIS7 Windows 2008 Server.
    Thanks in advance.
    James

    I tried to register the DLL however,
    regsvr32.exe "c:\Program Files (x86)\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\sscsdk80.dll"
    generates the following windows error:
    The module "c:\Program Files (x86)\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\sscsdk80.dll" failed to load.
    Make sure the binary is stored art the specified path or debug it to check for problems with the binary od dependent .DLL files.
    The application has failed to start because its side-by side configuration is incorrect. Please see the application log for more detail.
    Appliction log entry
    Activation context generation failed for "c:\Program Files (x86)\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\sscsdk80.dll". Dependent Assembly Microsoft.VC80.CRT,processorArchitecture="x86",publicKeyToken="1fc8b3b9a1e18e3b",type="win32",version="8.0.50727.4053" could not be found. Please use sxstrace.exe for detailed diagnosis.
    I've run procmon and examined w3wp.exe on just processes and threads and everthing qappears to be OK, everything reports as SUCCESS. I've uploaded the output here:
    http://www.fastlanesystems.co.uk/tmp/08122010-crystal-chart-issue-procexplorer.txt
    Any other ideas to why this might not be working?
    Thanks
    James

  • I am trying to update a chart in Pages that I created in Numbers, but the refresh button does not show up after I save the Numbers file. Thoughts?

    I am trying to update a chart in Pages that I created in Numbers, but the refresh button does not show up after I save the Numbers file. Thoughts?

    It is hard to exactly understand what you have  done or not by you one sentence description. My thought is have you read in the Pages User Guide? Here is what it says about updating a chart in Pages:
    Updating a Chart Copied from a Numbers Document
    If you’ve created a chart in Numbers, you can copy it and paste it into your Pages document. After it’s been pasted into Pages, the chart remains linked to the data tables it references in Numbers. To change the chart data, open the original Numbers document and edit the data there, save the Numbers document, and then refresh the chart data in Pages.To update a chart after you’ve updated its linked Numbers table:
       Select the chart on the page and click the Refresh button that appears.
    Note: You must save the Numbers document before copying and pasting your chart into your Pages document and after editing the Numbers data tables that the chart references.
    I hope it has helped you.

Maybe you are looking for

  • Using 'save as...' and the options panel to optimize

    When I take a JPG and use "save as..." then select 'options' I can't seem to change the file size manually.  When the options window opens after I do save as, I go through the regular process of using the slider to change the percentage of quality. 

  • Error in sending HR Master data to CRM - PFAL error

    HI expert , I am sending HR master data to CRM system through PFAL transation. I am using HRMD_ABA message type to send the data. While executing i am getting the error like this " Internal error: Program read table idoc_structure, command data_selec

  • Alter screen field layout in MIRO - Item level

    Dear All, I would like to know whether I can change the field sequence in MIRO transaction at the item level. I want to move the Reference Doc field (GRN No)  next to the item field in MIRO and this needs to be premanent whenever I create a new invoi

  • Outline drawing help

    Hi all I have been working on an outline drawing from an image using this tutorial: http://virtualphotographystudio.com/photographyblog/2008/12/17/use-photoshop-to- create-a-line-drawing-from-a-digital-image/ everything works great the only thing I a

  • Error Message upon boot up/log on - DirectAccess Connectivity Assistant is not working as expected

    I get that message upon logon to the system.  The full message of the error box is The DirectAccess Connectivity Assistant service is not running.  Restart the service, or contact the site administrator. BUT...it is running.  It is like the DCA isn't