AMCharts - setting the label of the Y axis












1















Im just wondering how I can do this. I set up a grid and I give it the following options:



this._chartOptions = 
{
"type": 'serial',
"categoryField": "category",
"balloonText": '',
"startDuration": 1,
"categoryAxis": {
"gridPosition": "start"
},
"trendLines": ,
"graphs": [
{
"balloonColor": "#ffff00",
"colorField": "#ffff00",
"fillAlphas": 1,
"fillColors": "#ffff00",
"id": "AmGraph-1",
"lineColorField": "ffff00",
"title": "graph 1",
"type": "column",
"valueField": "column-1"
},
],
"guides": ,
"valueAxes": [
{
"id": "ValueAxis-1",
"title": 'Deals per stage'
}
],
"allLabels": ,
"balloon": {},
"titles": ,
"dataProvider": this._dataProvider
}


Then I have some buttons. The buttons change the chart being displayed. So by default it shows a bar chart and then the next button will display that info as a pie chart. The next one is supposed to show a different bar chart.
My problem is that I cant seem to change the y axis label. By default it is 'Deals per stage'. When I open up this bar chart I want to change it to 'Revenue per Quarter'.



Ive tried setting the following when the button is clicked:



__this._chartOptions.valueAxes = [
{
"id": "ValueAxis-1",
"title": 'Revenue per Quarter'
}];


But this ends up causing the bars in the bar chart not to draw for some reason. IS there an easy way to do this? Can anyone tell me why the above would stop the data drawing in the chart?










share|improve this question


















  • 2





    How are you redrawing the chart? validateNow()? validateData()? Why not just set the title element directly instead of creating a brand new array? (__this._chartOptions.valueAxes[0].title = "..."). Can you post a fiddle?

    – xorspark
    Nov 20 '18 at 18:05






  • 2





    Yeah, don't do that. Use validateData() or validateNow() to redraw after changing properties or data. Clearing the div doesn't free up memory taken up by the chart and will lead to other visual bugs down the line as old instances will still think they're active and try to take over. If you need to replace a div with a completely different chart type or just outright delete it, call the chart's clear method to clean up the chart.

    – xorspark
    Nov 20 '18 at 18:35






  • 1





    Hmmmm. I think for what I will be doing just clearing it out completely will be the better option. Cheers for the info.

    – discodowney
    Nov 20 '18 at 18:57






  • 1





    It's called dispose in v4.

    – xorspark
    Nov 30 '18 at 19:21








  • 1





    You generally don't need to force a redraw as the chart detects the majority of changes on its own, except in some cases (usually data oriented). If you need to force a redraw, invalidate, invalidateData, or invalidateRawData depending on your needs. The latter two are primarily focused around data updates.

    – xorspark
    Dec 14 '18 at 18:46


















1















Im just wondering how I can do this. I set up a grid and I give it the following options:



this._chartOptions = 
{
"type": 'serial',
"categoryField": "category",
"balloonText": '',
"startDuration": 1,
"categoryAxis": {
"gridPosition": "start"
},
"trendLines": ,
"graphs": [
{
"balloonColor": "#ffff00",
"colorField": "#ffff00",
"fillAlphas": 1,
"fillColors": "#ffff00",
"id": "AmGraph-1",
"lineColorField": "ffff00",
"title": "graph 1",
"type": "column",
"valueField": "column-1"
},
],
"guides": ,
"valueAxes": [
{
"id": "ValueAxis-1",
"title": 'Deals per stage'
}
],
"allLabels": ,
"balloon": {},
"titles": ,
"dataProvider": this._dataProvider
}


Then I have some buttons. The buttons change the chart being displayed. So by default it shows a bar chart and then the next button will display that info as a pie chart. The next one is supposed to show a different bar chart.
My problem is that I cant seem to change the y axis label. By default it is 'Deals per stage'. When I open up this bar chart I want to change it to 'Revenue per Quarter'.



Ive tried setting the following when the button is clicked:



__this._chartOptions.valueAxes = [
{
"id": "ValueAxis-1",
"title": 'Revenue per Quarter'
}];


But this ends up causing the bars in the bar chart not to draw for some reason. IS there an easy way to do this? Can anyone tell me why the above would stop the data drawing in the chart?










share|improve this question


















  • 2





    How are you redrawing the chart? validateNow()? validateData()? Why not just set the title element directly instead of creating a brand new array? (__this._chartOptions.valueAxes[0].title = "..."). Can you post a fiddle?

    – xorspark
    Nov 20 '18 at 18:05






  • 2





    Yeah, don't do that. Use validateData() or validateNow() to redraw after changing properties or data. Clearing the div doesn't free up memory taken up by the chart and will lead to other visual bugs down the line as old instances will still think they're active and try to take over. If you need to replace a div with a completely different chart type or just outright delete it, call the chart's clear method to clean up the chart.

    – xorspark
    Nov 20 '18 at 18:35






  • 1





    Hmmmm. I think for what I will be doing just clearing it out completely will be the better option. Cheers for the info.

    – discodowney
    Nov 20 '18 at 18:57






  • 1





    It's called dispose in v4.

    – xorspark
    Nov 30 '18 at 19:21








  • 1





    You generally don't need to force a redraw as the chart detects the majority of changes on its own, except in some cases (usually data oriented). If you need to force a redraw, invalidate, invalidateData, or invalidateRawData depending on your needs. The latter two are primarily focused around data updates.

    – xorspark
    Dec 14 '18 at 18:46
















1












1








1








Im just wondering how I can do this. I set up a grid and I give it the following options:



this._chartOptions = 
{
"type": 'serial',
"categoryField": "category",
"balloonText": '',
"startDuration": 1,
"categoryAxis": {
"gridPosition": "start"
},
"trendLines": ,
"graphs": [
{
"balloonColor": "#ffff00",
"colorField": "#ffff00",
"fillAlphas": 1,
"fillColors": "#ffff00",
"id": "AmGraph-1",
"lineColorField": "ffff00",
"title": "graph 1",
"type": "column",
"valueField": "column-1"
},
],
"guides": ,
"valueAxes": [
{
"id": "ValueAxis-1",
"title": 'Deals per stage'
}
],
"allLabels": ,
"balloon": {},
"titles": ,
"dataProvider": this._dataProvider
}


Then I have some buttons. The buttons change the chart being displayed. So by default it shows a bar chart and then the next button will display that info as a pie chart. The next one is supposed to show a different bar chart.
My problem is that I cant seem to change the y axis label. By default it is 'Deals per stage'. When I open up this bar chart I want to change it to 'Revenue per Quarter'.



Ive tried setting the following when the button is clicked:



__this._chartOptions.valueAxes = [
{
"id": "ValueAxis-1",
"title": 'Revenue per Quarter'
}];


But this ends up causing the bars in the bar chart not to draw for some reason. IS there an easy way to do this? Can anyone tell me why the above would stop the data drawing in the chart?










share|improve this question














Im just wondering how I can do this. I set up a grid and I give it the following options:



this._chartOptions = 
{
"type": 'serial',
"categoryField": "category",
"balloonText": '',
"startDuration": 1,
"categoryAxis": {
"gridPosition": "start"
},
"trendLines": ,
"graphs": [
{
"balloonColor": "#ffff00",
"colorField": "#ffff00",
"fillAlphas": 1,
"fillColors": "#ffff00",
"id": "AmGraph-1",
"lineColorField": "ffff00",
"title": "graph 1",
"type": "column",
"valueField": "column-1"
},
],
"guides": ,
"valueAxes": [
{
"id": "ValueAxis-1",
"title": 'Deals per stage'
}
],
"allLabels": ,
"balloon": {},
"titles": ,
"dataProvider": this._dataProvider
}


Then I have some buttons. The buttons change the chart being displayed. So by default it shows a bar chart and then the next button will display that info as a pie chart. The next one is supposed to show a different bar chart.
My problem is that I cant seem to change the y axis label. By default it is 'Deals per stage'. When I open up this bar chart I want to change it to 'Revenue per Quarter'.



Ive tried setting the following when the button is clicked:



__this._chartOptions.valueAxes = [
{
"id": "ValueAxis-1",
"title": 'Revenue per Quarter'
}];


But this ends up causing the bars in the bar chart not to draw for some reason. IS there an easy way to do this? Can anyone tell me why the above would stop the data drawing in the chart?







amcharts






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 20 '18 at 17:45









discodowneydiscodowney

56821838




56821838








  • 2





    How are you redrawing the chart? validateNow()? validateData()? Why not just set the title element directly instead of creating a brand new array? (__this._chartOptions.valueAxes[0].title = "..."). Can you post a fiddle?

    – xorspark
    Nov 20 '18 at 18:05






  • 2





    Yeah, don't do that. Use validateData() or validateNow() to redraw after changing properties or data. Clearing the div doesn't free up memory taken up by the chart and will lead to other visual bugs down the line as old instances will still think they're active and try to take over. If you need to replace a div with a completely different chart type or just outright delete it, call the chart's clear method to clean up the chart.

    – xorspark
    Nov 20 '18 at 18:35






  • 1





    Hmmmm. I think for what I will be doing just clearing it out completely will be the better option. Cheers for the info.

    – discodowney
    Nov 20 '18 at 18:57






  • 1





    It's called dispose in v4.

    – xorspark
    Nov 30 '18 at 19:21








  • 1





    You generally don't need to force a redraw as the chart detects the majority of changes on its own, except in some cases (usually data oriented). If you need to force a redraw, invalidate, invalidateData, or invalidateRawData depending on your needs. The latter two are primarily focused around data updates.

    – xorspark
    Dec 14 '18 at 18:46
















  • 2





    How are you redrawing the chart? validateNow()? validateData()? Why not just set the title element directly instead of creating a brand new array? (__this._chartOptions.valueAxes[0].title = "..."). Can you post a fiddle?

    – xorspark
    Nov 20 '18 at 18:05






  • 2





    Yeah, don't do that. Use validateData() or validateNow() to redraw after changing properties or data. Clearing the div doesn't free up memory taken up by the chart and will lead to other visual bugs down the line as old instances will still think they're active and try to take over. If you need to replace a div with a completely different chart type or just outright delete it, call the chart's clear method to clean up the chart.

    – xorspark
    Nov 20 '18 at 18:35






  • 1





    Hmmmm. I think for what I will be doing just clearing it out completely will be the better option. Cheers for the info.

    – discodowney
    Nov 20 '18 at 18:57






  • 1





    It's called dispose in v4.

    – xorspark
    Nov 30 '18 at 19:21








  • 1





    You generally don't need to force a redraw as the chart detects the majority of changes on its own, except in some cases (usually data oriented). If you need to force a redraw, invalidate, invalidateData, or invalidateRawData depending on your needs. The latter two are primarily focused around data updates.

    – xorspark
    Dec 14 '18 at 18:46










2




2





How are you redrawing the chart? validateNow()? validateData()? Why not just set the title element directly instead of creating a brand new array? (__this._chartOptions.valueAxes[0].title = "..."). Can you post a fiddle?

– xorspark
Nov 20 '18 at 18:05





How are you redrawing the chart? validateNow()? validateData()? Why not just set the title element directly instead of creating a brand new array? (__this._chartOptions.valueAxes[0].title = "..."). Can you post a fiddle?

– xorspark
Nov 20 '18 at 18:05




2




2





Yeah, don't do that. Use validateData() or validateNow() to redraw after changing properties or data. Clearing the div doesn't free up memory taken up by the chart and will lead to other visual bugs down the line as old instances will still think they're active and try to take over. If you need to replace a div with a completely different chart type or just outright delete it, call the chart's clear method to clean up the chart.

– xorspark
Nov 20 '18 at 18:35





Yeah, don't do that. Use validateData() or validateNow() to redraw after changing properties or data. Clearing the div doesn't free up memory taken up by the chart and will lead to other visual bugs down the line as old instances will still think they're active and try to take over. If you need to replace a div with a completely different chart type or just outright delete it, call the chart's clear method to clean up the chart.

– xorspark
Nov 20 '18 at 18:35




1




1





Hmmmm. I think for what I will be doing just clearing it out completely will be the better option. Cheers for the info.

– discodowney
Nov 20 '18 at 18:57





Hmmmm. I think for what I will be doing just clearing it out completely will be the better option. Cheers for the info.

– discodowney
Nov 20 '18 at 18:57




1




1





It's called dispose in v4.

– xorspark
Nov 30 '18 at 19:21







It's called dispose in v4.

– xorspark
Nov 30 '18 at 19:21






1




1





You generally don't need to force a redraw as the chart detects the majority of changes on its own, except in some cases (usually data oriented). If you need to force a redraw, invalidate, invalidateData, or invalidateRawData depending on your needs. The latter two are primarily focused around data updates.

– xorspark
Dec 14 '18 at 18:46







You generally don't need to force a redraw as the chart detects the majority of changes on its own, except in some cases (usually data oriented). If you need to force a redraw, invalidate, invalidateData, or invalidateRawData depending on your needs. The latter two are primarily focused around data updates.

– xorspark
Dec 14 '18 at 18:46














0






active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53398674%2famcharts-setting-the-label-of-the-y-axis%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53398674%2famcharts-setting-the-label-of-the-y-axis%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

MongoDB - Not Authorized To Execute Command

in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

How to fix TextFormField cause rebuild widget in Flutter