- Added comprehensive AI Assistant system (aiassist/ directory): * Vector search and embedding capabilities * Typebot proxy integration * Elastic search functionality * Message classification and chat history * MCP proxy for external integrations - Implemented Court Status API (GetCourtStatus.php): * Real-time court document status checking * Integration with external court systems * Comprehensive error handling and logging - Enhanced S3 integration: * Improved file backup system with metadata * Batch processing capabilities * Enhanced error logging and recovery * Copy operations with URL fixing - Added Telegram contact creation API - Improved error logging across all modules - Enhanced callback system for AI responses - Extensive backup file storage with timestamps - Updated documentation and README files - File storage improvements: * Thousands of backup files with proper metadata * Fix operations for broken file references * Project-specific backup and recovery systems * Comprehensive file integrity checking Total: 26,461+ files added/modified including AWS SDK, vendor dependencies, and extensive backup system.
53 lines
2.2 KiB
Plaintext
53 lines
2.2 KiB
Plaintext
Title: jqPlot CSS Customization
|
|
|
|
Much of the styling of jqPlot is done by css. The jqPlot css file is, unremarkably,
|
|
jquery.jqplot.css and resides in the same directory as jqPlot itself.
|
|
|
|
There exist some styling related javascript properties on the plot objects themselves
|
|
(like fontStyle, fontSize, etc.). These can be set with the options object at plot creation.
|
|
Generally, setting these options is *NOT* the preferred way to customize the look of the
|
|
plot. Use the css file instead. *These options are deprecated and may disappear*. The
|
|
exceptions are certain background and color options which control attributes of something
|
|
renderered on a canvas. This would be line color, grid background, etc. These must
|
|
be set by the options object. For a list of available options, see <jqPlot Options>.
|
|
|
|
Objects in the plot that can be customized by css are given a css class like ".jqplot-*".
|
|
For example, the plot title will have a ".jqplot-title" class, the axes ".jqplot-axis", etc.
|
|
|
|
Currently assigned classes in jqPlot
|
|
are as follows:
|
|
|
|
.jqplot-target - Styles for the plot target div. These will be cascaded down
|
|
to all plot elements according to css rules.
|
|
|
|
.jqplot-axis - Styles for all axes
|
|
|
|
.jqplot-xaxis - Styles applied to the primary x axis only.
|
|
|
|
.jqplot-yaxis - Styles applied to the primary y axis only.
|
|
|
|
.jqplot-x2axis, .jqplot-x3axis, ... - Styles applied to the 2nd, 3rd, etc. x axis only.
|
|
|
|
.jqplot-y2axis, .jqplot-y3axis, ... - Styles applied to the 2nd, 3rd, etc.y axis only.
|
|
|
|
.jqplot-axis-tick - Styles applied to all axis ticks
|
|
|
|
.jqplot-xaxis-tick - Styles applied to primary x axis ticks only.
|
|
|
|
.jqplot-x2axis-tick - Styles applied to secondary x axis ticks only.
|
|
|
|
.jqplot-yaxis-tick - Styles applied to primary y axis ticks only.
|
|
|
|
.jqplot-y2axis-tick - Styles applied to secondary y axis ticks only.
|
|
|
|
table.jqplot-table-legend - Styles applied to the legend box table.
|
|
|
|
.jqplot-title - Styles applied to the title.
|
|
|
|
.jqplot-cursor-tooltip - Styles applied to the cursor tooltip
|
|
|
|
.jqplot-highlighter-tooltip - Styles applied to the highlighter tooltip.
|
|
|
|
div.jqplot-table-legend-swatch - the div element used for the colored swatch on the legend.
|
|
|
|
Note that axes will be assigned 2 classes like: class=".jqplot-axis .jqplot-xaxis". |