Interface IRSChartService


  • @Path("https://chart.googleapis.com")
    public interface IRSChartService
    The mapping information for the rest service. Describes how the Java service call information is used to generate the rest service call.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      IFuture<byte[]> getBarChart​(int width, int height, double[][] data, java.lang.String[] labels, java.awt.Color[] colors)
      Get a bar chart.
      IFuture<byte[]> getLineChart​(int width, int height, double[][] data, java.lang.String[] labels, java.awt.Color[] colors)
      Get a line chart.
      IFuture<byte[]> getPieChart​(int width, int height, double[][] data, java.lang.String[] labels, java.awt.Color[] colors)
      Get a pie chart.
    • Method Detail

      • getBarChart

        @GET
        @Path("chart")
        @Produces("application/octet-stream")
        IFuture<byte[]> getBarChart​(int width,
                                    int height,
                                    double[][] data,
                                    java.lang.String[] labels,
                                    java.awt.Color[] colors)
        Get a bar chart.
      • getLineChart

        @GET
        @Path("chart")
        @Produces("application/octet-stream")
        IFuture<byte[]> getLineChart​(int width,
                                     int height,
                                     double[][] data,
                                     java.lang.String[] labels,
                                     java.awt.Color[] colors)
        Get a line chart.
      • getPieChart

        @GET
        @Path("chart")
        @Produces("application/octet-stream")
        IFuture<byte[]> getPieChart​(int width,
                                    int height,
                                    double[][] data,
                                    java.lang.String[] labels,
                                    java.awt.Color[] colors)
        Get a pie chart.