cancel
Showing results for 
Search instead for 
Did you mean: 

Line chart does not display all data for a specified SD and ED

Former Member
0 Kudos

I have a grid and a chart using the same query on the same irpt. The grid's date range controls the chart. When I expand the date range to something around 2 mos, I only see data on the chart for approximately 7 days. Can you please direct me to which setting needs to be configured in order to show every point on the graph?

The start and end dates of the queries are blank and the default for each query is 1 day, but when the user sets his/her SD and ED, I can only return 10 days. The query is limited to 100,000 records and I can return all of the data for the grid, but not the chart.

Is there a limited amount of data that can be shown on a line chart?

This is the update function I use when the user changes the date range on the grid.

function onUpdate()

{

Chart.getQueryObject().setStartDate(Grid.getQueryObject().getStartDate());

Chart.getQueryObject().setEndDate(Grid.getQueryObject().getEndDate());

document.Chart.updateChart(true);

}

View Entire Topic
Former Member
0 Kudos

This is actually an easy one, Chip.

Uncheck "Use Screen Resolution" in the Chart template configuration tab and you'll be working as expected.

Former Member
0 Kudos

I knew it had to be easy. Thanks!!