Personally, I like the way the Google libraries API handles versioning (
http://code.google.com/apis/libraries/devguide.html#versioning); it just
isn't used that way with the Viz API. According to the spec:
google.load('visualization', '1', {packages: ['corechart']});
would load the most current version, whereas:
google.load('visualization', '1.6', {packages: ['corechart']});
would load version 1.6, regardless of what the current version is. As The
Charts Guy on my dev team, it falls on me to make sure that any update to
the API doesn't break the charts on our site, which can be quite a
time-consuming task. Having a stable API version to draw from would lighten
my workload considerably.
--
You received this message because you are subscribed to the Google Groups
"Google Visualization API" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/google-visualization-api/-/QnFmu_WyJjUJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-visualization-api?hl=en.