Examples of Legend


Examples of org.geomajas.gwt.client.widget.Legend

    sectionStack.addSection(section2);

    // Legend layout:
    SectionStackSection section3 = new SectionStackSection("Legend");
    section3.setExpanded(true);
    legend = new Legend(map.getMapModel());
    legend.setBackgroundColor("#FFFFFF");
    section3.addItem(legend);
    sectionStack.addSection(section3);

    // Putting the right side layouts together:
View Full Code Here

Examples of org.geomajas.gwt.client.widget.Legend

    sectionStack.addSection(section2);

    // Legend layout:
    SectionStackSection section3 = new SectionStackSection("Legend");
    section3.setExpanded(true);
    legend = new Legend(map.getMapModel());
    section3.addItem(legend);
    sectionStack.addSection(section3);

    // Putting the right side layouts together:
    layout.addMember(sectionStack);
View Full Code Here

Examples of org.geomajas.gwt.client.widget.Legend

    buttonLayout.addMember(pointButton);

    VLayout legendLayout = new VLayout();
    legendLayout.setShowEdges(true);

    final Legend legend = new Legend(map.getMapModel());
    legend.setHeight100();
    legend.setWidth100();
    legendLayout.addMember(legend);

    topLayout.addMember(buttonLayout);
    topLayout.addMember(legendLayout);
View Full Code Here

Examples of org.geomajas.gwt.client.widget.Legend

    sectionStack.addSection(section2);

    // Legend layout:
    SectionStackSection section3 = new SectionStackSection("Legend");
    section3.setExpanded(true);
    legend = new Legend(mapWidget.getMapModel());
    section3.addItem(legend);
    sectionStack.addSection(section3);

    // Putting the right side layouts together:
    layout.addMember(sectionStack);
View Full Code Here

Examples of org.geomajas.gwt.client.widget.Legend

    sectionStack.addSection(section2);

    // Legend layout:
    SectionStackSection section3 = new SectionStackSection("Legend");
    section3.setExpanded(true);
    legend = new Legend(map.getMapModel());
    section3.addItem(legend);
    sectionStack.addSection(section3);

    // Putting the right side layouts together:
    layout.addMember(sectionStack);
View Full Code Here

Examples of org.geomajas.gwt.client.widget.Legend

    originalSectionStack.addSection(osection2);

    // Legend layout:
    SectionStackSection osection3 = new SectionStackSection("Legend");
    osection3.setExpanded(true);
    Legend l = new Legend(map.getMapModel());
    osection3.addItem(l);
    originalSectionStack.addSection(osection3);

    // Putting the right side layouts together:
    layout.addMember(originalSectionStack);
View Full Code Here

Examples of org.jfree.chart.Legend

        other.add(general, BorderLayout.NORTH);

        JPanel parts = new JPanel(new BorderLayout());

        Title title = chart.getTitle();
        Legend legend = chart.getLegend();
        Plot plot = chart.getPlot();

        JTabbedPane tabs = new JTabbedPane();

        this.titlePropertiesPanel = new TitlePropertyEditPanel(title);
View Full Code Here

Examples of org.jfree.chart.Legend

     *
     * @param chart    the chart whose legend is to be modified.
     */
    public void setLegendProperties(JFreeChart chart) {
        if(this.showLegend) {
            Legend legend = chart.getLegend();
            if(legend == null) {
                legend = new StandardLegend();
                chart.setLegend(legend);
            }
            if (legend instanceof StandardLegend) {
View Full Code Here

Examples of org.moxieapps.gwt.highcharts.client.Legend

    {
        this.chart = new Chart()
                .setType(COLUMN)
                .setChartTitleText(null)
                .setBackgroundColor(BACKGROUND_COLOR)
                .setLegend(new Legend().setEnabled(false))
                .setExporting(new Exporting().setEnabled(false))
                .setCredits(new Credits().setEnabled(false))
                .setSeriesPlotOptions(
                        new SeriesPlotOptions()
                                .setShadow(false)
View Full Code Here

Examples of org.swtchart.internal.Legend

        setLayout(new ChartLayout());

        title = new ChartTitle(this, SWT.NONE);
        title.setLayoutData(new ChartLayoutData(SWT.DEFAULT, 100));
        legend = new Legend(this, SWT.NONE);
        legend.setLayoutData(new ChartLayoutData(200, SWT.DEFAULT));
        plotArea = new PlotArea(this, SWT.NONE);
        axisSet = new AxisSet(this);

        updateLayout();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.