亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? chartfactory.java

?? jfreechart1.0.1 jsp繪制圖表的開發包
?? JAVA
?? 第 1 頁 / 共 5 頁
字號:
                                            boolean tooltips,
                                            boolean urls) {

        if (orientation == null) {
            throw new IllegalArgumentException("Null 'orientation' argument.");
        }
        CategoryAxis categoryAxis = new CategoryAxis(categoryAxisLabel);
        ValueAxis valueAxis = new NumberAxis(valueAxisLabel);

        BarRenderer renderer = new BarRenderer();
        if (orientation == PlotOrientation.HORIZONTAL) {
            ItemLabelPosition position1 = new ItemLabelPosition(
                ItemLabelAnchor.OUTSIDE3, TextAnchor.CENTER_LEFT
            );
            renderer.setPositiveItemLabelPosition(position1);
            ItemLabelPosition position2 = new ItemLabelPosition(
                ItemLabelAnchor.OUTSIDE9, TextAnchor.CENTER_RIGHT
            );
            renderer.setNegativeItemLabelPosition(position2);
         }
        else if (orientation == PlotOrientation.VERTICAL) {
            ItemLabelPosition position1 = new ItemLabelPosition(
                ItemLabelAnchor.OUTSIDE12, TextAnchor.BOTTOM_CENTER
            );
            renderer.setPositiveItemLabelPosition(position1);
            ItemLabelPosition position2 = new ItemLabelPosition(
                ItemLabelAnchor.OUTSIDE6, TextAnchor.TOP_CENTER
            );
            renderer.setNegativeItemLabelPosition(position2);
        }
        if (tooltips) {
            renderer.setBaseToolTipGenerator(
                new StandardCategoryToolTipGenerator()
            );
        }
        if (urls) {
            renderer.setBaseItemURLGenerator(
                new StandardCategoryURLGenerator()
            );
        }

        CategoryPlot plot = new CategoryPlot(
            dataset, categoryAxis, valueAxis, renderer
        );
        plot.setOrientation(orientation);
        JFreeChart chart = new JFreeChart(
            title, JFreeChart.DEFAULT_TITLE_FONT, plot, legend
        );

        return chart;

    }

    /**
     * Creates a stacked bar chart with default settings.  The chart object 
     * returned by this method uses a {@link CategoryPlot} instance as the
     * plot, with a {@link CategoryAxis} for the domain axis, a 
     * {@link NumberAxis} as the range axis, and a {@link StackedBarRenderer} 
     * as the renderer.
     *
     * @param title  the chart title (<code>null</code> permitted).
     * @param domainAxisLabel  the label for the category axis 
     *                         (<code>null</code> permitted).
     * @param rangeAxisLabel  the label for the value axis 
     *                        (<code>null</code> permitted).
     * @param dataset  the dataset for the chart (<code>null</code> permitted).
     * @param orientation  the orientation of the chart (horizontal or 
     *                     vertical) (<code>null</code> not permitted).
     * @param legend  a flag specifying whether or not a legend is required.
     * @param tooltips  configure chart to generate tool tips?
     * @param urls  configure chart to generate URLs?
     *
     * @return A stacked bar chart.
     */
    public static JFreeChart createStackedBarChart(String title,
                                                   String domainAxisLabel,
                                                   String rangeAxisLabel,
                                                   CategoryDataset dataset,
                                                   PlotOrientation orientation,
                                                   boolean legend,
                                                   boolean tooltips,
                                                   boolean urls) {

        if (orientation == null) {
            throw new IllegalArgumentException("Null 'orientation' argument.");
        }

        CategoryAxis categoryAxis = new CategoryAxis(domainAxisLabel);
        ValueAxis valueAxis = new NumberAxis(rangeAxisLabel);

        StackedBarRenderer renderer = new StackedBarRenderer();
        if (tooltips) {
            renderer.setBaseToolTipGenerator(
                new StandardCategoryToolTipGenerator()
            );
        }
        if (urls) {
            renderer.setBaseItemURLGenerator(
                new StandardCategoryURLGenerator()
            );
        }

        CategoryPlot plot = new CategoryPlot(
            dataset, categoryAxis, valueAxis, renderer
        );
        plot.setOrientation(orientation);
        JFreeChart chart = new JFreeChart(
            title, JFreeChart.DEFAULT_TITLE_FONT, plot, legend
        );

        return chart;

    }

    /**
     * Creates a bar chart with a 3D effect. The chart object returned by this 
     * method uses a {@link CategoryPlot} instance as the plot, with a 
     * {@link CategoryAxis3D} for the domain axis, a {@link NumberAxis3D} as 
     * the range axis, and a {@link BarRenderer3D} as the renderer.
     *
     * @param title  the chart title (<code>null</code> permitted).
     * @param categoryAxisLabel  the label for the category axis 
     *                           (<code>null</code> permitted).
     * @param valueAxisLabel  the label for the value axis (<code>null</code> 
     *                        permitted).
     * @param dataset  the dataset for the chart (<code>null</code> permitted).
     * @param orientation  the plot orientation (horizontal or vertical) 
     *                     (<code>null</code> not permitted).
     * @param legend  a flag specifying whether or not a legend is required.
     * @param tooltips  configure chart to generate tool tips?
     * @param urls  configure chart to generate URLs?
     *
     * @return A bar chart with a 3D effect.
     */
    public static JFreeChart createBarChart3D(String title,
                                              String categoryAxisLabel,
                                              String valueAxisLabel,
                                              CategoryDataset dataset,
                                              PlotOrientation orientation,
                                              boolean legend,
                                              boolean tooltips,
                                              boolean urls) {

        if (orientation == null) {
            throw new IllegalArgumentException("Null 'orientation' argument.");
        }
        CategoryAxis categoryAxis = new CategoryAxis3D(categoryAxisLabel);
        ValueAxis valueAxis = new NumberAxis3D(valueAxisLabel);

        BarRenderer3D renderer = new BarRenderer3D();
        if (tooltips) {
            renderer.setBaseToolTipGenerator(
                new StandardCategoryToolTipGenerator()
            );
        }
        if (urls) {
            renderer.setBaseItemURLGenerator(
                new StandardCategoryURLGenerator()
            );
        }

        CategoryPlot plot = new CategoryPlot(
            dataset, categoryAxis, valueAxis, renderer
        );
        plot.setOrientation(orientation);
        if (orientation == PlotOrientation.HORIZONTAL) {
            // change rendering order to ensure that bar overlapping is the 
            // right way around
            plot.setRowRenderingOrder(SortOrder.DESCENDING);
            plot.setColumnRenderingOrder(SortOrder.DESCENDING);
        }
        plot.setForegroundAlpha(0.75f);

        JFreeChart chart = new JFreeChart(
            title, JFreeChart.DEFAULT_TITLE_FONT, plot, legend
        );

        return chart;

    }

    /**
     * Creates a stacked bar chart with a 3D effect and default settings. The 
     * chart object returned by this method uses a {@link CategoryPlot} 
     * instance as the plot, with a {@link CategoryAxis3D} for the domain axis, 
     * a {@link NumberAxis3D} as the range axis, and a 
     * {@link StackedBarRenderer3D} as the renderer.
     *
     * @param title  the chart title (<code>null</code> permitted).
     * @param categoryAxisLabel  the label for the category axis 
     *                           (<code>null</code> permitted).
     * @param valueAxisLabel  the label for the value axis (<code>null</code> 
     *                        permitted).
     * @param dataset  the dataset for the chart (<code>null</code> permitted).
     * @param orientation  the orientation (horizontal or vertical) 
     *                     (<code>null</code> not permitted).
     * @param legend  a flag specifying whether or not a legend is required.
     * @param tooltips  configure chart to generate tool tips?
     * @param urls  configure chart to generate URLs?
     *
     * @return A stacked bar chart with a 3D effect.
     */
    public static JFreeChart createStackedBarChart3D(String title,
                                                    String categoryAxisLabel,
                                                    String valueAxisLabel,
                                                    CategoryDataset dataset,
                                                    PlotOrientation orientation,
                                                    boolean legend,
                                                    boolean tooltips,
                                                    boolean urls) {

        if (orientation == null) {
            throw new IllegalArgumentException("Null 'orientation' argument.");
        }
        CategoryAxis categoryAxis = new CategoryAxis3D(categoryAxisLabel);
        ValueAxis valueAxis = new NumberAxis3D(valueAxisLabel);

        // create the renderer...
        CategoryItemRenderer renderer = new StackedBarRenderer3D();
        if (tooltips) {
            renderer.setBaseToolTipGenerator(
                new StandardCategoryToolTipGenerator()
            );
        }
        if (urls) {
            renderer.setBaseItemURLGenerator(
                new StandardCategoryURLGenerator()
            );
        }

        // create the plot...
        CategoryPlot plot = new CategoryPlot(
            dataset, categoryAxis, valueAxis, renderer
        );
        plot.setOrientation(orientation);
        if (orientation == PlotOrientation.HORIZONTAL) {
            // change rendering order to ensure that bar overlapping is the 
            // right way around
            plot.setColumnRenderingOrder(SortOrder.DESCENDING);
        }

        // create the chart...
        JFreeChart chart = new JFreeChart(
            title, JFreeChart.DEFAULT_TITLE_FONT, plot, legend
        );

        return chart;

    }

    /**
     * Creates an area chart with default settings.  The chart object returned
     * by this method uses a {@link CategoryPlot} instance as the plot, with a 
     * {@link CategoryAxis} for the domain axis, a {@link NumberAxis} as the
     * range axis, and an {@link AreaRenderer} as the renderer.
     *
     * @param title  the chart title (<code>null</code> permitted).
     * @param categoryAxisLabel  the label for the category axis 
     *                           (<code>null</code> permitted).
     * @param valueAxisLabel  the label for the value axis (<code>null</code> 
     *                        permitted).
     * @param dataset  the dataset for the chart (<code>null</code> permitted).
     * @param orientation  the plot orientation (<code>null</code> not 
     *                     permitted).
     * @param legend  a flag specifying whether or not a legend is required.
     * @param tooltips  configure chart to generate tool tips?
     * @param urls  configure chart to generate URLs?
     *
     * @return An area chart.
     */
    public static JFreeChart createAreaChart(String title,
                                             String categoryAxisLabel,
                                             String valueAxisLabel,
                                             CategoryDataset dataset,
                                             PlotOrientation orientation,
                                             boolean legend,
                                             boolean tooltips,
                                             boolean urls) {

        if (orientation == null) {
            throw new IllegalArgumentException("Null 'orientation' argument.");
        }
        CategoryAxis categoryAxis = new CategoryAxis(categoryAxisLabel);
        categoryAxis.setCategoryMargin(0.0);

        ValueAxis valueAxis = new NumberAxis(valueAxisLabel);

        AreaRenderer renderer = new AreaRenderer();
        if (tooltips) {
            renderer.setBaseToolTipGenerator(
                new StandardCategoryToolTipGenerator()
            );
        }
        if (urls) {
            renderer.setBaseItemURLGenerator(
                new StandardCategoryURLGenerator()

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
制服视频三区第一页精品| 亚洲精品视频自拍| 日韩欧美在线不卡| 欧美一区二区三区四区五区| 欧美精品三级在线观看| 欧美日韩免费视频| 欧美日本高清视频在线观看| 欧美日韩国产片| 欧美日本视频在线| 日韩一区二区三区电影在线观看| 亚洲激情中文1区| 一区二区三区四区激情| 亚洲欧美日韩国产综合| 亚洲欧美区自拍先锋| 一区二区三区在线观看动漫| 亚洲一区二区三区四区的| 亚洲第四色夜色| 日本aⅴ亚洲精品中文乱码| 麻豆国产精品视频| 国产美女一区二区| fc2成人免费人成在线观看播放| 久久久久久黄色| 国产精品免费网站在线观看| 亚洲免费观看高清完整版在线观看 | 成人精品国产福利| 91在线精品一区二区三区| 在线观看日韩电影| 日韩一区二区三区av| 久久日韩粉嫩一区二区三区 | 亚洲五月六月丁香激情| 午夜精品免费在线| 看国产成人h片视频| 国产精品伊人色| 91在线观看一区二区| 在线观看日韩电影| www国产亚洲精品久久麻豆| 国产视频一区二区三区在线观看| 亚洲人成人一区二区在线观看| 性做久久久久久免费观看欧美| 精品中文av资源站在线观看| av亚洲精华国产精华精华| 欧美午夜寂寞影院| 欧美精品一区二区精品网| 中文字幕人成不卡一区| 天堂午夜影视日韩欧美一区二区| 国产一区二区三区高清播放| 91蜜桃传媒精品久久久一区二区| 欧美精品久久一区| 国产精品天美传媒沈樵| 午夜伦理一区二区| 成人一区二区三区中文字幕| 精品视频一区 二区 三区| 久久蜜桃香蕉精品一区二区三区| 一区二区欧美国产| 国产精品亚洲综合一区在线观看| 色天使色偷偷av一区二区| 精品国产露脸精彩对白| 亚洲一区影音先锋| 成人永久免费视频| 日韩你懂的电影在线观看| 成人欧美一区二区三区| 久久国产成人午夜av影院| 99re6这里只有精品视频在线观看| 日韩亚洲欧美一区| 亚洲天堂精品视频| 国产一区二区中文字幕| 在线成人免费观看| 亚洲色图色小说| 国产成人精品影院| 欧美一区二区网站| 亚洲国产精品久久艾草纯爱| 成人午夜在线视频| 久久视频一区二区| 免费高清成人在线| 欧美三级视频在线观看| 中文字幕永久在线不卡| 国产一区中文字幕| 亚洲视频一二三| 国产精品一线二线三线| 欧美一三区三区四区免费在线看| 亚洲欧洲制服丝袜| 成人毛片在线观看| 国产欧美精品国产国产专区| 麻豆免费精品视频| 6080日韩午夜伦伦午夜伦| 亚洲一区国产视频| 色悠悠亚洲一区二区| 综合久久久久久| 高清av一区二区| 久久久久久免费| 国产乱码字幕精品高清av | 中文字幕一区二区三区在线观看 | 色综合一区二区| 亚洲欧洲性图库| 99国产精品久| 国产精品灌醉下药二区| 国产91丝袜在线播放0| 欧美激情一区二区三区蜜桃视频 | 精品国产乱码久久久久久蜜臀| 偷拍与自拍一区| 91麻豆精品国产91久久久久久久久 | 亚洲欧美在线观看| 99精品欧美一区二区三区综合在线| 国产农村妇女毛片精品久久麻豆 | 偷拍一区二区三区| 欧美日本在线看| 日韩成人精品在线观看| 538prom精品视频线放| 日韩精品电影一区亚洲| 欧美一区二区三区系列电影| 久久成人免费网| 337p粉嫩大胆色噜噜噜噜亚洲| 精品一区二区三区在线观看国产| wwwwww.欧美系列| 成人污视频在线观看| 国产精品久久久久四虎| av中文字幕亚洲| 一区二区三区在线不卡| 欧美人狂配大交3d怪物一区| 日韩高清不卡在线| 欧美电影免费观看高清完整版在线| 国产在线精品一区在线观看麻豆| 国产日韩影视精品| 99久久精品一区二区| 国产成人精品免费| 国产精品大尺度| 欧美影院精品一区| 奇米综合一区二区三区精品视频| 欧美精品一区二区在线播放| 国产ts人妖一区二区| 亚洲精品日韩一| 在线电影欧美成精品| 国产在线精品免费av| 国产精品免费av| 欧美色爱综合网| 蜜桃视频一区二区| 国产精品久99| 欧美在线免费观看亚洲| 久久疯狂做爰流白浆xx| 国产精品久久久久久久午夜片| 欧美主播一区二区三区| 精品夜夜嗨av一区二区三区| 国产精品国产三级国产三级人妇| 欧美亚洲国产一区二区三区| 久久99国产精品免费| 国产精品久久久一区麻豆最新章节| 欧美色综合网站| 国产乱码精品1区2区3区| 一级做a爱片久久| 久久久国产精品不卡| 欧美亚洲日本国产| 国产美女娇喘av呻吟久久| 一区二区三区四区激情| 精品国产百合女同互慰| 色偷偷久久一区二区三区| 久草中文综合在线| 亚洲欧美日韩一区二区三区在线观看| 337p亚洲精品色噜噜狠狠| 成人黄色网址在线观看| 奇米四色…亚洲| 亚洲黄色免费网站| 国产丝袜欧美中文另类| 欧美日韩日日骚| 波多野结衣视频一区| 九色porny丨国产精品| 亚洲男同1069视频| 国产亚洲欧美日韩在线一区| 欧美日韩国产在线观看| 99在线热播精品免费| 九九九精品视频| 亚洲高清在线精品| 亚洲日本护士毛茸茸| 精品国偷自产国产一区| 欧美日本在线播放| 色综合天天综合狠狠| 国产精品一级在线| 麻豆国产欧美日韩综合精品二区| 亚洲一区二区视频| 自拍偷拍欧美激情| 国产偷国产偷亚洲高清人白洁| 777午夜精品视频在线播放| 色婷婷综合久久久中文一区二区| 国产91色综合久久免费分享| 卡一卡二国产精品 | 欧美日韩国产一区| 91一区二区在线| 国产成人精品综合在线观看| 激情都市一区二区| 青青草精品视频| 首页亚洲欧美制服丝腿| 亚洲第一会所有码转帖| 亚洲免费电影在线| 中文字幕综合网| 国产精品伦理一区二区| 国产喂奶挤奶一区二区三区| 精品国产三级a在线观看| 日韩午夜在线影院| 制服丝袜中文字幕亚洲| 欧美精品色综合| 制服丝袜av成人在线看|