forked from vega/altair
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/main' into shorthand-namespace
- Loading branch information
Showing
84 changed files
with
3,123 additions
and
977 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
* text=auto | ||
* text=auto eol=lf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import vegaEmbed from "https://esm.sh/vega-embed@6?deps=vega@5&deps=vega-lite@5.19.0"; | ||
import vegaEmbed from "https://esm.sh/vega-embed@6?deps=vega@5&deps=vega-lite@5.20.1"; | ||
import lodashDebounce from "https://esm.sh/[email protected]/debounce"; | ||
|
||
// Note: For offline support, the import lines above are removed and the remaining script | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
"""Public types to ease integrating with `altair`.""" | ||
|
||
from __future__ import annotations | ||
|
||
__all__ = [ | ||
"ChannelAngle", | ||
"ChannelColor", | ||
"ChannelColumn", | ||
"ChannelDescription", | ||
"ChannelDetail", | ||
"ChannelFacet", | ||
"ChannelFill", | ||
"ChannelFillOpacity", | ||
"ChannelHref", | ||
"ChannelKey", | ||
"ChannelLatitude", | ||
"ChannelLatitude2", | ||
"ChannelLongitude", | ||
"ChannelLongitude2", | ||
"ChannelOpacity", | ||
"ChannelOrder", | ||
"ChannelRadius", | ||
"ChannelRadius2", | ||
"ChannelRow", | ||
"ChannelShape", | ||
"ChannelSize", | ||
"ChannelStroke", | ||
"ChannelStrokeDash", | ||
"ChannelStrokeOpacity", | ||
"ChannelStrokeWidth", | ||
"ChannelText", | ||
"ChannelTheta", | ||
"ChannelTheta2", | ||
"ChannelTooltip", | ||
"ChannelUrl", | ||
"ChannelX", | ||
"ChannelX2", | ||
"ChannelXError", | ||
"ChannelXError2", | ||
"ChannelXOffset", | ||
"ChannelY", | ||
"ChannelY2", | ||
"ChannelYError", | ||
"ChannelYError2", | ||
"ChannelYOffset", | ||
"ChartType", | ||
"EncodeKwds", | ||
"Optional", | ||
"is_chart_type", | ||
] | ||
|
||
from altair.utils.schemapi import Optional | ||
from altair.vegalite.v5.api import ChartType, is_chart_type | ||
from altair.vegalite.v5.schema.channels import ( | ||
ChannelAngle, | ||
ChannelColor, | ||
ChannelColumn, | ||
ChannelDescription, | ||
ChannelDetail, | ||
ChannelFacet, | ||
ChannelFill, | ||
ChannelFillOpacity, | ||
ChannelHref, | ||
ChannelKey, | ||
ChannelLatitude, | ||
ChannelLatitude2, | ||
ChannelLongitude, | ||
ChannelLongitude2, | ||
ChannelOpacity, | ||
ChannelOrder, | ||
ChannelRadius, | ||
ChannelRadius2, | ||
ChannelRow, | ||
ChannelShape, | ||
ChannelSize, | ||
ChannelStroke, | ||
ChannelStrokeDash, | ||
ChannelStrokeOpacity, | ||
ChannelStrokeWidth, | ||
ChannelText, | ||
ChannelTheta, | ||
ChannelTheta2, | ||
ChannelTooltip, | ||
ChannelUrl, | ||
ChannelX, | ||
ChannelX2, | ||
ChannelXError, | ||
ChannelXError2, | ||
ChannelXOffset, | ||
ChannelY, | ||
ChannelY2, | ||
ChannelYError, | ||
ChannelYError2, | ||
ChannelYOffset, | ||
EncodeKwds, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.