1

I'm using jFreechart to create a line chart like this (taken from demo) :

final JFreeChart chart = ChartFactory.createLineChart(
            "Line Chart Demo 1",       // chart title
            "Type",                    // domain axis label
            "Value",                   // range axis label
            dataset,                   // data
            PlotOrientation.VERTICAL,  // orientation
            true,                      // include legend
            true,                      // tooltips
            false                      // urls
        );

Is it possible to convert the range and domain into the unicode encoding system ?

Thank you!

Gary
  • 11
  • 1

1 Answers1

0

Here's a general example showing Unicode glyphs in the chart legend and in an annotation. More here. See also org.jfree.chart.axis.SymbolAxis.

image

Community
  • 1
  • 1
trashgod
  • 203,806
  • 29
  • 246
  • 1,045