Package hudson.plugins.analysis.graph

Examples of hudson.plugins.analysis.graph.GraphConfiguration


     * @param availableGraphs
     *            the available graphs
     * @return the graph configuration.
     */
    protected GraphConfiguration createConfiguration(final List<BuildResultGraph> availableGraphs) {
        return new GraphConfiguration(availableGraphs);
    }
View Full Code Here


     * Provides a default graph configuration for portlets.
     *
     * @return the graph configuration
     */
    public static GraphConfiguration initialize() {
        GraphConfiguration configuration = GraphConfiguration.createDefault();
        configuration.initializeFrom(DEFAULT_WIDTH, DEFAULT_HEIGHT, DEFAULT_DAY_COUNT);

        return configuration;
    }
View Full Code Here

     *
     * @param graph
     *            the graph to show
     */
    protected final void configureGraph(final BuildResultGraph graph) {
        configuration = new GraphConfiguration(graph);
        configuration.initializeFrom(width, height, dayCountString);
    }
View Full Code Here

TOP

Related Classes of hudson.plugins.analysis.graph.GraphConfiguration

Copyright © 2018 www.massapicom. 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.