Hi Stephen,

Your assumption that the chart should show all your data is correct.
Currently, the chart will silently hide data that can't be show with enough
resolution.  It is not clear whether 2 pixels are required as a minimum,
but it seems 1 pixel should be sufficient.   But note that you could get
values that map so close together that they would overlap, especially since
the hAxis is using logScale.   Even so, we should have a mode where it
doesn't hide data but rather just draws more bars on top of each other.

If you could point to a page that shows your chart with missing bars
(jsfiddle is good for this), that might help us help you more.

On Mon, Dec 15, 2014 at 4:46 AM, Stephen Mason <[email protected]> wrote:
>
> Hi every one..
>
> I have a column chart that is defined as having a width of 700
>
> I have a array of data that references 2 (columns ) x438 points and the
> graph is stacked
>
> My issue is that the data ceases to render after about 434 points and so
> the graph is effectively incomplete.
> I really need however to work within this width as i out put this graph to
> a PDF
>
>
> the JS that renders the graph is below
>
>   function CPUTimevsWaitTime() {
>                         var data =
> google.visualization.arrayToDataTable(CPUTimevsWaitTimeDATA);
>                         var options = {
>                                 title: "",
>                                 isStacked: true,
>                                 vAxis: {title: 'Seconds',minValue:
> 0,baseline:0,gridlines:{count:8}},
>                                 legend: {position: 'top', textStyle:
> {color: legendColour, fontSize: 12},viewWindowMode:'explicit'  },
>                                 hAxis :
> {slantedTextAngle:90,logScale:true, textStyle: { color: '#005500',
> fontSize: '6' } },
>                                 chartArea: CPUTimevsWaitTimeSIZE,
> bar: { groupWidth: '100%' },
> colors: [chartBlue, chartRed]
>                             };
>                         var chart = new
> google.visualization.ColumnChart(document.getElementById('CPUTimevsWaitTime'));
>                         chart.draw(data, options);
>                     }
>
>
>
> Has anyone got any idea how i can solve this issue please? Its been a
> thorn in my side for some time.
>
>
> Cheers
>
> Seve
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google Chart API" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> To post to this group, send email to [email protected].
> Visit this group at http://groups.google.com/group/google-chart-api.
> For more options, visit https://groups.google.com/d/optout.
>


-- 
Daniel LaLiberte <https://plus.google.com/100631381223468223275?prsrc=2>  -
978-394-1058
[email protected] <[email protected]>   5CC, Cambridge MA
[email protected] <[email protected]> 9 Juniper Ridge
Road, Acton MA

-- 
You received this message because you are subscribed to the Google Groups 
"Google Chart API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/google-chart-api.
For more options, visit https://groups.google.com/d/optout.

Reply via email to