0
votes

I would like that both yAxis and their labels in charts located at http://contenidopremium.estrategiasdeinversion.com/modulos/indicadores/framework_indicadores.php?t=BBVA&k=msdgv8IUDfviuqweRH9snsdvu7wsaeuvc87awer43sdney where displayed out the plot (not overflow in chart) as you can see in this chart http://www.highcharts.com/demo/spline-symbols but I don't find the difference or the correct options. I think that the difference is that demo is highchart and mine is highstock but I'm not sure.

Could anybody help me?

Thank ins advance, txetxu.

2
Can you post your chart definition code ? It's likely to be something to do with the 'legend' options you are using.SteveP
I tried it and with Highchart the yAxis show out the plot, can I get the same with Highstock?txetxuvel

2 Answers

0
votes

Set yAxis.labels.align to right, and manipulate x/y values, see: http://jsfiddle.net/JJLBp/

0
votes

You can alter the position of the legend using the 'align' and 'verticalAlign' options. Try something like this:

legend: {
    enabled: true,
    verticalAlign: 'bottom'
},

This works with highstock http://jsfiddle.net/PZzYR/.