A few things you should do: Update how you load Google Charts:
https://developers.google.com/chart/interactive/docs/basic_load_libs#update-library-loader-code Either sort the datatable yourself based on the hAxis (or x axis) values, or use getSortedRows and then construct a DataView and use setRows to set the rows of the DataView using the sorted row indices. You should be inserting null values any place that there isn't a value in each of your series corresponding to the x value. Maybe you are getting that same effect by using all those joins now, but it is difficult for me to tell. Then add interpolateNulls: true to the options. It would be helpful for your debugging, and if you want more help from me, for you to generate a google.visualization.Table using the operacion data that you are using now with the LineChart. On Wed, Sep 2, 2020 at 5:28 PM sistemas-web <[email protected]> wrote: > > Thank you for answering as soon as possible, I attach the file I am using, I > bring the data and store it in an array, I convert it to json, with a loop I > can print the curves that I need to show, as I am new to this issue of google > charts, Possibly I am doing it wrong, I would appreciate your help > > > > > > *De: *'Daniel LaLiberte' via Google Visualization API > <[email protected]> > *Enviado: *miƩrcoles, 2 de septiembre de 2020 02:57 p. m. > *Para: *Google Visualization API > <[email protected]> > *Asunto: *Re: [visualization-api] the curve is not drawn completely > > > > It's not clear if your chart is produced inside sheets (which uses a > separate internal charting library), or separately using Google Charts. If > it's the latter, my guess is that you should enable the interpolateNulls > option, and also sort the data by whatever you are using for the horizontal > axis. > > > > On Wed, Sep 2, 2020 at 3:47 PM copiisa offshore <[email protected]> > wrote: > > I have this problem, the line is not drawn completely, I am using php and > mysql, the data I bring from a BD as it is in the attachment, what I am > looking for is that the line or the curve is shown complete, if someone has > something solution > > -- > You received this message because you are subscribed to the Google Groups > "Google Visualization API" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/google-visualization-api/1666e40d-1567-4684-a3fd-5308ec7a1735n%40googlegroups.com > <https://groups.google.com/d/msgid/google-visualization-api/1666e40d-1567-4684-a3fd-5308ec7a1735n%40googlegroups.com?utm_medium=email&utm_source=footer> > . > > > > > -- > > *Daniel LaLiberte* <https://plus.google.com/100631381223468223275?prsrc=2> > > [email protected] <[email protected]> Cambridge MA > > > > -- > You received this message because you are subscribed to the Google Groups > "Google Visualization API" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/google-visualization-api/CAOtcSJN92_BkN-9e3OjQJH_o0_CA%2BY4%2B_S38LbO%2By76X3KKs8Q%40mail.gmail.com > <https://groups.google.com/d/msgid/google-visualization-api/CAOtcSJN92_BkN-9e3OjQJH_o0_CA%2BY4%2B_S38LbO%2By76X3KKs8Q%40mail.gmail.com?utm_medium=email&utm_source=footer> > . > > > > -- > You received this message because you are subscribed to the Google Groups > "Google Visualization API" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/google-visualization-api/D0615DF2-1076-43CD-ABC4-C3650BBA99C8%40hxcore.ol > <https://groups.google.com/d/msgid/google-visualization-api/D0615DF2-1076-43CD-ABC4-C3650BBA99C8%40hxcore.ol?utm_medium=email&utm_source=footer> > . > -- Daniel LaLiberte <https://plus.google.com/100631381223468223275?prsrc=2> [email protected] <[email protected]> Cambridge MA -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/google-visualization-api/CAOtcSJOBbNA-vypS94c7BnROz3xywBo59oL%3DqNEa9b2%2BPSzEgw%40mail.gmail.com.
