Error Reference
Handling Errors
Because Highcharts for Python produces exceptions which inherit from the standard library, it leverages the same API for handling stack trace information. This means that it will be handled just like a normal exception in unit test frameworks, logging solutions, and other tools that might need that information.
Highcharts for Python Errors
HighchartsError (from ValueError
)
- exception HighchartsError[source]
Basic error that all other Highcharts for Python exceptions inherit from.
Class Inheritance
digraph inheritance7b25fd4381 { bgcolor=transparent; rankdir=TB; size="8.0, 12.0"; "errors.HighchartsError" [URL="#highcharts_core.errors.HighchartsError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip="Basic error that all other Highcharts for Python exceptions inherit from."]; }
HighchartsDependencyError (from ImportError
)
- exception HighchartsDependencyError[source]
ImportError
encountered when attempting to use a Highcharts for Python method that relies on a third-party library (e.g. pandas, PySpark, etc.) which is not available in the runtime environment.Class Inheritance
digraph inheritancecee14939ce { bgcolor=transparent; rankdir=TB; size="8.0, 12.0"; "errors.HighchartsDependencyError" [URL="#highcharts_core.errors.HighchartsDependencyError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip=":exc:`ImportError <python:ImportError>` encountered when attempting to use a"]; }
HighchartsReadOnlyError (from ValueError
and AttributeError
)
- exception HighchartsReadOnlyError[source]
AttributeError
encountered when attempting to set a Highcharts for Python property that is only available as a read-only property.Class Inheritance
digraph inheritanceb8cfbfb4ec { bgcolor=transparent; rankdir=TB; size="8.0, 12.0"; "errors.HighchartsError" [URL="#highcharts_core.errors.HighchartsError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip="Basic error that all other Highcharts for Python exceptions inherit from."]; "errors.HighchartsReadOnlyError" [URL="#highcharts_core.errors.HighchartsReadOnlyError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip=":exc:`AttributeError <python:AttributeError>` encountered when attempting to set"]; "errors.HighchartsError" -> "errors.HighchartsReadOnlyError" [arrowsize=0.5,style="setlinewidth(0.5)"]; }
HighchartsImplementationError (from ValueError
)
- exception HighchartsImplementationError[source]
Error that indicates you have implemented something incorrectly in your code.
Class Inheritance
digraph inheritance9838bab733 { bgcolor=transparent; rankdir=TB; size="8.0, 12.0"; "errors.HighchartsError" [URL="#highcharts_core.errors.HighchartsError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip="Basic error that all other Highcharts for Python exceptions inherit from."]; "errors.HighchartsImplementationError" [URL="#highcharts_core.errors.HighchartsImplementationError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip="Error that indicates you have implemented something incorrectly in your code."]; "errors.HighchartsError" -> "errors.HighchartsImplementationError" [arrowsize=0.5,style="setlinewidth(0.5)"]; }
HighchartsValueError (from ValueError
)
- exception HighchartsValueError[source]
ValueError
encountered in the operation of Highcharts for Python. Typically an implementation error.Class Inheritance
digraph inheritancea2380c9eb7 { bgcolor=transparent; rankdir=TB; size="8.0, 12.0"; "errors.HighchartsError" [URL="#highcharts_core.errors.HighchartsError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip="Basic error that all other Highcharts for Python exceptions inherit from."]; "errors.HighchartsImplementationError" [URL="#highcharts_core.errors.HighchartsImplementationError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip="Error that indicates you have implemented something incorrectly in your code."]; "errors.HighchartsError" -> "errors.HighchartsImplementationError" [arrowsize=0.5,style="setlinewidth(0.5)"]; "errors.HighchartsValueError" [URL="#highcharts_core.errors.HighchartsValueError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip=":exc:`ValueError <python:ValueError>` encountered in the operation of Highcharts"]; "errors.HighchartsImplementationError" -> "errors.HighchartsValueError" [arrowsize=0.5,style="setlinewidth(0.5)"]; }
HighchartsNotSupportedError (from ValueError
and TypeError
)
- exception HighchartsNotSupportedError[source]
TypeError
encountered when attempting functionality that is not (and is not intended to be) supported.Class Inheritance
digraph inheritanceb06ab61c2b { bgcolor=transparent; rankdir=TB; size="8.0, 12.0"; "errors.HighchartsError" [URL="#highcharts_core.errors.HighchartsError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip="Basic error that all other Highcharts for Python exceptions inherit from."]; "errors.HighchartsNotSupportedError" [URL="#highcharts_core.errors.HighchartsNotSupportedError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip=":exc:`TypeError <python:TypeError>` encountered when attempting functionality that"]; "errors.HighchartsError" -> "errors.HighchartsNotSupportedError" [arrowsize=0.5,style="setlinewidth(0.5)"]; }
HighchartsJavaScriptError (from ValueError
)
- exception HighchartsJavaScriptError[source]
ValueError
encountered when a Python representation of some JavaScript code has been badly constructed. Typically an implementation error in your source code.Class Inheritance
digraph inheritancea9866dc469 { bgcolor=transparent; rankdir=TB; size="8.0, 12.0"; "errors.HighchartsError" [URL="#highcharts_core.errors.HighchartsError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip="Basic error that all other Highcharts for Python exceptions inherit from."]; "errors.HighchartsImplementationError" [URL="#highcharts_core.errors.HighchartsImplementationError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip="Error that indicates you have implemented something incorrectly in your code."]; "errors.HighchartsError" -> "errors.HighchartsImplementationError" [arrowsize=0.5,style="setlinewidth(0.5)"]; "errors.HighchartsJavaScriptError" [URL="#highcharts_core.errors.HighchartsJavaScriptError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip=":exc:`ValueError <python:ValueError>` encountered when a Python representation of"]; "errors.HighchartsValueError" -> "errors.HighchartsJavaScriptError" [arrowsize=0.5,style="setlinewidth(0.5)"]; "errors.HighchartsValueError" [URL="#highcharts_core.errors.HighchartsValueError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip=":exc:`ValueError <python:ValueError>` encountered in the operation of Highcharts"]; "errors.HighchartsImplementationError" -> "errors.HighchartsValueError" [arrowsize=0.5,style="setlinewidth(0.5)"]; }
HighchartsParseError (from ValueError
)
- exception HighchartsParseError[source]
ValueError
encountered when Highcharts for Python is unable to parse a JavaScript object literal correctly.Class Inheritance
digraph inheritancea9743b6626 { bgcolor=transparent; rankdir=TB; size="8.0, 12.0"; "errors.HighchartsError" [URL="#highcharts_core.errors.HighchartsError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip="Basic error that all other Highcharts for Python exceptions inherit from."]; "errors.HighchartsParseError" [URL="#highcharts_core.errors.HighchartsParseError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip=":exc:`ValueError <python:ValueError>` encountered when Highcharts for Python is"]; "errors.HighchartsError" -> "errors.HighchartsParseError" [arrowsize=0.5,style="setlinewidth(0.5)"]; }
HighchartsCSVDeserializationError (from ValueError
)
- exception HighchartsCSVDeserializationError[source]
ValueError
encountered when Highcharts for Python is unable to properly deserialize CSV data.Class Inheritance
digraph inheritance6ae69e5010 { bgcolor=transparent; rankdir=TB; size="8.0, 12.0"; "errors.HighchartsCSVDeserializationError" [URL="#highcharts_core.errors.HighchartsCSVDeserializationError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip=":exc:`ValueError <python:ValueError>` encountered when Highcharts for Python is"]; "errors.HighchartsError" -> "errors.HighchartsCSVDeserializationError" [arrowsize=0.5,style="setlinewidth(0.5)"]; "errors.HighchartsError" [URL="#highcharts_core.errors.HighchartsError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip="Basic error that all other Highcharts for Python exceptions inherit from."]; }
HighchartsPandasDeserializationError (from ValueError
)
- exception HighchartsPandasDeserializationError[source]
ValueError
encountered when Highcharts for Python is unable to properly deserialize Pandas data.Class Inheritance
digraph inheritance8b35e4bb97 { bgcolor=transparent; rankdir=TB; size="8.0, 12.0"; "errors.HighchartsError" [URL="#highcharts_core.errors.HighchartsError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip="Basic error that all other Highcharts for Python exceptions inherit from."]; "errors.HighchartsPandasDeserializationError" [URL="#highcharts_core.errors.HighchartsPandasDeserializationError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip=":exc:`ValueError <python:ValueError>` encountered when Highcharts for Python is"]; "errors.HighchartsError" -> "errors.HighchartsPandasDeserializationError" [arrowsize=0.5,style="setlinewidth(0.5)"]; }
HighchartsPySparkDeserializationError (from ValueError
)
- exception HighchartsPySparkDeserializationError[source]
ValueError
encountered when Highcharts for Python is unable to properly deserialize PySpark data.Class Inheritance
digraph inheritanceb0eae55902 { bgcolor=transparent; rankdir=TB; size="8.0, 12.0"; "errors.HighchartsError" [URL="#highcharts_core.errors.HighchartsError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip="Basic error that all other Highcharts for Python exceptions inherit from."]; "errors.HighchartsPySparkDeserializationError" [URL="#highcharts_core.errors.HighchartsPySparkDeserializationError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip=":exc:`ValueError <python:ValueError>` encountered when Highcharts for Python is"]; "errors.HighchartsError" -> "errors.HighchartsPySparkDeserializationError" [arrowsize=0.5,style="setlinewidth(0.5)"]; }
HighchartsMissingKeyError (from ValueError
)
- exception HighchartsMissingKeyError[source]
ValueError
encountered when Highcharts for Python encounters a missing key when parsing a JavaScript object literal.Class Inheritance
digraph inheritance69e8220942 { bgcolor=transparent; rankdir=TB; size="8.0, 12.0"; "errors.HighchartsError" [URL="#highcharts_core.errors.HighchartsError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip="Basic error that all other Highcharts for Python exceptions inherit from."]; "errors.HighchartsMissingKeyError" [URL="#highcharts_core.errors.HighchartsMissingKeyError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip=":exc:`ValueError <python:ValueError>` encountered when Highcharts for Python"]; "errors.HighchartsParseError" -> "errors.HighchartsMissingKeyError" [arrowsize=0.5,style="setlinewidth(0.5)"]; "errors.HighchartsParseError" [URL="#highcharts_core.errors.HighchartsParseError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip=":exc:`ValueError <python:ValueError>` encountered when Highcharts for Python is"]; "errors.HighchartsError" -> "errors.HighchartsParseError" [arrowsize=0.5,style="setlinewidth(0.5)"]; }
HighchartsCollectionError (from ValueError
)
- exception HighchartsCollectionError[source]
ValueError
encountered when Highcharts for Python encounters a collection with more members than expected when parsing a JavaScript object literal.Class Inheritance
digraph inheritance073245014f { bgcolor=transparent; rankdir=TB; size="8.0, 12.0"; "errors.HighchartsCollectionError" [URL="#highcharts_core.errors.HighchartsCollectionError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip=":exc:`ValueError <python:ValueError>` encountered when Highcharts for Python"]; "errors.HighchartsParseError" -> "errors.HighchartsCollectionError" [arrowsize=0.5,style="setlinewidth(0.5)"]; "errors.HighchartsError" [URL="#highcharts_core.errors.HighchartsError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip="Basic error that all other Highcharts for Python exceptions inherit from."]; "errors.HighchartsParseError" [URL="#highcharts_core.errors.HighchartsParseError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip=":exc:`ValueError <python:ValueError>` encountered when Highcharts for Python is"]; "errors.HighchartsError" -> "errors.HighchartsParseError" [arrowsize=0.5,style="setlinewidth(0.5)"]; }
HighchartsVariableDeclarationError (from ValueError
)
- exception HighchartsVariableDeclarationError[source]
ValueError
encountered when Highcharts for Python tries to parse JavaScript code which is not represented as a proper variable declaration, and is unable to coerce the JavaScript code into a properly-formed variable declaration.Class Inheritance
digraph inheritance30f0ee7161 { bgcolor=transparent; rankdir=TB; size="8.0, 12.0"; "errors.HighchartsError" [URL="#highcharts_core.errors.HighchartsError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip="Basic error that all other Highcharts for Python exceptions inherit from."]; "errors.HighchartsParseError" [URL="#highcharts_core.errors.HighchartsParseError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip=":exc:`ValueError <python:ValueError>` encountered when Highcharts for Python is"]; "errors.HighchartsError" -> "errors.HighchartsParseError" [arrowsize=0.5,style="setlinewidth(0.5)"]; "errors.HighchartsVariableDeclarationError" [URL="#highcharts_core.errors.HighchartsVariableDeclarationError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip=":exc:`ValueError <python:ValueError>` encountered when Highcharts for Python"]; "errors.HighchartsParseError" -> "errors.HighchartsVariableDeclarationError" [arrowsize=0.5,style="setlinewidth(0.5)"]; }
HighchartsMissingClassNameError (from ValueError
)
- exception HighchartsMissingClassNameError[source]
ValueError
encountered when trying to serialize a JavaScriptClass instance to JavaScript, but the instance has no class_name provided.Class Inheritance
digraph inheritancea0b8c7b580 { bgcolor=transparent; rankdir=TB; size="8.0, 12.0"; "errors.HighchartsError" [URL="#highcharts_core.errors.HighchartsError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip="Basic error that all other Highcharts for Python exceptions inherit from."]; "errors.HighchartsImplementationError" [URL="#highcharts_core.errors.HighchartsImplementationError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip="Error that indicates you have implemented something incorrectly in your code."]; "errors.HighchartsError" -> "errors.HighchartsImplementationError" [arrowsize=0.5,style="setlinewidth(0.5)"]; "errors.HighchartsJavaScriptError" [URL="#highcharts_core.errors.HighchartsJavaScriptError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip=":exc:`ValueError <python:ValueError>` encountered when a Python representation of"]; "errors.HighchartsValueError" -> "errors.HighchartsJavaScriptError" [arrowsize=0.5,style="setlinewidth(0.5)"]; "errors.HighchartsMissingClassNameError" [URL="#highcharts_core.errors.HighchartsMissingClassNameError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip=":exc:`ValueError <python:ValueError>` encountered when trying to serialize a"]; "errors.HighchartsJavaScriptError" -> "errors.HighchartsMissingClassNameError" [arrowsize=0.5,style="setlinewidth(0.5)"]; "errors.HighchartsValueError" [URL="#highcharts_core.errors.HighchartsValueError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip=":exc:`ValueError <python:ValueError>` encountered in the operation of Highcharts"]; "errors.HighchartsImplementationError" -> "errors.HighchartsValueError" [arrowsize=0.5,style="setlinewidth(0.5)"]; }
HighchartsExportServerError (from ValueError
)
- exception HighchartsExportServerError[source]
ValueError
encountered when trying to use the Node Export Server.Class Inheritance
digraph inheritance35c87b4be2 { bgcolor=transparent; rankdir=TB; size="8.0, 12.0"; "errors.HighchartsError" [URL="#highcharts_core.errors.HighchartsError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip="Basic error that all other Highcharts for Python exceptions inherit from."]; "errors.HighchartsExportServerError" [URL="#highcharts_core.errors.HighchartsExportServerError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip=":exc:`ValueError <python:ValueError>` encountered when trying to use the Node"]; "errors.HighchartsValueError" -> "errors.HighchartsExportServerError" [arrowsize=0.5,style="setlinewidth(0.5)"]; "errors.HighchartsImplementationError" [URL="#highcharts_core.errors.HighchartsImplementationError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip="Error that indicates you have implemented something incorrectly in your code."]; "errors.HighchartsError" -> "errors.HighchartsImplementationError" [arrowsize=0.5,style="setlinewidth(0.5)"]; "errors.HighchartsValueError" [URL="#highcharts_core.errors.HighchartsValueError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip=":exc:`ValueError <python:ValueError>` encountered in the operation of Highcharts"]; "errors.HighchartsImplementationError" -> "errors.HighchartsValueError" [arrowsize=0.5,style="setlinewidth(0.5)"]; }
HighchartsUnsupportedProtocolError (from ValueError
)
- exception HighchartsUnsupportedProtocolError[source]
ValueError
encountered when trying to use an unsupported protocol to communicate with the Export Server.Class Inheritance
digraph inheritanceaf54bce67f { bgcolor=transparent; rankdir=TB; size="8.0, 12.0"; "errors.HighchartsError" [URL="#highcharts_core.errors.HighchartsError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip="Basic error that all other Highcharts for Python exceptions inherit from."]; "errors.HighchartsExportServerError" [URL="#highcharts_core.errors.HighchartsExportServerError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip=":exc:`ValueError <python:ValueError>` encountered when trying to use the Node"]; "errors.HighchartsValueError" -> "errors.HighchartsExportServerError" [arrowsize=0.5,style="setlinewidth(0.5)"]; "errors.HighchartsImplementationError" [URL="#highcharts_core.errors.HighchartsImplementationError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip="Error that indicates you have implemented something incorrectly in your code."]; "errors.HighchartsError" -> "errors.HighchartsImplementationError" [arrowsize=0.5,style="setlinewidth(0.5)"]; "errors.HighchartsUnsupportedProtocolError" [URL="#highcharts_core.errors.HighchartsUnsupportedProtocolError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip=":exc:`ValueError <pythoN:ValueError>` encountered when trying to use an unsupported"]; "errors.HighchartsExportServerError" -> "errors.HighchartsUnsupportedProtocolError" [arrowsize=0.5,style="setlinewidth(0.5)"]; "errors.HighchartsValueError" [URL="#highcharts_core.errors.HighchartsValueError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip=":exc:`ValueError <python:ValueError>` encountered in the operation of Highcharts"]; "errors.HighchartsImplementationError" -> "errors.HighchartsValueError" [arrowsize=0.5,style="setlinewidth(0.5)"]; }
HighchartsUnsupportedExportTypeError (from ValueError
)
- exception HighchartsUnsupportedExportTypeError[source]
ValueError
encountered when requesting an unsupported image type from a Export Server.Class Inheritance
digraph inheritance16f3121ca6 { bgcolor=transparent; rankdir=TB; size="8.0, 12.0"; "errors.HighchartsError" [URL="#highcharts_core.errors.HighchartsError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip="Basic error that all other Highcharts for Python exceptions inherit from."]; "errors.HighchartsExportServerError" [URL="#highcharts_core.errors.HighchartsExportServerError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip=":exc:`ValueError <python:ValueError>` encountered when trying to use the Node"]; "errors.HighchartsValueError" -> "errors.HighchartsExportServerError" [arrowsize=0.5,style="setlinewidth(0.5)"]; "errors.HighchartsImplementationError" [URL="#highcharts_core.errors.HighchartsImplementationError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip="Error that indicates you have implemented something incorrectly in your code."]; "errors.HighchartsError" -> "errors.HighchartsImplementationError" [arrowsize=0.5,style="setlinewidth(0.5)"]; "errors.HighchartsUnsupportedExportTypeError" [URL="#highcharts_core.errors.HighchartsUnsupportedExportTypeError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip=":exc:`ValueError <python:ValueError>` encountered when requesting an unsupported"]; "errors.HighchartsExportServerError" -> "errors.HighchartsUnsupportedExportTypeError" [arrowsize=0.5,style="setlinewidth(0.5)"]; "errors.HighchartsValueError" [URL="#highcharts_core.errors.HighchartsValueError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip=":exc:`ValueError <python:ValueError>` encountered in the operation of Highcharts"]; "errors.HighchartsImplementationError" -> "errors.HighchartsValueError" [arrowsize=0.5,style="setlinewidth(0.5)"]; }
HighchartsUnsupportedConstructorError (from ValueError
)
- exception HighchartsUnsupportedConstructorError[source]
ValueError
encountered when supplying an unsupported constructor to an Export Server instance.Class Inheritance
digraph inheritanceeaa7fd3fbd { bgcolor=transparent; rankdir=TB; size="8.0, 12.0"; "errors.HighchartsError" [URL="#highcharts_core.errors.HighchartsError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip="Basic error that all other Highcharts for Python exceptions inherit from."]; "errors.HighchartsExportServerError" [URL="#highcharts_core.errors.HighchartsExportServerError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip=":exc:`ValueError <python:ValueError>` encountered when trying to use the Node"]; "errors.HighchartsValueError" -> "errors.HighchartsExportServerError" [arrowsize=0.5,style="setlinewidth(0.5)"]; "errors.HighchartsImplementationError" [URL="#highcharts_core.errors.HighchartsImplementationError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip="Error that indicates you have implemented something incorrectly in your code."]; "errors.HighchartsError" -> "errors.HighchartsImplementationError" [arrowsize=0.5,style="setlinewidth(0.5)"]; "errors.HighchartsUnsupportedConstructorError" [URL="#highcharts_core.errors.HighchartsUnsupportedConstructorError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip=":exc:`ValueError <python:ValueError>` encountered when supplying an unsupported"]; "errors.HighchartsExportServerError" -> "errors.HighchartsUnsupportedConstructorError" [arrowsize=0.5,style="setlinewidth(0.5)"]; "errors.HighchartsValueError" [URL="#highcharts_core.errors.HighchartsValueError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip=":exc:`ValueError <python:ValueError>` encountered in the operation of Highcharts"]; "errors.HighchartsImplementationError" -> "errors.HighchartsValueError" [arrowsize=0.5,style="setlinewidth(0.5)"]; }
HighchartsMissingExportSettingsError (from ValueError
)
- exception HighchartsMissingExportSettingsError[source]
ValueError
encountered when attempting to programmatically export a chart image, but key settings were not supplied to theExportServer
instance.Class Inheritance
digraph inheritance6bc9f73d71 { bgcolor=transparent; rankdir=TB; size="8.0, 12.0"; "errors.HighchartsError" [URL="#highcharts_core.errors.HighchartsError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip="Basic error that all other Highcharts for Python exceptions inherit from."]; "errors.HighchartsExportServerError" [URL="#highcharts_core.errors.HighchartsExportServerError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip=":exc:`ValueError <python:ValueError>` encountered when trying to use the Node"]; "errors.HighchartsValueError" -> "errors.HighchartsExportServerError" [arrowsize=0.5,style="setlinewidth(0.5)"]; "errors.HighchartsImplementationError" [URL="#highcharts_core.errors.HighchartsImplementationError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip="Error that indicates you have implemented something incorrectly in your code."]; "errors.HighchartsError" -> "errors.HighchartsImplementationError" [arrowsize=0.5,style="setlinewidth(0.5)"]; "errors.HighchartsMissingExportSettingsError" [URL="#highcharts_core.errors.HighchartsMissingExportSettingsError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip=":exc:`ValueError <python:ValueError>` encountered when attempting to"]; "errors.HighchartsExportServerError" -> "errors.HighchartsMissingExportSettingsError" [arrowsize=0.5,style="setlinewidth(0.5)"]; "errors.HighchartsValueError" [URL="#highcharts_core.errors.HighchartsValueError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip=":exc:`ValueError <python:ValueError>` encountered in the operation of Highcharts"]; "errors.HighchartsImplementationError" -> "errors.HighchartsValueError" [arrowsize=0.5,style="setlinewidth(0.5)"]; }