How to customize line chart series and symbols?

Hello Forum,
who can help me to customize line chart series and symbols color?
I need to customize this in dynamic way.
Thanks in advanced.

See example 8-10 (Example 8-10 Changing Chart Symbol Color) from http://docs.oracle.com/javafx/2.0/charts/css-styles.htm#CIHGIAGE (reproduced here).
The linked tutorial document contains a picture of how this example renders.
.chart-series-line {   
    -fx-stroke-width: 2px;
    -fx-effect: null;
.default-color0.chart-series-line { -fx-stroke: #e9967a; }
.default-color1.chart-series-line { -fx-stroke: #f0e68c; }
.default-color2.chart-series-line { -fx-stroke: #dda0dd; }
.default-color0.chart-line-symbol { -fx-background-color: #e9967a, white; }
.default-color1.chart-line-symbol { -fx-background-color: #f0e68c, white; }
.default-color2.chart-line-symbol { -fx-background-color: #dda0dd, white; }Note the two comma separated colors listed for each -fx-background-color for the chart-line-symbol.
The first color is the color or the outside of the symbol, the second is the inside of the symbol.
In the sample css you provided you only supply a single background color for the chart-line-symbol, when two colors are required.

Similar Messages

  • Please suggest how can we place chart series label evenly in Pie Chart of SSRS 2008

    Could you please suggest how can we place chart series label value evenly so that it doesnot overlap with each other and user can view the data properly.
    Please find  the attached  screenshot for the same.

    Hi SubhadipRoy,
    As Satish posted, the solution can achieve your goal. In addition, you can right click the Chart Series Labels and Series Label Properties, and then select Number in the left pane, finally select Scientific below the Category option. The data label may not
    overlay. Or you can enlarge the chart.
    Regards,
    Heidi Duan
    Heidi Duan
    TechNet Community Support

  • I am trying to fill in a form in adobe exportpdf. How can I fill in numbers and symbols? Parenthesis, dollar sign etc.

    I am trying to fill in a form in adobe exportpdf. How can I fill in numbers and symbols? Parenthesis, dollar sign etc.

    Hi;
    Can you provide a little more detail, maybe a screenshot?  ExportPDF only converts PDFs to other file types, what exactly are you using to try to fill out the form?  The two Adobe form filling tools I would recommend would be:
    1) Adobe Reader - a free download you can install on your computer and can be used to fill out most any form.  For numbers, symbols etc it can depend on the field you are entering data into, some fields have restrictions, but you would use those keys on your keyboard, if nothing is entered then that field probably has restrictions.
    2) Adobe Fill & Sign: https://cloud.acrobat.com/fillsign - using the Fill & Sign tab on the acrobat.com website you can fill out most PDFs.  To enter numbers, symbols, etc you would simply add them using your keyboard.
    Thanks,
    Josh

  • How to customize the Stamp Tax and the Municipal Property Tax

    Hi !
    Can anyone tell me how to customize the Stamp Tax and the Municipal Property Tax in the RE-FX?
    Thanks in advance.
    Tiago

    Hi Verman!
    I´m working with the Portugal specifications, and as you can see in SAP Note 953883, stamp tax is used in Portugal too, and i´m looking for some customizing help for this taxes.  can you help me?
    thank you!
    Edited by: Vaz Tiago on Oct 16, 2009 2:48 PM

  • How to create line chart

    Hii Experts,
    How to create line chart?
    I want to  prepaire a line chart in a report. i have 1 table. In a table have 2 fields. chart is created in these 2 field refrence how It's possible?
    Thanx in Advance
    Regards
    Vshal

    I found it very easy to produce a line chart in a window container using FM GFW_PRES_SHOW.  In my case this produces a basic line graph with three lines across 15 time periods.
    See transaction GRAL for various chart types...they're relatively easy to produce...  I picked DEMO_GFW_PRES_SHOW report program from GRAL as my example for how to produce a simple line chart very quickly.

  • Line charts: data point symbol resize?

    I'm working with charts in Pages and would like to be able to have a greater variety of lines in my line chart. In addition to selecting the data point symbol (square, circle, etc), I wish I could resize that symbol. I know I can resize the line width from the Graphic tab of the Inspector.
    Is there a way to shrink the data point symbol from the Inspector? From anywhere?

    If I understand your question, this from the Pages online help may give the answer:
    To mark line, area, and scatter charts with data point symbols:
    Select the entire chart. You can also select the chart series (the line or area shape) that you want to mark with data point symbols.
    Click Inspector in the toolbar, and then click the Chart Inspector button.
    Click Series (except for scatter charts).
    Choose a symbol from the Data Point Symbol pop-up menu.
    Choose one of the following options from the Symbol Fill pop-up menu:
    To fill the symbol with the same color as its outline, choose Use Stroke Color.
    To fill the symbol with a solid color, choose Color Fill, click the Fill color well, and pick a color.
    To fill the symbol with a gradient, choose Gradient Fill and use the gradient controls to set the colors and change the angle of the gradient.
    To fill the symbol with an image, choose Image Fill and select the image you want. You can also resize the image by choosing an option from the pop-up menu above the Choose button.
    To fill the symbol with a tinted image, choose Tinted Image Fill and select the image you want. Click the color well to the right of the Choose button to change the tint color. You can also resize the image by choosing an option from the pop-up menu above the Choose button.

  • How to make line chart start at y-axis?

    How do you make the series on a line chart start at the y-axis?  I tried adding a data point for y(x=0), but the Xcelsius graph drops it and starts with y(x=1).  How do I fix that?  This is especially important for series that need to start at zero.

    Post Author: amr_foci
    CA Forum: Xcelsius and Live Office
    its all based on ur design of your Excel sheet
    design how it will be in Excel first
    then go to xeclsius
    ,,, by the way it looks very easy task
    you can do it.

  • How to dispaly Line chart in output?

    Hi All,
    My requirement is that I want to display a line graph for 'year vs revenue' after calculation of revenue.
    I tried this with the FM GRAPH_2D . It displays only bar chart initially, for getting Line chart I have to choose it manually in options after displaying it, but I want to display the line graph directly without any manual operation.
    I've used the FM as below,
    CALL FUNCTION 'GRAPH_2D'
      EXPORTING
        inform             = 'X'
    *    display_type       = ''
        titl               = 'Year Vs Revenue'
      TABLES
        data               = it_summary
      EXCEPTIONS
        gui_refuse_graphic = 1
        OTHERS             = 2.
    Please let me know how to get the line chart directly using either FM GRAPH_2D or any other FM if you know that could do this.

    Hi,
    try this:
    DATA: BEGIN OF IGRAPH OCCURS 0,
            TXT   TYPE CHAR10,
            VALUE TYPE P,
          END   OF IGRAPH.
    DATA: TITLE(80) VALUE 'Header'.
    IGRAPH-TXT = '2000'. IGRAPH-VALUE = 10. APPEND IGRAPH.
    IGRAPH-TXT = '2001'. IGRAPH-VALUE = 23. APPEND IGRAPH.
    IGRAPH-TXT = '2002'. IGRAPH-VALUE = 06. APPEND IGRAPH.
    IGRAPH-TXT = '2003'. IGRAPH-VALUE = 34. APPEND IGRAPH.
    IGRAPH-TXT = '2004'. IGRAPH-VALUE = 45. APPEND IGRAPH.
    IGRAPH-TXT = '2005'. IGRAPH-VALUE = 66. APPEND IGRAPH.
    IGRAPH-TXT = '2006'. IGRAPH-VALUE = 15. APPEND IGRAPH.
    IGRAPH-TXT = '2007'. IGRAPH-VALUE = 17. APPEND IGRAPH.
    IGRAPH-TXT = '2008'. IGRAPH-VALUE = 30. APPEND IGRAPH.
    CALL FUNCTION 'GRAPH_2D'
      EXPORTING
        TITL   = TITLE
        VALT   = 'Value in EUR'
        WINSZX = '75'
        WINSZY = '75'
      TABLES
        DATA   = IGRAPH.
    CALL FUNCTION 'GRAPH_2D'
      EXPORTING
        TITL   = TITLE
        VALT   = 'Value in EUR'
        WINSZX = '75'
        WINSZY = '75'
        DISPLAY_TYPE = 'LN'
      TABLES
        DATA   = IGRAPH.
    CALL FUNCTION 'GRAPH_2D'
      EXPORTING
        TITL   = TITLE
        VALT   = 'Value in EUR'
        WINSZX = '75'
        WINSZY = '75'
        DISPLAY_TYPE = 'ST'
      TABLES
        DATA   = IGRAPH.
    and look in the Docu of this FM (Field DISPLAY_TYPE)
    Regards, Dieter

  • How to plot line chart for huge xml files?

    Guys,
    I would like to plot files over 2000 lines in a line chart!
    but the application is getting very slow!
    does anyone have any tips to improve performance?

    Can we see how you implement the LineChart and bind the XML please?
    It should be fast normally.

  • How to generate line chart (e.g. stock market) in midlet?

    how to write such a line chart in midlet? any tutorial recommended?
    thanks a lot.

    Well, I would draw it myself. I think that's your only option. If you are not familiar with MIDP, then you should start with a beginner tutorial - it will not have anything to do with graphics, but more importantly it will introduce you to the programming model. You'll need the experience when you grapple with graphics. Not a big deal, but I haven't seen any samples for it, so you'll have to work off of the API docs. A nice page with sample programs:
    http://wireless.java.sun.com/midp/samples/
    If you are familiar with MIDP programming, or when you are, then hop over to the API and you'll find what you need there. Some simple math and some custom graphic routines/classes and you'll be well on your way. Here's the API location for the graphics class in the MIDP API:
    java.lang.Object
    |
    --javax.microedition.lcdui.Graphics
    Good luck. Hope this helped.

  • How to Customize the iemsa_customerdetailincl.jsp and IHSearch.class

    Hi
    I have a requirement, where i need to customize the way of look the email customer agent console is displaying the customer results in ebs suite. I need to get some more values from DB and need to modify the iemsa_customerdetailincl.jsp and also the default query is located in IHSearch.class file which is located in COMMON_TOP/oracle/apps/iem/solo/customer and these resultset is assigned to IHBean.class and we are accessing the IHBean and iterating thru the vector and using IHBean to display the results on the page.
    And also can you let me know where can i get the username from like ServletSessionManager or SessionManager classes. Please let me know how do i need to extend or customize the IHSearch and IHBean classes for the customization of jsps.
    And the EBS version is R12. Thanks.

    Hello All,
    Can someone in this Forum reply to my question. Thanks.
    N.

  • How to draw Line Chart in SAP?

    There is a request that the customer want to see Line Chart in the report.
    Is it possible to do it using abap?
    Thank you very much.

    Hi,
    Yes it is possible.
    GOto Tcode SE83>Expand graphics node>double click on that
    you will get all graphic programs.

  • How to take waveform chart data and put it into an array

    Hello all,
    I am new to programming in Labview, and am learning basically by watching youtube video and such. My question is how to take a set of random data that I have written code for and linked to a waveform chart, and put the data into an array so I can calculate the mean of the data set. If there is an easier way to calculate the mean of the data set I am all ears, but I need to be able to display the mean on the front panel each time the code is run. I have attached a file of my code.
    Thanks
    Attachments:
    CA1.vi ‏11 KB

    Welcome.
    If you have not done so, look at the on-line tutorials on Getting Started with LabVIEW on the NI web site.
    A chart has a property known as History which retains some previous values.  You can get access to the the History property by popping up on the block diagram terminal of the chart and selecting Create >> Property Node. Note that the history length can be set via a pop up menu.  The default length is 1024.
    Other comments: When you know the number of iteration in advance you should use a for loop rather than the while loop.
    You can also use an autoindexing tunnel at the boundary of the loop to create an array. It only contains the values from the current run, unlike the chart history which can retain values between runs (as long as the VI remains in memory). Watch the two Mean indicators as you run this VI several times.
    The error wire is to assure that the history property node runs after the loop.  Disconnect the wire and watch the Mean and Mean 2 indicators carefully.
    The Wait is to slow things down a bit so that you can see what is happening.
    Lynn
    Attachments:
    CA1.2.vi ‏11 KB

  • How to add Line Chart in javafx 2.2 FXML?

    I'm using javaFX scene builder 1.0. The LineChart component is not working for FXML ,I'm added a linechart component in FXML and initialized it in corresponding controller class. it displays the gui as default linechart ,when i'm adding some values of x and y using obsevablelist in the java controller class, it is not updating in the Linechart gui.

    It's hard to say for sure without seeing the complete markup and controller code, but it looks like you are replacing the "graph" instance you declare in markup with a new one you create in code:
    graph = new LineChart(xAxis, yAxis, lineChartData);Rather than creating a new chart, try declaring the chart with the axes you want in markup, and then call setData() on it instead of creating a new one:
    <Scene fx:controller="test.LineChartTestController" xmlns:fx="http://javafx.com/fxml">
        <LineChart fx:id="graph">
            <xAxis><NumberAxis label="Values for X-Axis" lowerBound="0" upperBound="3" tickUnit="1"/></xAxis>
            <yAxis><NumberAxis label="Values for Y-Axis" lowerBound="0" upperBound="3" tickUnit="1"/></yAxis>
        </LineChart>
    </Scene>
    public class LineChartTestController {
        @FXML private LineChart<Double, Double> graph;
        @FXML
        protected void initialize() {
            ObservableList<XYChart.Series<Double, Double>> lineChartData = FXCollections.observableArrayList();
            LineChart.Series<Double, Double> series1 = new LineChart.Series<Double, Double>();
            series1.setName("Series 1");
            series1.getData().add(new XYChart.Data<Double, Double>(0.0, 1.0));
            series1.getData().add(new XYChart.Data<Double, Double>(1.2, 1.4));
            series1.getData().add(new XYChart.Data<Double, Double>(2.2, 1.9));
            series1.getData().add(new XYChart.Data<Double, Double>(2.7, 2.3));
            series1.getData().add(new XYChart.Data<Double, Double>(2.9, 0.5));
            lineChartData.add(series1);
            LineChart.Series<Double, Double> series2 = new LineChart.Series<Double, Double>();
            series2.setName("Series 2");
            series2.getData().add(new XYChart.Data<Double, Double>(0.0, 1.6));
            series2.getData().add(new XYChart.Data<Double, Double>(0.8, 0.4));
            series2.getData().add(new XYChart.Data<Double, Double>(1.4, 2.9));
            series2.getData().add(new XYChart.Data<Double, Double>(2.1, 1.3));
            series2.getData().add(new XYChart.Data<Double, Double>(2.6, 0.9));
            lineChartData.add(series2);
            graph.setData(lineChartData);
            graph.createSymbolsProperty();
    }

  • How to customize Flash Chart color scheme (Look 1 etc..)

    Hi,
    Is their any way I can customize the Flash Chart color schemes (Look 1, Look 2). I know there's a "Custom" option but I'd like to define what Look 1 is so that I don't need to use custom values for each chart.
    Thank you,
    Martin
    [http://apex-smb.blogspot.com/]

    Thank you Dimitri
    What you suggest is what I am currently doing.
    But let's say I have to change the colors in all my graphs, I would have to go through all of them and change the "Custom Colors".
    I was looking for something similar to a template where I would only have to change the color definition in one place...

Maybe you are looking for

  • Opacity Masks in cs4 can't find layers with main objects on it.

    I created image with flag and did clipping mask with some text. Now when I do a opacity mask my other layers disappear and i can't seem to bring them back. I use the transparency to mask and clip. After that my layers with the first original items I

  • Problem In Creating Sales Order Through DI API

    Hi I am Creating The Sales Order Through DI API. the Error Is Coming - " [OACT] , 'No matching records found (ODBC -2028)'" anyone  can help me solving it.

  • How can I make a setting so that new tabs bring up my home page?

    When I open a new tab I get this lame empty page. I want my home page to come up! I know I can just click on the home button to do this but how can I set up Firefox to do it automatically? PS when first opening Firefox there is no problem - home page

  • Connection Leak with SP3

    Hi- I recently moved from 8.1SP1 to 8.1SP3 and WOW am I getting a lot of connection leaks. I never had this problem at all with SP1 and I'm quite concerned. My app is probably 98% CMP but I do have a bit of direct access. My app supports both Sybase

  • I cannot download a trial version of X Pro.

    I press teh download button and nothing happens.  I am logged in.