|
749 | 749 | "required": false,
|
750 | 750 | "description": "Sets the opacity, or transparency, of the entire object, also known as the alpha channel of colors. If the object's color is given in terms of 'rgba' color model, 'opacity' is redundant."
|
751 | 751 | },
|
| 752 | + "connectgaps": { |
| 753 | + "key_type": "plot_info", |
| 754 | + "val_types": "a boolean: True | False", |
| 755 | + "required": false, |
| 756 | + "description": "Toggle whether or not missing data points (i.e. '' or numpy.nan) linked to 'x' and/or 'y', are added in by Plotly using linear interpolation." |
| 757 | + }, |
752 | 758 | "xaxis": {
|
753 | 759 | "key_type": "plot_info",
|
754 | 760 | "val_types": "'x1' | 'x2' | 'x3' | etc.",
|
|
773 | 779 | "required": false,
|
774 | 780 | "description": "Links a dictionary-like object that initializes this trace as a writable-stream, for use with the streaming API."
|
775 | 781 | },
|
| 782 | + "text": { |
| 783 | + "key_type": "data", |
| 784 | + "val_types": "list or 1d numpy array of strings", |
| 785 | + "required": false, |
| 786 | + "description": "The value of 'text' must be a list of lists or 2d numpy array corresponding to the value associated with 'z'.", |
| 787 | + "streamable": true |
| 788 | + }, |
776 | 789 | "visible": {
|
777 | 790 | "key_type": "plot_info",
|
778 | 791 | "val_types": "a boolean: True | False",
|
|
935 | 948 | "required": false,
|
936 | 949 | "description": "Links a dictionary-like object defining the parameters of the color bar associated with this trace (including its title, length and width)."
|
937 | 950 | },
|
| 951 | + "connectgaps": { |
| 952 | + "key_type": "plot_info", |
| 953 | + "val_types": "a boolean: True | False", |
| 954 | + "required": false, |
| 955 | + "description": "Toggle whether or not missing data points (i.e. '' or numpy.nan) linked to 'x' and/or 'y', are added in by Plotly using linear interpolation." |
| 956 | + }, |
938 | 957 | "opacity": {
|
939 | 958 | "key_type": "style",
|
940 | 959 | "val_types": "number: x in [0, 1]",
|
|
1543 | 1562 | "description": "The text elements associated with each (x,y,z) pair in this 3D scatter trace. If the scatter 'mode' does not include 'text' then elements linked to 'text' will appear on hover only. In contrast, if 'text' is included in 'mode', the elements in 'text' will be rendered on the plot at the locations specified in part by their corresponding (x,y,z) coordinate pair and the 'textposition' key.",
|
1544 | 1563 | "streamable": true
|
1545 | 1564 | },
|
| 1565 | + "textfont": { |
| 1566 | + "key_type": "object", |
| 1567 | + "val_types": "dictionary-like object", |
| 1568 | + "required": false, |
| 1569 | + "description": "Links a dictionary-like object describing the font style of this scatter3d trace's text elements. Has only an effect if 'mode' is set and includes 'text'." |
| 1570 | + }, |
1546 | 1571 | "error_z": {
|
1547 | 1572 | "key_type": "object",
|
1548 | 1573 | "val_types": "dictionary-like object",
|
|
3780 | 3805 | "required": false,
|
3781 | 3806 | "description": "For bar and histogram plots only. Sets the gap between bars in the same group. That is, when multiple bar objects are plotted and share the same locations, this sets the distance between bars at each location."
|
3782 | 3807 | },
|
| 3808 | + "barnorm": { |
| 3809 | + "key_type": "plot_info", |
| 3810 | + "val_types": "'' | 'percent' | 'fraction'", |
| 3811 | + "required": false, |
| 3812 | + "description": "Sets the type of normalization for this bar trace. By default, 'barnorm' is set to '', which results in the height of each bar being displayed. If set to 'fraction', the value of each bar is divided by the sum of the values in the bar group. If set to 'percent', each bar's height is set to the fractional value * 100." |
| 3813 | + }, |
3783 | 3814 | "boxmode": {
|
3784 | 3815 | "key_type": "plot_info",
|
3785 | 3816 | "val_types": "'overlay' | 'group'",
|
|
0 commit comments