Hi,
the script it's that to default:
def configureChart(data, chart):
---
Provides an opportunity to perform chart
configuration right before the report is
rendered. Report Parameters and Data Sources
are accessible via the data['myKey'] command.
Arguments:
data: This is a map whose keys are report
data keys. Values should be sequences,
maps, scalar values, or Datasets.
chart: A JFreeChart object that will be
drawn on the report.
---
in 'data' I want to pass the pens and the full scales
You would need to make the pens keys for the report. You do not get the opportunity to call the configureChart() method. data is a dictionary where the keys are the data keys in the report.
Well that depends on your needs and what your data looks like.
Search the forum for what you are trying to do, there are several posts detailing how to do multiple things with JFreeCharts.
Both the Classic Chart, and Easy Chart Vision components are backed by JFreeCharts, so the configurations are the same. The only difference is how you get the data to the chart.