-
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.
# Update Readme.md # New ContentElement # add unique cssID for multiuse of Charts # add Defaults for jsonInputOptions based on chart.js
- Loading branch information
Showing
13 changed files
with
221 additions
and
99 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,5 +1,26 @@ | ||
![Alt text](docs/logo.jpg?raw=true "logo") | ||
|
||
# Contao ChartJS Diagramm | ||
|
||
# Welcome to Contao ChartJS Diagramms | ||
This bundle is still under construction. | ||
The perfect solution to integrate Chart.js diagrams in Contao. With this solution a chart is already on your website in a few steps. Open source and free of charge! | ||
|
||
## Examples | ||
|
||
!["ChartJS examples in Contao"](docs/chart_beispiele.jpg?raw=true) | ||
*** | ||
|
||
Chart diagrams that can be currently displayed: | ||
|
||
!["ChartJS Chart examples in Contao Backend"](docs/diagramm_typen.jpg?raw=true) | ||
*** | ||
|
||
## Installation | ||
|
||
```bash | ||
composer require newhorizondesign/contao-chartjs-diagramms | ||
``` | ||
|
||
## System requirements | ||
|
||
- PHP: `^8.0` | ||
- Contao: `^4.13 || ^5.0` |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
use Newhorizondesign\ContaoChartjsDiagramms\Controller\ContentElement\ModDiagramElementController; | ||
|
||
/* | ||
* This file is part of Contao ChartJS Diagramms. | ||
* | ||
* (c) NewHorizonDesign 2022 <service@newhorizon-design.de> | ||
* @license GPL-3.0-or-later | ||
* For the full copyright and license information, | ||
* please view the LICENSE file that was distributed with this source code. | ||
* @link https://github.com/newhorizondesign/contao-chartjs-diagramms | ||
*/ | ||
|
||
$GLOBALS['TL_LANG']['CTE']['diagram_element'] = "ChartJS"; | ||
$GLOBALS['TL_LANG']['CTE'][ModDiagramElementController::TYPE] = ['ChartJS Diagramme', 'Fügt ein beliebiges ChartJS Diagramm ein.']; |
Oops, something went wrong.