Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions crfHeatMap.js
Original file line number Diff line number Diff line change
Expand Up @@ -1045,9 +1045,13 @@
/****---------------------------------------------------------------------------------\
Row 2 - Controls
\---------------------------------------------------------------------------------****/

'#chm-controls {' + ' display: block;' + '}',
'#chm-controls .wc-controls {' + ' margin-right: 10px;' + '}',
'#chm-controls .control-group {' + ' width: 100%;' + ' margin: 0 0 5px 0;' + '}',
'#chm-controls .control-group {' +
' width: 100%;' +
' margin: 0 0 5px 0;' +
' display: block;' +
'}',
'#chm-controls .control-group > * {' + ' display: block;' + ' width: auto;' + '}',
'#chm-controls .wc-control-label {' + ' text-align: center;' + '}',
'#chm-controls .span-description {' + '}',
Expand Down
5 changes: 2 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "crf-heat-map",
"description": "Heat Map showing database form status at different levels",
"version": "2.0.0",
"version": "2.0.1",
"author": "Rho, Inc.",
"license": "MIT",
"homepage": "https://github.com/rhoinc/crf-heat-map#readme",
Expand Down
4 changes: 2 additions & 2 deletions scripts/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ The most straightforward way to customize the CRF Heat Map is by using a configu
In addition to the standard Webcharts settings several custom settings not available in the base Webcharts library have been added to the CRF Heat Map to facilitate data mapping and other custom functionality. These custom settings are described in detail below and are set in the [rendererSettings.js file](https://github.com/RhoInc/crf-heat-map/blob/master/src/configuration/rendererSettings.js). All defaults can be overwritten by the passed configuration object.

# Renderer-specific settings
The sections below describe each crf-heat-map setting as of version 2.0.0.
The sections below describe each crf-heat-map setting as of version 2.0.1.

## settings.site_col
`string`
Expand Down Expand Up @@ -287,7 +287,7 @@ Number of rows above which the user will be prompted for confirmation when expan
**default:** `10000`

# Webcharts settings
The object below contains each Webcharts setting as of version 2.0.0.
The object below contains each Webcharts setting as of version 2.0.1.

```
{ return { cols: null, headers: null, // set in rendererSettings applyCSS: true, searchable: false, sortable: false, pagination: false, exportable: true, exports: ['csv', 'xlsx'], dynamicPositioning: false };}}
Expand Down
2 changes: 1 addition & 1 deletion settings-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"title": "settings",
"description": "JSON schema for the configuration of the CRF Heat Map",
"overview": "The most straightforward way to customize the CRF Heat Map is by using a configuration object whose properties describe the behavior and appearance of the table. Since the CRF Heat Map is a Webcharts `table` object, many default Webcharts settings are set in the [webchartsSettings.js file](https://github.com/RhoInc/crf-heat-map/blob/master/src/configuration/webchartsSettings.js) as [described below](#webcharts-settings). Refer to the [Webcharts documentation](https://github.com/RhoInc/Webcharts/wiki/Chart-Configuration) for more details on these settings.\nIn addition to the standard Webcharts settings several custom settings not available in the base Webcharts library have been added to the CRF Heat Map to facilitate data mapping and other custom functionality. These custom settings are described in detail below and are set in the [rendererSettings.js file](https://github.com/RhoInc/crf-heat-map/blob/master/src/configuration/rendererSettings.js). All defaults can be overwritten by the passed configuration object.",
"version": "2.0.0",
"version": "2.0.1",
"type": "object",
"properties": {
"site_col" : {
Expand Down
5 changes: 4 additions & 1 deletion src/defineStyles.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,13 +113,16 @@ export default function defineStyles() {
/****---------------------------------------------------------------------------------\
Row 2 - Controls
\---------------------------------------------------------------------------------****/

'#chm-controls {' +
' display: block;' +
'}',
'#chm-controls .wc-controls {' +
' margin-right: 10px;' +
'}',
'#chm-controls .control-group {' +
' width: 100%;' +
' margin: 0 0 5px 0;' +
' display: block;' +
'}',
'#chm-controls .control-group > * {' +
' display: block;' +
Expand Down