If you have any questions, please feel free to ask in our forums.Ask Question
4 Comments
jamesf says:
Hi Sunil,
I may not know the title for the chart ahead of time. So for example I was trying to do this;
chart.title.text = ” a dynamic title gathered from a json file or json response”;
Then of course
chart.render;
Is this possible?
Thanks,
Jim
jamesf says:
I meant chart.render(); near the bottom not chart.render;
jamesf says:
I answered my own question it is:
chart.options.title.text = “some new thing you want here”;
chart.render();
Assuming the chart is named chart via:
Sunil Urs says:
James,
I can confirm that “chart.options.title.text” is the right way to go.
We haven’t added this in documentation because it is fully not supported yet – around 95% of parameters are supported as of now. So we just need to support few more parameters before making it public.
If you have any questions, please feel free to ask in our forums. Ask Question
Hi Sunil,
I may not know the title for the chart ahead of time. So for example I was trying to do this;
chart.title.text = ” a dynamic title gathered from a json file or json response”;
Then of course
chart.render;
Is this possible?
Thanks,
Jim
I meant chart.render(); near the bottom not chart.render;
I answered my own question it is:
chart.options.title.text = “some new thing you want here”;
chart.render();
Assuming the chart is named chart via:
James,
I can confirm that “chart.options.title.text” is the right way to go.
We haven’t added this in documentation because it is fully not supported yet – around 95% of parameters are supported as of now. So we just need to support few more parameters before making it public.