amcharts3 icon indicating copy to clipboard operation
amcharts3 copied to clipboard

columnspacing not working for amstock chart and also for series chart

Open savita1378 opened this issue 6 years ago • 15 comments

savita1378 avatar Aug 29 '17 12:08 savita1378

Could you please provide more details, or a demo?

martynasma avatar Aug 29 '17 13:08 martynasma

Hi, Can you also tell me is amchart compatible with angular 2?

On Tue, Aug 29, 2017 at 6:31 PM, Martynas Majeris [email protected] wrote:

Could you please provide more details, or a demo?

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/amcharts/amcharts3/issues/128#issuecomment-325656190, or mute the thread https://github.com/notifications/unsubscribe-auth/AJoPpgcIv8mNnNAAGaclLiIZ_SxX-6bfks5sdAuQgaJpZM4PF3LB .

savita1378 avatar Sep 07 '17 07:09 savita1378

Yes, it is. We have an Angular2 plugin and usage instructions here:

https://github.com/amcharts/amcharts3-angular2

martynasma avatar Sep 08 '17 12:09 martynasma

Hi Team , Can you please suggest me that in amchart that can we upload partial data when scrolling back in amchart as when required.

Like we have data for 6 month and it is showing in amchart and if we required to see data for previous 12 months and we scoll back then is it possible in amchart that it will fetch data on scrolling back

Thanks, Savita Dabral

savita1378 avatar Sep 23 '17 05:09 savita1378

Well, there is no built-in functionality for that.

However, you can watch the zoomed event on the chart and dynamically update dataProvider.

Here's a demo for that for Stock Chart:

https://www.amcharts.com/kbase/incremental-on-demand-data-loading-for-stock-chart/

Hopefully, it gets you on the right track.

martynasma avatar Sep 27 '17 04:09 martynasma

Hi, Can you also tell me that can we modify the previous value/data in amchart after loading of the chart

On Wed, Sep 27, 2017 at 9:56 AM, Martynas Majeris [email protected] wrote:

Well, there is no built-in functionality for that.

However, you can watch the zoomed event on the chart and dynamically update dataProvider.

Here's a demo for that for Stock Chart:

https://www.amcharts.com/kbase/incremental-on-demand- data-loading-for-stock-chart/

Hopefully, it gets you on the right track.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/amcharts/amcharts3/issues/128#issuecomment-332405409, or mute the thread https://github.com/notifications/unsubscribe-auth/AJoPplcsYQfTGtVoKqgWpRnfoe_SBpARks5smc6RgaJpZM4PF3LB .

savita1378 avatar Sep 27 '17 08:09 savita1378

Sure.

To modify the data on the Stock Chart, you need to modify dataProvider of the respective data set, as well as call validateData(). E.g.:

chart.dataSets[0].dataProvider = newData;
chart.valdiateData();

Hope this helps.

martynasma avatar Sep 29 '17 06:09 martynasma

Hi Team, Can you tell me any mouse drag event in amchart .

On Fri, Sep 29, 2017 at 11:57 AM, Martynas Majeris <[email protected]

wrote:

Sure.

To modify the data on the Stock Chart, you need to modify dataProvider of the respective data set, as well as call validateData(). E.g.:

chart.dataSets[0].dataProvider = newData; chart.valdiateData();

Hope this helps.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/amcharts/amcharts3/issues/128#issuecomment-333041958, or mute the thread https://github.com/notifications/unsubscribe-auth/AJoPpjx3ek0zM6o1Y-2TJ5PzszJ5S5YIks5snI3FgaJpZM4PF3LB .

savita1378 avatar Oct 09 '17 09:10 savita1378

Could you please be more specific? Are you referring to the cursor being dragged to zoom?

martynasma avatar Oct 13 '17 04:10 martynasma

Hi Team, I am facing flickering (on mouse hover) in chart when we insert real time data. can you please tell how to stop flickering on mouse hover Thanks, Savita Dabral

On Fri, Oct 13, 2017 at 10:10 AM, Martynas Majeris <[email protected]

wrote:

Could you please be more specific? Are you referring to the cursor being dragged to zoom?

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/amcharts/amcharts3/issues/128#issuecomment-336348710, or mute the thread https://github.com/notifications/unsubscribe-auth/AJoPpvnS7RjgpieoLaBsgQ3vG9rYxIL2ks5srunbgaJpZM4PF3LB .

savita1378 avatar Oct 26 '17 04:10 savita1378

Again, if you could provide a sample of such case, that would certainly help.

martynasma avatar Oct 26 '17 05:10 martynasma

can you check this example http://jsfiddle.net/amcharts/s6BnP/

On Thu, Oct 26, 2017 at 10:41 AM, Martynas Majeris <[email protected]

wrote:

Again, if you could provide a sample of such case, that would certainly help.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/amcharts/amcharts3/issues/128#issuecomment-339553132, or mute the thread https://github.com/notifications/unsubscribe-auth/AJoPpjNCBQlUl0g4r9JVJGyL_eT8Gfodks5swBRxgaJpZM4PF3LB .

savita1378 avatar Oct 26 '17 11:10 savita1378

Thanks.

While there's not a lot that can be done about the flickering, I found that setting cursor's position to "mouse", helps a little:

chart.chartCursorSettings.cursorPosition = "mouse";

I hope you find this useful.

martynasma avatar Oct 26 '17 15:10 martynasma

Hi Team, Thanks for the suggestion. Can you please also tell me that how to add white empty space in the chart. Because all the charts in amcharts forms at the right end . we need some empty space right side.

here is the example: https://www.amcharts.com/kbase/controlling-category-axis-start-end-points-adding-empty-data-points/

Can we have some other way to do this as this is not the ideal way to add space

Thanks, Savita dabral

On Thu, Oct 26, 2017 at 8:37 PM, Martynas Majeris [email protected] wrote:

Thanks.

While there's not a lot that can be done about the flickering, I found that setting cursor's position to "mouse", helps a little:

chart.chartCursorSettings.cursorPosition = "mouse";

I hope you find this useful.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/amcharts/amcharts3/issues/128#issuecomment-339697005, or mute the thread https://github.com/notifications/unsubscribe-auth/AJoPptKUxMTzLB575EXTlhC_Dtjk-ULvks5swKAtgaJpZM4PF3LB .

savita1378 avatar Oct 30 '17 12:10 savita1378

You can use an automatic plugin to do that for you:

https://github.com/amcharts/tools/tree/master/datePadding

martynasma avatar Nov 10 '17 07:11 martynasma