Category: Internet

Cómo rotar los labels con JfreeChart 0

Cómo rotar los labels con JfreeChart

  CategoryPlot plot = (CategoryPlot)chart.getPlot(); CategoryAxis xAxis = (CategoryAxis)plot.getDomainAxis(); xAxis.setCategoryLabelPositions(CategoryLabelPositions.UP_45); CategoryPlot plot = (CategoryPlot)chart.getPlot(); CategoryAxis xAxis = (CategoryAxis)plot.getDomainAxis(); xAxis.setCategoryLabelPositions(CategoryLabelPositions.UP_45);

Crear un gráfico con JFreeChart en JSP 4

Crear un gráfico con JFreeChart en JSP

<%@page import="org.jfree.chart.ChartFactory" %> <%@page import="org.jfree.chart.ChartUtilities" %> <%@page import="org.jfree.chart.JFreeChart" %> <%@page import="java.io.File" %> <%@page import="org.jfree.chart.plot.*" %> <%@page import="java.io.*" %> <%@page import="org.jfree.data.category.DefaultCategoryDataset" %> <% // Create a simple Bar chart DefaultCategoryDataset dataset = new DefaultCategoryDataset(); dataset.setValue(5,...