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);

}

Accepted Solutions (1)

Accepted Solutions (1)

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!!

Answers (2)

Answers (2)

jamie_cawley
Advisor
Advisor
0 Kudos

Take a look at note 939129

I would recommend limited your query to some more reasonable, 100,000 is way too large and will cause IE to crash.

Jamie

Former Member
0 Kudos

I know that 100,000 is not reasonable. I just put that there to see if the numbers change. Please send a link. I searched for 939129 and this forum came up with 0 records. I also, placed it in the URL and returned nothing.

jamie_cawley
Advisor
Advisor
Former Member
0 Kudos

No matter what I do, I only return 453 records.