LIne up Legend entries with stacked chart

I have an appliction where on the front panel I need to display anywhere from 1 to 16 channels in a stacked waveform plot.  for ease of viewing, I would like the entries in the plot legend to line up with their respective channels in the graphs, similar to the rather crude picture i'm attaching.  The hangup in this is I need to be able to vary the number of charts displayed, 16 max, during runtime.
In my mind, one option is to go with subpanels and have a panel setup for each number of channels i wish to display.  However, I think this would be easier if it were supported by the Waveform Chart itself.  I'm open to any and all suggestions.  Thanks!!!

If your plot areas are that narrow you can resize the default plot legend text size to meet the size of one plot window. Like this:
The number of plot legend lines shown can be adjusted by using Create -> Property Node -> Legend -> Number of Rows.
Also you can select which plot will be visible/invisible in any given time by using Property Node -> Active Plot and Property Node -> Plot -> Visible combination. 
Message Edited by Giedrius.S on 02-15-2010 06:40 PM
Message Edited by Giedrius.S on 02-15-2010 06:45 PM
While evaluating my code please have in mind that I am a LV novice. Therefore sometimes my code might violate some coding rules that I have to learn about myself. But how else could I do that...
Chart zoom with "Mouse Over" effect

Similar Messages

  • Hiding legend entry in line chart

    i hide the line series lineSeries
         lineSeries.visible=false;
    but its legend entry is shown on the chart.
    How can I hide the legend entry to hidden line series?

    Hi Asif,
    You need to write some ActionScript to acheive this functionality...Its not that simple just as you make lineseries visible=false...the legend item will go
    away...You need to explicitly remove and add series...as shown in code below:
    <?xml version="1.0"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
        <mx:Script>
            <![CDATA[
            import mx.collections.ArrayCollection;
            [Bindable]
            private var expensesAC:ArrayCollection = new ArrayCollection( [
                { Month: "Jan", Profit: 2000, Expenses: 1500, Amount: 450 },
                { Month: "Feb", Profit: 1000, Expenses: 200, Amount: 600 },
                { Month: "Mar", Profit: 1500, Expenses: 500, Amount: 300 },
                { Month: "Apr", Profit: 1800, Expenses: 1200, Amount: 900 },
                { Month: "May", Profit: 2400, Expenses: 575, Amount: 500 } ]);
            private function addLineSeriesToChart(item:String):void 
          var isFound:Boolean = false;
          for ( var i:int = 0; i < lineChart.series.length; i++ ) 
           if ( lineChart.series[i].yField == item ) 
             isFound = true;
           if(!isFound)
           var newLS:LineSeries = new LineSeries(); 
           newLS.yField = item;
           newLS.displayName = item; 
           var tmp:Array = lineChart.series;  
           tmp.push(newLS); 
           lineChart.series = tmp;  
           lineChart.invalidateSeriesStyles();
            private function removeLineSeriesFromChart(item:String):void 
           var objToRemoveIndex:int;
           var isFound:Boolean = false;
           for ( var i:int = 0; i < lineChart.series.length; i++ ) 
           if ( lineChart.series[i].yField == item ) 
            objToRemoveIndex = i; 
            isFound = true;
           if(isFound)
            var tmp:Array = lineChart.series;
            tmp.splice(objToRemoveIndex,1);
            lineChart.series = tmp;
            lineChart.invalidateSeriesStyles();
      private function addProfitLineSeries():void 
       addLineSeriesToChart("Profit");
      private function removeProfitLineSeries():void 
       removeLineSeriesFromChart("Profit");
            ]]>
        </mx:Script>
        <mx:HBox width="100%" horizontalAlign="center">
      <mx:Button label="Add Profit Series" click="addProfitLineSeries()" />
      <mx:Button label="Remove Profit Series" click="removeProfitLineSeries()" />
        </mx:HBox>
        <!-- Define custom colors for use as fills in the AreaChart control. -->
        <mx:SolidColor id="sc1" color="blue" alpha=".3"/>
        <mx:SolidColor id="sc2" color="red" alpha=".3"/>
        <mx:SolidColor id="sc3" color="green" alpha=".3"/>
        <!-- Define custom Strokes. -->
        <mx:Stroke id = "s1" color="blue" weight="2"/>
        <mx:Stroke id = "s2" color="red" weight="2"/>
        <mx:Stroke id = "s3" color="green" weight="2"/>
        <mx:Panel title="LineChart and AreaChart Controls Example"
            height="100%" width="100%" layout="horizontal">
            <mx:LineChart id="lineChart" height="100%" width="45%"
                paddingLeft="5" paddingRight="5"
                showDataTips="true" dataProvider="{expensesAC}">
                <mx:horizontalAxis>
                    <mx:CategoryAxis categoryField="Month"/>
                </mx:horizontalAxis>
                <mx:series>
                    <mx:LineSeries id="lineSeriesProfit" yField="Profit" form="curve" displayName="Profit" lineStroke="{s1}"/>
                    <mx:LineSeries yField="Expenses" form="curve" displayName="Expenses" lineStroke="{s2}"/>
                    <mx:LineSeries yField="Amount" form="curve" displayName="Amount" lineStroke="{s3}"/>
                </mx:series>
            </mx:LineChart>
            <mx:Legend dataProvider="{lineChart}"/>
        </mx:Panel>
    </mx:Application>
    If this post answers your question or helps, please kindly mark it as such.
    Thanks,
    Bhasker Chari

  • Chart - problem with stack

    Hello,
    Ive got 3 problems with stack plots:
    1. In the legend, the first value of table is the last one, why?
    2. Always when i remove one value(in this case i turn off button), the last chart is remove
    3. When I turn off the second button(rest is on), the plot name in legend is doubled.
    Does anyone have an idea what i can do with this?
    thanks for any answers.
    Solved!
    Go to Solution.
    Attachments:
    Desktop.zip ‏24 KB

    Well, you simply need to code it differently.
    Try this:
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    top-levelMOD2.vi ‏13 KB

  • How do I set default colors for XY chart series (lines and legend)

    I am implementing a line chart and need to override the default (caspian style) colors for the line colors and the legend symbols. I'm not displaying the chart symbols themselves as that would make the chart look bad. I've been able to successfully set the default colors for the lines via the CSS below, but cannot find a way to do the same for the series symbols that appear in the chart legend. How do I do this? Thanks.
    .default-color0.chart-series-line {
      -fx-stroke: rgb(0, 102, 255);
    .default-color1.chart-series-line {
      -fx-stroke: rgb(0, 255, 102);
    ...Update:
    Figured it out. Need to do the following:
    .default-color0.chart-line-symbol {
      -fx-background-color: rgb(R, G, B);
    }Edited by: 998038 on May 16, 2013 4:09 PM

    Here is some css to customize the line and legend colors in a line chart.
    /** file: chart.css
        place in same directory as LineChartWithCustomColors.java */
    .default-color0.chart-series-line {
      -fx-stroke: rgb(0, 102, 255);
    .default-color1.chart-series-line {
      -fx-stroke: rgb(0, 255, 102);
    .default-color0.chart-line-symbol {
      -fx-background-color: rgb(0, 102, 255), white;
    .default-color1.chart-line-symbol {
      -fx-background-color: rgb(0, 255, 102), white;
    }And a test harness to try it:
    import javafx.application.Application;
    import javafx.event.*;
    import javafx.scene.Scene;
    import javafx.scene.chart.*;
    import javafx.scene.control.*;
    import javafx.scene.input.*;
    import javafx.stage.Stage;
    public class LineChartWithCustomColors extends Application {
        @Override public void start(final Stage stage) {
            stage.setTitle("Line Chart Sample");
            //defining the axes
            final NumberAxis xAxis = new NumberAxis();
            xAxis.setLabel("Number of Month");
            final NumberAxis yAxis = new NumberAxis();
            //creating the chart
            final LineChart<Number,Number> lineChart =
                    new LineChart<>(xAxis,yAxis);
            lineChart.setTitle("Stock Monitoring, 2010");
            lineChart.setCreateSymbols(false);
            //defining a series
            XYChart.Series series = new XYChart.Series();
            series.setName("My portfolio");
            //populating the series with data
            series.getData().setAll(
              new XYChart.Data(1, 23),
              new XYChart.Data(2, 14),
              new XYChart.Data(3, 15),
              new XYChart.Data(4, 24),
              new XYChart.Data(5, 34),
              new XYChart.Data(6, 36),
              new XYChart.Data(7, 22),
              new XYChart.Data(8, 45),
              new XYChart.Data(9, 43),
              new XYChart.Data(10, 17),
              new XYChart.Data(11, 29),
              new XYChart.Data(12, 25)
            lineChart.getData().add(series);
            //adding a context menu item to the chart
            final MenuItem resizeItem = new MenuItem("Resize");
            resizeItem.setOnAction(new EventHandler<ActionEvent>() {
              @Override public void handle(ActionEvent event) {
                System.out.println("Resize requested");
            final ContextMenu menu = new ContextMenu(
              resizeItem
            lineChart.setOnMouseClicked(new EventHandler<MouseEvent>() {
              @Override public void handle(MouseEvent event) {
                if (MouseButton.SECONDARY.equals(event.getButton())) {
                  menu.show(stage, event.getScreenX(), event.getScreenY());
            Scene scene =
              new Scene(
                lineChart,800,600
            stage.setScene(
              scene
            stage.show();
            scene.getStylesheets().add(
              getClass().getResource("chart.css").toExternalForm()
        public static void main(String[] args) {
            launch(args);
    }

  • Charting with stacked hybrid plot - how do I?

    Is there a way to stack column and line charts?
    I want the same CartesianChart to have bars with multiple
    series, and centered above them, I would like lines. I can get the
    lines and columns on the same chart, but I dont' want the line
    chart overlaid on top of the column chart. I want the line chart to
    be above the bars.
    LINE DATA HERE (axis from 0-100)
    COLUMN DATA HERE (axis from 0-1 million)
    Both will have to use the same Horizontal Access though. Does
    anyone know how to do this? Do I have to write some custom
    DataTransform or something? I would think that making
    non-overlapping charts should be easy.

    x = 0:0.01:20;
    y1 = 200*exp(-0.05*x).*sin(x);
    y2 = 0.8*exp(-0.5*x).*sin(10*x);
    plotyy(x,y1,x,y2);
    axis([0,20,-200,200]);
    xlabel('Time (\musec)');
    ylabel('Fast decay');
    title('Multiple Decay Rates');
    How do I write the 2nd Y title to 'Slow Decay'?

  • Help with stacked bar charts

    Help..................
    I am definitely missing something.
    I want to do something like the attached, stacked bar chart example.  This is pretty much
    one of the examples.
    What I need is for a horizontal chart instead of a vertical.  When I right click the legend and
    chose bar charts, it only shows vertical.  After messing with this for a couple of hours,
    I give.
    Any suggestions would be much appreciated.
    Attachments:
    Stacked Bar Graph.vi ‏43 KB

    Another stacked bar graph plea for help!
    My scenario: I am recording 3ph current values (red, yellow, blue) on multiple circuits for some electrical tests we do.
    I want to present this data on a screen that is most visible from a distance, so the approach I have taken when I last wrote the software in Delphi was to have each 3 ph circuit represented by a 3 channel bar chart where the three channels are stacked front to back in order of magnitude. This allowed me to add multiple 3 channel circuits next to these to fill the screen from left to right.
    See attached Excel file to make it clear. I hope!
    The main issue I see is that the colour of plot needs to move front to back with the magnitude. ie Red is not always the front plot, it is the 'smallest' of the three plots that stays at the front.
    Some tests we do, may have 12 x 3ph circuits of this type which fills the screen up and can make it very busy. Rather than having 36 plots left to right, by stacking them in groups of three, I reduce the left to right number to 12 plots. The screen can then be viewed from a distance much easier.
    Any suggestions? I am expecting I will need to write my own routine for this, which if I do, i am quite happy to share when complete.
    See (and run) the attached LabVIEW code of my progress so far.
    thanks  Adam
    Message Edited by tca-adam on 11-16-2006 01:27 PM
    Attachments:
    Stacked Bars example.xls ‏24 KB
    Create CurrBal Graph Data.vi ‏21 KB

  • Create log entries with command-line client?

    I am getting an error message that seems to indicate that it's impossible to create log entries with the command-line client. Can I ask one of you FCS gurus to advise me?
    Note the disturbing error message below: *Entity /log doesn't know how to do create*
    root# ./fcsvr_client create /log --xml < /tmp/logentry.xml
    <?xml version="1.0"?>
    <session>
    <values>
    <value id="CODE">
    <atom>E_NOTSUPP</atom>
    </value>
    <value id="DESC">
    <string xml:space="preserve">Entity /log doesn't know how to do create</string>
    </value>
    <value id="SRC_FILE">
    <string xml:space="preserve">PmdEntity.C</string>
    </value>
    <value id="SRC_LINE">
    <int>2017</int>
    </value>
    <value id="ERROR_TYPE">
    <atom>ET_PERM</atom>
    </value>
    <value id="ADDRESS">
    <string xml:space="preserve">/log</string>
    </value>
    </values>
    </session>
    root# cat /tmp/logentry.xml
    <?xml version="1.0"?>
    <session>
    <values>
    <value id="LOGASSETID">
    <string xml:space="preserve">26</string>
    </value>
    <value id="LOG_DETAIL">
    <string xml:space="preserve">I am your log entry detail.</string>
    </value>
    <value id="LOG_STATUS">
    <string xml:space="preserve">OK</string>
    </value>
    <value id="LOG_TYPE">
    <atom>response</atom>
    </value>
    <value id="LOG_USER">
    <string xml:space="preserve">admin</string>
    </value>
    <value id="LOG_SUMMARY">
    <string xml:space="preserve">Log Summary from Command-Line</string>
    </value>
    </values>
    </session>
    Message was edited by: dpotter-ntc

    Hmm, no, my 1.5.2 instance logs script responses twice- once to say it is executing and again after the process terminates to say that it ran. The second entry is where any stdout is printed. I don't know of any setting that would turn this off, it has always been there for me.
    A typical script response log entry looks like this:
    Summary
    "response \[Response Title] script triggered by Subscription \[Subscription Title] complete"
    Detail
    "response complete, completed command /fcsvrbin/\[scriptname.sh] with arguments { 43, 8 } "
    "stdout would print here, if there is any"
    You probably already tried it, but try filtering your log search for "script triggered" since it can be easy to miss spotting entries on a busy system, and they don't necessarily show up side by side in the logs with the other responses in their respective stack.

  • Formatting the legend of a stacked bar chart

    Hi,
    Is it possible to change/edit the legend part of a stacked bar chart right now I am getting the legend as"
    [Color Code1]                   Sum of [TableName].Column Name1
    [Color Code2]                   Sum of [Table Name].Column Name2
    [Color Code3]                   Sum of [Table Name].Column Name3
    etc...
    and I would like this to be displayed as
    [Color Code1]                   Column Name1
    [Color Code2]                   Column Name2
    [Color Code3]                   Column Name3
    Thanks,
    ii xi
    Edited by: ii.xii on Jan 9, 2012 4:47 PM

    Well, the only way to edit that is to select the Legend entry (In Preview Mode Only) > Right-click > Edit Axis Label.
    You would need to do this for every Legend entry.
    -Abhilash

  • Unable to create PR with Service Line & also no entry in ESLH table using

    Hi Experts,
    I am using BAPI => BAPI_REQUISITION_CREATE to create PR and it is successful to create PR but when I try to create PO is become fail (proably missing entry in ESLH table).
    Now my requirement is to create PR with Service Line and an entry in ESLH table (should be filled by SAP automatically). I have been passing the service related/account assigment tables into BAPI but still not working.
    Will you please give a solution to create PR with Service Line and also need an entry in ESLH table (its important to my req)?
    Also provide some input on Service Line, if possible(How to check Service Line for PR + Account Assignment to Service Line + etc.)?
    Note that: If I create PR manually then there have entry in ESLH and hence I can create PO.
    Definately the quick solution help me lot...
    Thanks
    AKG

    Hi Experts,
    I am using BAPI => BAPI_REQUISITION_CREATE to create PR and it is successful to create PR but when I try to create PO is become fail (proably missing entry in ESLH table).
    Now my requirement is to create PR with Service Line and an entry in ESLH table (should be filled by SAP automatically). I have been passing the service related/account assigment tables into BAPI but still not working.
    Will you please give a solution to create PR with Service Line and also need an entry in ESLH table (its important to my req)?
    Also provide some input on Service Line, if possible(How to check Service Line for PR + Account Assignment to Service Line + etc.)?
    Note that: If I create PR manually then there have entry in ESLH and hence I can create PO.
    Definately the quick solution help me lot...
    Thanks
    AKG

  • Post Invoice for Service Entry with many Service line item-MM-LIV

    Dear All,
    I have a problem to post Invoice for Service Entry with many Service line item. The problem is as follow:
    I have created 1 Service Entry which has 5 Service line item in it. Three of the service line item are subject to Value Added Tax (VAT), the others aren't. Then, i wanted to post Invoice for the Service Entry, however, it just display 1 item which amount in total. How can i segregate each service line item in Service Entry thus i can post Invoice for all Service line item with subject to VAT and all service item with not subject to VAT, if just 1 Service Entry created for it ?
    Please help me.
    Thank You

    Hi Ganda,
    If you mark the 'service based invoice verification' checkbox in your PO item, your service items will be in your invoice as seperate invoice lines. Then you can modify the taxcodes on service item level.
    Kind regards, Dick Hendriks.

  • Stacked chart with groups

    Hi
    I don't know whether this kind of chart is possible but perhaps someone can help me.
    I want to create a stacked chart with groups e.g. 6 sersies divided into two stacked bars (there are 2 bars per label, each stacked of three values)
    Does anyone know how can I do it?
    Regards

    Yes, but I want to have two bars (each stacked) per label (e.g. Jul-06).
      |    |  
      |____|  
      |    |   ____
      |    |  |    |
      |    |  |____|
      |____|  |    |
      |    |  |    |
      |    |  |____|
      |    |  |    |
      |    |  |    |
    -------------------||------------------||----------
       Jun-13                  Jul-13

  • Legends in stacked chart

    Only the values in the first vertical column in the stacked chart blocks is displayed in the Legend.
    For EX:
    Totally i have 5 items in the stacked chart blocks.
    My chart has 2 items in first vertical column in the stacked chart,
    3 Items in the second vertical column and
    all 5 items in the third vertical column.
    Now only 2 items displayed in the legend values, rest 3 items in 2 nad 3rd column of the chart is not displayed.
    Could any only please help on this ???
    Regards,
    Manoj

    Hi Anshul,
    You can display either data value or data label in a stacked column chart by checking the Data Label Displaying Mode option under Format Chart->Data Values.
    You can also do the same by checking the same option under Format chart->Area Display->Data Values.
    I dont think you would be able to display both in a column chart whereas you would be able to do it in a pie chart.
    Hope this helps.
    Regards
    Sri Harsha

  • Vertical Stacked chart

    Post Author: tacopscym
    CA Forum: WebIntelligence Reporting
    I am new to the business objects world. I have created  a vertical stacked chart. I now need to sort the vertical stacks in a certain format (the one with the highest total in the graph need to be at the top). I am not being able to get to this. I can do this easily in Excel using a pivot table. Another issue I am having is that when the Y-axis values has no entries then I need an empty column displayed. Currently my X-axis has weeks and Y-axis has errors for the week. I am interested in displaying all the weeks (whether they have errors or no errors), by default it displays only weeks that have errors. Any help in this will be appreciated- Thanks. 

    I believe you are going to have to edit the XML, scroll to the bottom of the Chart Attributes page and select Yes for "Use Custom XML", then you will have to change the chart area x/y/width/height. (you can do the same for the legend as well)

  • Problems with pie chart formatting - APEX v2

    Hi - I have created a region with an SVG Pie Chart and set the CSS to display the three segments as red, yellow and green using one of the examples from a previous forum posting. That all works fine, but I still have two issues with the chart:-
    - the legend is displaying too big and is overlapping the right hand region border which looks messy. Is there anyway to force the size of the legend as there is lots of blank space to the right of the labels/values?. If not, is there any way to get the legend to display at the bottom of the area rather than to the side of the chart?
    - the pie chart is 3D but the colours are only displaying on the side, not the top. Is there something I need to set to get this to work OK? Current CSS included below.
    Thanks Caroline
    text{font-family:Verdana, Geneva, Arial, Helvetica, sans-serif;fill:#000000;}
    tspan{font-family:Verdana, Geneva, Arial, Helvetica, sans-serif;fill:#000000;}
    text.title{font-weight:bold;font-size:14;fill:#000000;}
    text.moredatafound{font-size:12;}
    rect.legend{fill:#EEEEEE;stroke:#000000;stroke-width:1;}
    text.legend{font-size:10;}
    #background{fill:#FFFFFF;stroke:none;}
    rect.chartholderbackground{fill:#ffffff;stroke:#000000;stroke-width:1;}
    #timestamp{text-anchor:start;font-size:9;}
    text.tic{stroke:none;fill:#000000;font-size:12}
    line.tic{stroke:#000000;stroke-width:1px;fill:none;}
    #dial{stroke:#336699;stroke-width:2px;fill:#336699;fill-opacity:.5;}
    #dial.alert{fill:#FF0000;fill-opacity:.5;}
    #dialbackground{stroke:#000000;stroke-width:none;fill:none;filter:url(#MyFilter);}
    #dialcenter{stroke:none;fill:#111111;filter:url(#MyFilter);}
    #dialbackground-border{stroke:#DDDDDD;stroke-width:2px;fill:none;filter:url(#MyFilter);}#low{stroke-width:3;stroke:#336699;}
    #high{stroke-width:3;stroke:#FF0000;}
    #XAxisTitle{letter-spacing:2;kerning:auto;font-size:14;fill:#000000;text-anchor:middle;}
    text{font-family:Verdana, Geneva, Arial, Helvetica, sans-serif;fill:#000000;}
    tspan{font-family:Verdana, Geneva, Arial, Helvetica, sans-serif;fill:#000000;}
    text.title{font-weight:bold;font-size:14;fill:#000000;}
    text.moredatafound{font-size:12;}
    rect.legend{fill:#EEEEEE;stroke:#000000;stroke-width:1;}
    text.legend{font-size:10;}
    #background{filter:url(#MyFilter);fill:#555555;stroke:none;}
    rect.chartholderbackground{fill:#ffffff;stroke:#000000;stroke-width:1;}
    #timestamp{text-anchor:start;font-size:9;}
    text.tic{stroke:none;fill:#000000;font-size:12}
    line.tic{stroke:#000000;stroke-width:1px;fill:none;}
    #dial{stroke:#336699;stroke-width:2px;fill:#336699;fill-opacity:.5;}
    #dial.alert{fill:#FF0000;fill-opacity:.5;}
    #dialbackground{stroke:#000000;stroke-width:none;fill:none;filter:url(#MyFilter);}
    #dialcenter{stroke:none;fill:#111111;filter:url(#MyFilter);}
    #dialbackground-border{stroke:#DDDDDD;stroke-width:2px;fill:none;filter:url(#MyFilter);}#low{stroke-width:3;stroke:#336699;}
    #high{stroke-width:3;stroke:#FF0000;}
    #XAxisTitle{letter-spacing:2;kerning:auto;font-size:14;fill:#000000;text-anchor:middle;}
    #YAxisTitle{letter-spacing:2;kerning:auto;font-size:14;fill:#000000;text-anchor:middle;writing-mode:tb;}
    .XAxisValue{font-size:8;fill:#000000;}
    .YAxisValue{font-size:8;fill:#000000;text-anchor:end;}
    .AxisLabel{font-size:8;fill:#000000;}
    .nodatafound{stroke:#000000;stroke-width:1;font-size:12;}
    .AxisLine{stroke:#000000;stroke-width:2;fill:#FFFFFF;}
    .GridLine{stroke:#000000;stroke-width:0.3;stroke-dasharray:2,4;fill:none;}
    g.dataholder rect{stroke:#000000;stroke-width:0.5;}
    .legenditem rect{stroke:#000000;stroke-width:0.5;}
    #data1 ,rect.data1 ,path.data1{fill:#FF0000;}
    #data2 ,rect.data2 ,path.data2{fill:#FFFF00;}
    #data3 ,rect.data3 ,path.data3{fill:#00FF00;}

    hi Kishore,
    For this we have to change the .pcxml file for the pie chart .This is the path
    \OracleBI\web\app\res\s_oracle10\popbin\pie.pcxml
    http://obiee101.blogspot.com/2008/08/obiee-cusstomising-your-pcxml.html
    http://debaatobiee.wordpress.com/2009/09/26/customising-graph-obiee-a-charismatic-gradient-effect/
    I am not sure whether it will work or not but try it out
    thanks,
    saichand.v

  • WebI Horizontal stacked chart formatting issue

    I have created a stack chart report and I have labels defined in the X - axis. We have the issue with the gap between the X - axis line and the labels. We would like to know if we can reduce this gap between the axis line and the labels. I have attached the sample image below for your reference.
    Edited by: Madan Chellu on Aug 31, 2009 11:51 PM

    Not really.  I need to have stacked bars grouped.  For example, assume you had survey results.  For question 1, you had a bar with 20 disagrees, 5 neutrals, and 50 agrees.  For question 2, a bar with 10 disagrees, 2 neutrals and 30 agrees, and so on for say 10 questions.  This would be your stacked bar chart.  Now, say you had information spanning a number of years, 2008, 2009, 2010.  What I want is a group of stacked bars (3 one for each year) for Q1, then 3 more stacked bars for Q2 and so on.
    This is a combination of the grouped and the stacked bar charts.

Maybe you are looking for

  • Quicktime movie does not work on hosted iWeb website

    Problem: I have a media file portion on my iWeb designed website that displays pictures (working very well) and one that is supposed to show a movie (not working at all). The movie was made with iMovie and has an .m4v extension. When you click on the

  • Iweb 08 has major stability issues

    So, my last post was deleted when I talked about how disapointing iweb 08 was. I don't think I was over the top or saying anything that was untrue. This software has major stability problems. I have seen other posts that confirm this. I cannot publis

  • HT4113 how do i unlock my iphone4s if i forgot my passcode

    I forget my passcode and cannot get my iphone4s unlocked. Can you please help me?

  • Library Names in Red V1

    I installed Version 1, and it spent its time updating the library. Many of my folders or shoots are in red type now, and the photographs do not appear in the grid view. Any suggestions? Thanks

  • How to configure non-unicode in JVM of 1.4...

    hii, Plz explain me how configure non unicode bytes in JVM, ie SYSTEM PROPERTY set to false in JVM 1.4.1 & higher verison. waiting for reply, Santosh