wwalc / chart

Chart plugin for CKEditor
Other
15 stars 10 forks source link

Plugin fails when custom colors are defined with chart type line #5

Open s1738berger opened 8 years ago

s1738berger commented 8 years ago

chart type bar works fine.

Solution: Change line 98 in widget2chart.js

from: if ( chartType != 'bar' ) {

to: if ( chartType != 'bar' && chartType != 'line' ) {

wwalc commented 7 years ago

Apologies for replying so late. @s1738berger or anyone else having this problem, could you post the code which you use to start CKEditor? I'm having troubles with reproducing the issue.