Overview
A histogram is a chart that groups numeric data into bins, displaying the bins as segmented columns. They're used to depict the distribution of a dataset: how often values fall into ranges.
Google Charts automatically chooses the number of bins for you. All bins are equal width and have a height proportional to the number of data points in the bin. In other respects, histograms are similar to column charts.
Example
Here's a histogram of dinosaur lengths:
The histogram tells us that the most common bin is < 10 meters, and that there's only one dinosaur over 40 meters. We can hover over the bar to discover that it's the Seismosaurus (which might be just a very big Diplodocus; paleontologists aren't sure).
The code to generate this histogram is shown below. After defining
the data (here,
with google.visualization.arrayToDataTable), the chart is
defined with a call to google.visualization.Histogram and
drawn with the draw method.
<html>
<head>
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load("visualization", "1", {packages:["corechart"]});
google.setOnLoadCallback(drawChart);
function drawChart() {
var data = google.visualization.arrayToDataTable([
['Dinosaur', 'Length'],
['Acrocanthosaurus (top-spined lizard)', 12.2],
['Albertosaurus (Alberta lizard)', 9.1],
['Allosaurus (other lizard)', 12.2],
['Apatosaurus (deceptive lizard)', 22.9],
['Archaeopteryx (ancient wing)', 0.9],
['Argentinosaurus (Argentina lizard)', 36.6],
['Baryonyx (heavy claws)', 9.1],
['Brachiosaurus (arm lizard)', 30.5],
['Ceratosaurus (horned lizard)', 6.1],
['Coelophysis (hollow form)', 2.7],
['Compsognathus (elegant jaw)', 0.9],
['Deinonychus (terrible claw)', 2.7],
['Diplodocus (double beam)', 27.1],
['Dromicelomimus (emu mimic)', 3.4],
['Gallimimus (fowl mimic)', 5.5],
['Mamenchisaurus (Mamenchi lizard)', 21.0],
['Megalosaurus (big lizard)', 7.9],
['Microvenator (small hunter)', 1.2],
['Ornithomimus (bird mimic)', 4.6],
['Oviraptor (egg robber)', 1.5],
['Plateosaurus (flat lizard)', 7.9],
['Sauronithoides (narrow-clawed lizard)', 2.0],
['Seismosaurus (tremor lizard)', 45.7],
['Spinosaurus (spiny lizard)', 12.2],
['Supersaurus (super lizard)', 30.5],
['Tyrannosaurus (tyrant lizard)', 15.2],
['Ultrasaurus (ultra lizard)', 30.5],
['Velociraptor (swift robber)', 1.8]]);
var options = {
title: 'Lengths of dinosaurs, in meters',
legend: { position: 'none' },
};
var chart = new google.visualization.Histogram(document.getElementById('chart_div'));
chart.draw(data, options);
}
</script>
</head>
<body>
<div id="chart_div" style="width: 900px; height: 500px;"></div>
</body>
</html>
The labels (here, the dinosaur names) can be omitted, in which case the tooltips will show only the numeric value.
Controlling Colors
Here's a histogram of national populations:
There are over two hundred countries with populations less than a hundred million, and a severe tailing off after that.
This histogram uses the colors option to draw the data
in green:
var options = {
title: 'Country Populations',
legend: { position: 'none' },
colors: ['green'],
};
As with all Google Charts, colors can be specified either as English names or as hex values.
Controlling Buckets
By default, Google Charts will choose the bucket size automatically, using a well-known algorithm for histograms. However, sometimes you'll want to override that, and the chart above is an example. With so many countries in the first bucket, it's hard to examine those in others.
For situations like this, the Histogram chart provides two
options: histogram.bucketSize, which overrides the
algorithm and hardcodes the bucket size;
and histogram.lastBucketPercentile, which computes the
bucket sizes ignoring the top and bottom values.
In the above chart, we ignored the top five and bottom five percent of values when calculating bucket size. The values are still charted; the only thing that's changed is the bucket size, but it makes for a more readable histogram.
var options = {
title: 'Country Populations',
legend: { position: 'none' },
colors: ['#e7711c'],
histogram: { lastBucketPercentile: 5 }
};
As you can see, removing the top and bottom five percent from the
calculation led to a bucket size of 10,000,000 rather than the
100,000,000 it would have been otherwise. If you knew all along that a
bucket size of 10,000,000 was what you wanted, you could have
used histogram.bucketSize to do that:
var options = {
title: 'Country Populations',
legend: { position: 'none' },
colors: ['#e7711c'],
histogram: { bucketSize: 10000000 }
};
Multiple Series
Here's a histogram of the charges of subatomic particles, according to the Standard Model:
The above chart has one series containing all the particles. Subatomic particles can be divided into four groups: quarks, leptons, and bosons. Let's treat each as its own series:
In this chart, we use a different series (and therefore color) for
each of the four types of subatomic particle. We explicitly
set interpolateNulls to false to ensure that
the null values (needed because the series are of unequal length)
aren't plotted. We also set legend.maxLines to add
another line to the legend:
var data = google.visualization.arrayToDataTable([
['Quarks', 'Leptons', 'Gauge Bosons', 'Scalar Bosons'],
[2/3, -1, 0, 0],
[2/3, -1, 0, null],
[2/3, -1, 0, null],
[-1/3, 0, 1, null],
[-1/3, 0, -1, null],
[-1/3, 0, null, null],
[-1/3, 0, null, null]
]);
var options = {
title: 'Charges of subatomic particles',
legend: { position: 'top', maxLines: 2 },
colors: ['#5C3292', '#1A8763', '#871B47', '#999999'],
interpolateNulls: false,
};
Loading
The google.load package name
is "corechart".
google.load("visualization", "1", {packages: ["corechart"]});
The visualization's class name is google.visualization.Histogram:
var visualization = new google.visualization.Histogram(container);
Data Format
There are two ways to populate a histogram datatable. When there's only one series:
var data = google.visualization.arrayToDataTable([
['Name', 'Number'],
['Name 1', number1],
['Name 2', number2],
['Name 3', number3],
...
]);
...and when there are multiple series:
var data = google.visualization.arrayToDataTable([
['Series Name 1', 'Series Name 2', 'Series Name 3', ...],
[series1_number1, series2_number1, series3_number1, ...],
[series1_number2, series2_number2, series3_number2, ...],
[series1_number3, series2_number3, series3_number3, ...],
...
]);
No optional column roles are supported for histograms at the moment.
Configuration Options
| Name | Type | Default | Description |
|---|---|---|---|
| animation.duration | number | 0 | The duration of the animation, in milliseconds. For details, see the animation documentation. |
| animation.easing | string | 'linear' | The easing function applied to the animation. The following options are available:
|
| animation.startup | boolean | false |
Determines if the chart will animate on the initial draw. If true, the chart will
start at the baseline and animate to its final state.
|
| axisTitlesPosition | string | 'out' | Where to place the axis titles, compared to the chart area. Supported values:
|
| backgroundColor | string or object | 'white' | The background color for the main area of the chart.
Can be either a simple HTML color string, for example: 'red' or '#00cc00', or an object with the following properties. |
| backgroundColor.stroke | string | '#666' | The color of the chart border, as an HTML color string. |
| backgroundColor.strokeWidth | number | 0 | The border width, in pixels. |
| backgroundColor.fill | string | 'white' | The chart fill color, as an HTML color string. |
| bar.groupWidth | number or string | The golden ratio, approximately '61.8%'. | The width of a group of bars, specified in either of these formats:
|
| chartArea | Object | null | An object with members to configure the placement and size of the chart area (where the chart itself is drawn, excluding axis and legends). Two formats are supported: a number, or a number followed by %. A simple number is a value in pixels; a number followed by % is a percentage. Example: chartArea:{left:20,top:0,width:'50%',height:'75%'} |
| chartArea.backgroundColor | string or object | 'white' | Chart area background color. When a string is used, it can be either a hex string (e.g., '#fdc') or an English color name. When an object is used, the following properties can be provided:
|
| chartArea.left | number or string | auto | How far to draw the chart from the left border. |
| chartArea.top | number or string | auto | How far to draw the chart from the top border. |
| chartArea.width | number or string | auto | Chart area width. |
| chartArea.height | number or string | auto | Chart area height. |
| colors | Array of strings | default colors | The colors to use for the chart elements.
An array of strings, where each element is an HTML color string, for example: colors:['red','#004411']. |
| dataOpacity | number | 1.0 | The transparency of data points, with 1.0 being completely opaque and 0.0 fully transparent. In scatter, histogram, bar, and column charts, this refers to the visible data: dots in the scatter chart and rectangles in the others. In charts where selecting data creates a dot, such as the line and area charts, this refers to the circles that appear upon hover or selection. The combo chart exhibits both behaviors, and this option has no effect on other charts. (To change the opacity of a trendline, see trendline opacity.) |
| enableInteractivity | boolean | true | Whether the chart throws user-based events or reacts to user interaction. If false, the chart will not throw 'select' or other interaction-based events (but will throw ready or error events), and will not display hovertext or otherwise change depending on user input. |
| focusTarget | string | 'datum' |
The type of the entity that receives focus on mouse hover. Also affects which entity is selected by mouse click, and which data table element is associated with events. Can be one of the following:
In focusTarget 'category' the tooltip displays all the category values. This may be useful for comparing values of different series. |
| fontSize | number | automatic | The default font size, in pixels, of all text in the chart. You can override this using properties for specific chart elements. |
| fontName | string | 'Arial' | The default font face for all text in the chart. You can override this using properties for specific chart elements. |
| forceIFrame | boolean | false | Draws the chart inside an inline frame. (Note that on IE8, this option is ignored; all IE8 charts are drawn in i-frames.) |
| hAxis | Object | null | An object with members to configure various horizontal axis elements. To specify properties of this object, you can use object literal notation, as shown here: {title: 'Hello', titleTextStyle: {color: '#FF0000'}} |
| hAxis.gridlines | Object | null |
An object with members to configure the gridlines on the horizontal axis. To specify properties of this object, you can use object literal notation, as shown here: {color: '#333', count: 4}
|
| hAxis.gridlines.color | string | '#CCC' | The color of the horizontal gridlines inside the chart area. Specify a valid HTML color string. |
| hAxis.gridlines.count | number | 5 | The number of horizontal gridlines inside the chart area. Minimum value is 2. Specify -1 to automatically compute the number of gridlines. |
| hAxis.gridlines.units | object | null |
Overrides the default format for various aspects of date/datetime/timeofday data types when
used with chart computed gridlines. Allows formatting for years, months, days, hours, minutes,
seconds, and milliseconds. General format is:
gridlines: {
units: {
years: {format: [/*format strings here*/]},
months: {format: [/*format strings here*/]},
days: {format: [/*format strings here*/]}
hours: {format: [/*format strings here*/]}
minutes: {format: [/*format strings here*/]}
seconds: {format: [/*format strings here*/]},
milliseconds: {format: [/*format strings here*/]},
}
}
Additional information can be found in
Dates and Times.
|
| hAxis.minorGridlines | Object | null | An object with members to configure the minor gridlines on the horizontal axis, similar to the hAxis.gridlines option. |
| hAxis.minorGridlines.color | string | A blend of the gridline and background colors | The color of the horizontal minor gridlines inside the chart area. Specify a valid HTML color string. |
| hAxis.minorGridlines.count | number | 0 | The number of horizontal minor gridlines between two regular gridlines. |
| hAxis.minorGridlines.units | object | null |
Overrides the default format for various aspects of date/datetime/timeofday data types when
used with chart computed minorGridlines. Allows formatting for years, months, days, hours,
minutes, seconds, and milliseconds. General format is:
gridlines: {
units: {
years: {format: [/*format strings here*/]},
months: {format: [/*format strings here*/]},
days: {format: [/*format strings here*/]}
hours: {format: [/*format strings here*/]}
minutes: {format: [/*format strings here*/]}
months: {format: [/*format strings here*/]},
months: {format: [/*format strings here*/]},
}
}
Additional information can be found in
Dates and Times.
|
| hAxis.textPosition | string | 'out' | Position of the horizontal axis text, relative to the chart area. Supported values: 'out', 'in', 'none'. |
| hAxis.textStyle | Object | {color: 'black', fontName: <global-font-name>, fontSize: <global-font-size>} |
An object that specifies the horizontal axis text style. The object has this format:
{ color: <string>,
fontName: <string>,
fontSize: <number>,
bold: <boolean>,
italic: <boolean> }
The |
| hAxis.title | string | null | hAxis property that specifies the title of the horizontal axis. |
| hAxis.titleTextStyle | Object | {color: 'black', fontName: <global-font-name>, fontSize: <global-font-size>} |
An object that specifies the horizontal axis title text style. The object has this format:
{ color: <string>,
fontName: <string>,
fontSize: <number>,
bold: <boolean>,
italic: <boolean> }
The |
| hAxis.allowContainerBoundaryTextCufoff | boolean | false | If false, will hide outermost labels rather than allow them to be cropped by the chart container. If true, will allow label cropping. |
| hAxis.slantedText | boolean | automatic |
If true, draw the horizontal axis text at an angle, to help fit more text along
the axis; if false, draw horizontal axis text upright. Default behavior is to
slant text if it cannot all fit when drawn upright. Notice that this option is available
only when the hAxis.textPosition is set to 'out' (which is the default).
|
| hAxis.slantedTextAngle | number, 1—90 | 30 |
The angle of the horizontal axis text, if it's drawn slanted. Ignored if hAxis.slantedText is false, or is in auto mode,
and the chart decided to draw the text horizontally.
|
| hAxis.maxAlternation | number | 2 | Maximum number of levels of horizontal axis text. If axis text labels become too crowded, the server might shift neighboring labels up or down in order to fit labels closer together. This value specifies the most number of levels to use; the server can use fewer levels, if labels can fit without overlapping. |
| hAxis.maxTextLines | number | auto | Maximum number of lines allowed for the text labels. Labels can span multiple lines if they are too long, and the nuber of lines is, by default, limited by the height of the available space. |
| hAxis.minTextSpacing | number | The value of hAxis.textStyle.fontSize |
Minimum horizontal spacing, in pixels, allowed between two adjacent text labels. If the labels are spaced too densely, or they are too long, the spacing can drop below this threshold, and in this case one of the label-unclutter measures will be applied (e.g, truncating the lables or dropping some of them). |
| hAxis.showTextEvery | number | automatic | How many horizontal axis labels to show, where 1 means show every label, 2 means show every other label, and so on. Default is to try to show as many labels as possible without overlapping. |
| hAxis.viewWindowMode | string | Equivalent to 'pretty', but haxis.viewWindow.min and haxis.viewWindow.max take precedence if used. |
Specifies how to scale the horizontal axis to render the values within the chart area. The following string values are supported:
|
| hAxis.viewWindow | Object | null | Specifies the cropping range of the horizontal axis. |
| hAxis.viewWindow.max | number | auto |
The zero-based row index where the cropping window ends. Data points at
this index and higher will be cropped out. In conjunction with
vAxis.viewWindowMode.min, it defines a half-opened range
[min, max) that denotes the element indices to display. In other words,
every index such that min <= index < max will be displayed.
Ignored when hAxis.viewWindowMode is 'pretty' or 'maximized'.
|
| hAxis.viewWindow.min | number | auto |
The zero-based row index where the cropping window begins. Data points
at indices lower than this will be cropped out. In conjunction with
vAxis.viewWindowMode.max, it defines a half-opened range
[min, max) that denotes the element indices to display. In other words,
every index such that min <= index < max will be displayed.
Ignored when hAxis.viewWindowMode is 'pretty' or 'maximized'.
|
| histogram.bucketSize | number | auto | Hardcode the size of each histogram bar, rather than letting it be determined algorithmically. |
| histogram.hideBucketItems | boolean | false | Omit the thin divisions between the blocks of the histogram, making it into a series of solid bars. |
| histogram.lastBucketPercentile | number | 0 | When calculating the histogram's bucket size, ignore the top and bottom lastBucketPercentile percent. |
| height | number | height of the containing element | Height of the chart, in pixels. |
| interpolateNulls | boolean | false | Whether to guess the value of missing points. If true, it will guess the value of any missing data based on neighboring points. If false, it will leave a break in the line at the unknown point. |
| isStacked | boolean | false | If set to true, stacks the elements in a series. Note: In Column, Area, and SteppedArea charts, Google Charts reverses the order of legend items to better correspond with the stacking of the series elements (E.g. series 0 will be the bottom-most legend item). This does not apply to Bar Charts. |
| legend | Object | null | An object with members to configure various aspects of the legend. To specify properties of this object, you can use object literal notation, as shown here:
|
| legend.alignment | string | automatic | Alignment of the legend. Can be one of the following:
Start, center, and end are relative to the style -- vertical or horizontal -- of the legend. For example, in a 'right' legend, 'start' and 'end' are at the top and bottom, respectively; for a 'top' legend, 'start' and 'end' would be at the left and right of the area, respectively. The default value depends on the legend's position. For 'bottom' legends, the default is 'center'; other legends default to 'start'. |
| legend.maxLines | number | 1 | Maximum number of lines in the legend. Set this to a number greater than one to add lines to your legend. Note: The exact logic used to determine the actual number of lines rendered is still in flux. This option currently works only when legend.position is 'top'. |
| legend.position | string | 'right' | Position of the legend. Can be one of the following:
|
| legend.textStyle | Object | {color: 'black', fontName: <global-font-name>, fontSize: <global-font-size>} |
An object that specifies the legend text style. The object has this format:
{ color: <string>,
fontName: <string>,
fontSize: <number>,
bold: <boolean>,
italic: <boolean> }
The |
| orientation | string | 'horizontal' | The orientation of the chart. When set
to 'vertical', rotates the axes of the chart so that
(for instance) a column chart becomes a bar chart, and an area chart
grows rightward instead of up: |
| reverseCategories | boolean | false | If set to true, will draw series from right to left. The default is to draw left-to-right. |
| series | Array of objects, or object with nested objects | {} | An array of objects, each describing the format of the corresponding series in the chart. To use default values for a series, specify an empty object {}. If a series or a value is not specified, the global value will be used. Each object supports the following properties:
You can specify either an array of objects, each of which applies to the series in the order given, or you can specify an object where each child has a numeric key indicating which series it applies to. For example, the following two declarations are identical, and declare the first series as black and absent from the legend, and the fourth as red and absent from the legend: series: [{color: 'black', visibleInLegend: false}, {}, {},
{color: 'red', visibleInLegend: false}]
series: {0:{color: 'black', visibleInLegend: false},
3:{color: 'red', visibleInLegend: false}}
|
| theme | string | null | A theme is a set of predefined option values that work together to achieve a specific chart behavior or visual effect. Currently only one theme is available:
|
| title | string | no title | Text to display above the chart. |
| titlePosition | string | 'out' | Where to place the chart title, compared to the chart area. Supported values:
|
| titleTextStyle | Object | {color: 'black', fontName: <global-font-name>, fontSize: <global-font-size>} |
An object that specifies the title text style. The object has this format:
{ color: <string>,
fontName: <string>,
fontSize: <number>,
bold: <boolean>,
italic: <boolean> }
The |
| tooltip | Object | null | An object with members to configure various tooltip elements. To specify properties of this object, you can use object literal notation, as shown here: {textStyle: {color: '#FF0000'}, showColorCode: true} |
| tooltip.isHtml | boolean | false |
If set to true, use HTML-rendered (rather than SVG-rendered) tooltips.
See
Customizing Tooltip Content
for more details.
Note: customization of the HTML tooltip content via the tooltip column data role is not supported by the Pie Chart and Bubble Chart visualizations. |
| tooltip.showColorCode | boolean | automatic | If true, show colored squares next to the series information in the tooltip. The default is true when focusTarget is set to 'category', otherwise the default is false. |
| tooltip.textStyle | Object | {color: 'black', fontName: <global-font-name>, fontSize: <global-font-size>} |
An object that specifies the tooltip text style. The object has this format:
{ color: <string>,
fontName: <string>,
fontSize: <number>,
bold: <boolean>,
italic: <boolean> }
The |
| tooltip.trigger | string | 'focus' |
The user interaction that causes the tooltip to be displayed:
|
| vAxes | Array of object, or object with child objects | null | Specifies properties for individual vertical axes, if the chart has
multiple vertical axes. Each child object is a To specify a chart with multiple vertical axes, first define a new axis
using
This property can be either an object or an array: the object is a
collection of objects, each with a numeric label that specifies the axis
that it defines--this is the format shown above; the array is an array of
objects, one per axis. For example, the following array-style notation is
identical to the vAxes:[
{}, // Nothing specified for axis 0
{title:'Losses',textStyle:{color: 'red'}} // Axis 1
] |
| vAxis | Object | null | An object with members to configure various vertical axis elements. To specify properties of this object, you can use object literal notation, as shown here: {title: 'Hello', titleTextStyle: {color: '#FF0000'}} |
| vAxis.baseline | number | automatic | vAxis property that specifies the baseline for the vertical axis.
If the baseline is larger than the highest grid line or smaller than the
lowest grid line, it will be rounded to the closest gridline.
|
| vAxis.baselineColor | number | 'black' | Specifies the color of the baseline for the vertical
axis. Can be any HTML color string, for example: 'red' or '#00cc00'.
|
| vAxis.direction | 1 or -1 | 1 | The direction in which the values along the vertical axis grow. Specify -1 to reverse the order of the values. |
| vAxis.format | string | auto |
A format string for numeric axis labels. This is a subset of the ICU pattern set.
For instance, {format:'#,###%'} will display values "1,000%", "750%", and "50%" for values 10, 7.5, and 0.5.
The actual formatting applied to the label is derived from the locale the API has been loaded with. For more details, see loading charts with a specific locale. |
| vAxis.gridlines | Object | null | An object with members to configure the gridlines on the vertical axis. To specify properties of this object, you can use object literal notation, as shown here: {color: '#333', count: 4}
|
| vAxis.gridlines.color | string | '#CCC' | The color of the vertical gridlines inside the chart area. Specify a valid HTML color string. |
| vAxis.gridlines.count | number | 5 | The number of vertical gridlines inside the chart area. Minimum value is 2. Specify -1 to automatically compute the number of gridlines. |
| vAxis.gridlines.units | object | null |
Overrides the default format for various aspects of date/datetime/timeofday data types when
used with chart computed gridlines. Allows formatting for years, months, days, hours, minutes,
seconds, and milliseconds. General format is:
gridlines: {
units: {
years: {format: [/*format strings here*/]},
months: {format: [/*format strings here*/]},
days: {format: [/*format strings here*/]}
hours: {format: [/*format strings here*/]}
minutes: {format: [/*format strings here*/]}
seconds: {format: [/*format strings here*/]},
milliseconds: {format: [/*format strings here*/]},
}
}
Additional information can be found in
Dates and Times.
|
| vAxis.minorGridlines | Object | null | An object with members to configure the minor gridlines on the vertical axis, similar to the vAxis.gridlines option. |
| vAxis.minorGridlines.color | string | A blend of the gridline and background colors | The color of the vertical minor gridlines inside the chart area. Specify a valid HTML color string. |
| vAxis.minorGridlines.count | number | 0 | The number of vertical minor gridlines between two regular gridlines. |
| vAxis.minorGridlines.units | object | null |
Overrides the default format for various aspects of date/datetime/timeofday data types when
used with chart computed minorGridlines. Allows formatting for years, months, days, hours,
minutes, seconds, and milliseconds. General format is:
gridlines: {
units: {
years: {format: [/*format strings here*/]},
months: {format: [/*format strings here*/]},
days: {format: [/*format strings here*/]}
hours: {format: [/*format strings here*/]}
minutes: {format: [/*format strings here*/]}
seconds: {format: [/*format strings here*/]},
milliseconds: {format: [/*format strings here*/]},
}
}
Additional information can be found in
Dates and Times.
|
| vAxis.logScale | boolean | false | If true, makes the vertical axis a logarithmic scale Note: All values must be positive. |
| vAxis.textPosition | string | 'out' | Position of the vertical axis text, relative to the chart area. Supported values: 'out', 'in', 'none'. |
| vAxis.textStyle | Object | {color: 'black', fontName: <global-font-name>, fontSize: <global-font-size>} |
An object that specifies the vertical axis text style. The object has this format:
{ color: <string>,
fontName: <string>,
fontSize: <number>,
bold: <boolean>,
italic: <boolean> }
The |
| vAxis.ticks | Array of elements | auto | Replaces the automatically generated Y-axis ticks with the specified array. Each element of the array should be either a valid tick value (such as a number, date, datetime, or timeofday), or an object. If it's an object, it should have a Examples:
|
| vAxis.title | string | no title | vAxis property that specifies a title for the vertical axis. |
| vAxis.titleTextStyle | Object | {color: 'black', fontName: <global-font-name>, fontSize: <global-font-size>} |
An object that specifies the vertical axis title text style. The object has this format:
{ color: <string>,
fontName: <string>,
fontSize: <number>,
bold: <boolean>,
italic: <boolean> }
The |
| vAxis.maxValue | number | automatic |
Moves the max value of the vertical axis to the specified value;
this will be upward in most charts. Ignored if this is set to a value
smaller than the maximum y-value of the data.
vAxis.viewWindow.max overrides this property.
|
| vAxis.minValue | number | automatic |
Moves the min value of the vertical axis to the specified value;
this will be downward in most charts. Ignored if this is set to a value
greater than the minimum y-value of the data.
vAxis.viewWindow.min overrides this property.
|
| vAxis.viewWindowMode | string | Equivalent to 'pretty', but vaxis.viewWindow.min and vaxis.viewWindow.max take precedence if used. |
Specifies how to scale the vertical axis to render the values within the chart area. The following string values are supported:
|
| vAxis.viewWindow | Object | null | Specifies the cropping range of the vertical axis. |
| vAxis.viewWindow.max | number | auto |
The maximum vertical data value to render. Ignored when vAxis.viewWindowMode is 'pretty' or 'maximized'.
|
| vAxis.viewWindow.min | number | auto |
The minimum horizontal data value to render. Ignored when vAxis.viewWindowMode is 'pretty' or 'maximized'.
|
| width | number | width of the containing element | Width of the chart, in pixels. |
Methods
| Method | Return Type | Description |
|---|---|---|
draw(data, options) |
none |
Draws the chart.
The chart accepts further method calls only after the ready
event is fired.
Extended description.
|
getAction(actionID) |
Object |
Returns the tooltip action object with the requested |
getBoundingBox(id) |
Object |
Returns an object containing the left, top, width, and height of chart element
Values are relative to the container of the chart. Call this after the chart is drawn. |
getChartAreaBoundingBox() |
Object |
Returns an object containing the left, top, width, and height of the chart content (i.e., excluding labels and legend):
Values are relative to the container of the chart. Call this after the chart is drawn. |
getChartLayoutInterface() |
Object |
Returns an object containing information about the onscreen placement of the chart and its elements. The following methods can be called on the returned object:
Call this after the chart is drawn. |
getHAxisValue(position, optional_axis_index) |
Number |
Returns the logical horizontal value at Example: Call this after the chart is drawn. |
getImageURI() |
String |
Returns the chart serialized as an image URI. Call this after the chart is drawn. See Printing PNG Charts. |
getSelection() |
Array of selection elements |
Returns an array of the selected chart entities.
Selectable entities are bars, legend entries and categories.
For this chart, only one entity can be selected at any given moment.
Extended description
.
|
getVAxisValue(position, optional_axis_index) |
Number |
Returns the logical vertical value at Example: Call this after the chart is drawn. |
getXLocation(position, optional_axis_index) |
Number |
Returns the screen x-coordinate of Example: Call this after the chart is drawn. |
getYLocation(position, optional_axis_index) |
Number |
Returns the screen y-coordinate of Example: Call this after the chart is drawn. |
removeAction(actionID) |
none |
Removes the tooltip action with the requested actionID from the chart. |
setAction(action) |
none |
Sets a tooltip action to be executed when the user clicks on the action text.
The
Any and all tooltip actions should be set prior to calling the chart's |
setSelection() |
none |
Selects the specified chart entities. Cancels any previous selection.
Selectable entities are bars, legend entries and categories.
For this chart, only one entity can be selected at a time.
Extended description
.
|
clearChart() |
none | Clears the chart, and releases all of its allocated resources. |
Events
For more information on how to use these events, see Basic Interactivity, Handling Events, and Firing Events.
| Name | Description | Properties |
|---|---|---|
animationfinish |
Fired when transition animation is complete. | None |
click |
Fired when the user clicks inside the chart. Can be used to identify when the title, data elements, legend entries, axes, gridlines, or labels are clicked. | targetID |
error |
Fired when an error occurs when attempting to render the chart. | id, message |
onmouseover |
Fired when the user mouses over a visual entity. Passes back the row and column indices of the corresponding data table element. A bar correlates to a cell in the data table, a legend entry to a column (row index is null), and a category to a row (column index is null). | row, column |
onmouseout |
Fired when the user mouses away from a visual entity. Passes back the row and column indices of the corresponding data table element. A bar correlates to a cell in the data table, a legend entry to a column (row index is null), and a category to a row (column index is null). | row, column |
ready |
The chart is ready for external method calls. If you want to interact with
the chart, and call methods after you draw it, you should set up a listener
for this event before you call the draw method, and call
them only after the event was fired. |
None |
select |
Fired when the user clicks a visual entity.
To learn what has been selected, call getSelection().
|
None |
Data Policy
All code and data are processed and rendered in the browser. No data is sent to any server.