Search found 8 matches

by Osvano
Mon Nov 05, 2012 7:50 pm
Forum: JavaScript / HTML5
Topic: Limiting Zoom Line Chart
Replies: 4
Views: 10195

Re: Limiting Zoom Line Chart

Hi,

Can anyone help me solve this problem?

Thanks,

Osvano
by Osvano
Mon Oct 22, 2012 3:54 pm
Forum: JavaScript / HTML5
Topic: Limiting Zoom Line Chart
Replies: 4
Views: 10195

Re: Limiting Zoom Line Chart

Hi, Yeray

I don't want to show repeated labels. Is there a way to do this?

Thanks,

Osvano
by Osvano
Mon Oct 22, 2012 11:46 am
Forum: JavaScript / HTML5
Topic: Limiting Zoom Line Chart
Replies: 4
Views: 10195

Limiting Zoom Line Chart

Good morning,

I am needing to limit the zoom on a line graph, the image shows the zoom in 0:13:54 and 0:13:55 repeating itself, how can I prevent it?

I thank your attention.

Osvano.
by Osvano
Thu Sep 13, 2012 8:51 pm
Forum: JavaScript / HTML5
Topic: Change line color in a line chart
Replies: 4
Views: 11861

Re: Change line color in a line chart

Hello Rob Cooke

First, thank you for ideas.

When you say
"You can make your series' pointers visible and have a condition-based color for each pointer" would be done like this?

You have to send me an example?

I thank your attention,

Osvano.
by Osvano
Tue Sep 11, 2012 7:25 pm
Forum: JavaScript / HTML5
Topic: Change line color in a line chart
Replies: 4
Views: 11861

Re: Change line color in a line chart

Can anyone help me??

Sincerely,

Osvano
by Osvano
Tue Sep 11, 2012 2:53 pm
Forum: JavaScript / HTML5
Topic: Recovering start point and end point of a line graph
Replies: 2
Views: 7775

Re: Recovering start point and end point of a line graph

Thanks RJCookeSE I managed to solve this: 1) I created my start date to: var now = new Date (1970, 0, 1, 0, 0, 0, 0). getTime (); 2) And to make the zoom: Chart1.onzoom = function () {      document.getElementById('frmDatas:idInicio').Chart1.axes.bottom.minimum.toFixed(0) / 1000;      document.getEl...
by Osvano
Mon Sep 10, 2012 6:18 pm
Forum: JavaScript / HTML5
Topic: Change line color in a line chart
Replies: 4
Views: 11861

Change line color in a line chart

Dear friends,

I need to change the line color of a line chart based on a condition,
In one part blue and the other red.
As in the example file "chart.jpg."

Someone can tell me how can I do this?

Att

Osvano.
by Osvano
Mon Sep 10, 2012 12:17 pm
Forum: JavaScript / HTML5
Topic: Recovering start point and end point of a line graph
Replies: 2
Views: 7775

Recovering start point and end point of a line graph

Dear friends, I have a line chart, and need to retrieve the start point and end point even after the zoom: I'm using axis.bootom as: Chart1.axes.bottom.labels.dateFormat = "isoTime"; I tried using the onzoom Chart1.onzoom = function () {      alert (Chart1.axes.bottom.minimum);      alert (Chart1.ax...