fluentd-ui 0.4.5 → 1.0.0.alpha.1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of fluentd-ui might be problematic. Click here for more details.
- checksums.yaml +5 -5
- data/.babelrc +18 -0
- data/.editorconfig +11 -0
- data/.gitignore +7 -0
- data/.postcssrc.yml +3 -0
- data/.travis.yml +20 -4
- data/ChangeLog.md +7 -2
- data/Gemfile +8 -6
- data/Gemfile.lock +177 -178
- data/README.md +15 -10
- data/app/assets/stylesheets/application.css +6 -5
- data/app/controllers/concerns/setting_history_concern.rb +1 -1
- data/app/controllers/fluentd/agents_controller.rb +5 -0
- data/app/controllers/misc_controller.rb +2 -2
- data/app/controllers/plugins_controller.rb +4 -4
- data/app/helpers/application_helper.rb +8 -2
- data/app/helpers/settings_helper.rb +2 -2
- data/app/javascript/packs/application.js +31 -0
- data/app/{assets/javascripts/codemirror_fluentd.js → javascript/packs/codemirror.js} +32 -1
- data/app/javascript/packs/fluent_log.js +63 -0
- data/app/javascript/packs/in_tail_format.js +174 -0
- data/app/javascript/packs/nested_settings.js +40 -0
- data/app/javascript/packs/notification.js +60 -0
- data/app/javascript/packs/settings.js +122 -0
- data/app/javascript/packs/treeview.js +99 -0
- data/{vendor/assets/javascripts/.keep → app/javascript/stylesheets/application.scss} +0 -0
- data/app/jobs/all_plugin_check_update_job.rb +10 -0
- data/app/jobs/application_job.rb +2 -0
- data/app/{workers/fluentd_ui_restart.rb → jobs/fluentd_ui_restart_job.rb} +4 -4
- data/app/jobs/fluentd_ui_update_check_job.rb +11 -0
- data/app/{workers/gem_installer.rb → jobs/gem_installer_job.rb} +4 -5
- data/app/jobs/gem_uninstaller_job.rb +14 -0
- data/app/jobs/gem_update_check_job.rb +9 -0
- data/app/models/fluentd/agent.rb +9 -5
- data/app/models/fluentd/agent/common.rb +10 -6
- data/app/models/fluentd/agent/fluentd_gem.rb +2 -3
- data/app/models/fluentd/agent/td_agent/unix.rb +7 -5
- data/app/models/fluentd/setting/in_tail.rb +2 -2
- data/app/views/fluentd/_form.html.haml +1 -1
- data/app/views/fluentd/errors.html.haml +5 -6
- data/app/views/fluentd/log.html.haml +4 -5
- data/app/views/fluentd/settings/edit.html.haml +2 -1
- data/app/views/fluentd/settings/histories/_list.html.haml +1 -1
- data/app/views/fluentd/settings/histories/show.html.haml +6 -6
- data/app/views/fluentd/settings/in_tail/after_file_choose.html.haml +4 -3
- data/app/views/fluentd/settings/in_tail/after_format.html.haml +2 -2
- data/app/views/fluentd/settings/in_tail/confirm.html.haml +3 -3
- data/app/views/fluentd/settings/running_backup/show.html.haml +5 -5
- data/app/views/fluentd/settings/show.html.haml +7 -7
- data/app/views/fluentd/settings/source_and_output.html.haml +31 -18
- data/app/views/fluentd/show.html.haml +16 -15
- data/app/views/layouts/application.html.erb +31 -46
- data/app/views/layouts/sign_in.html.erb +9 -16
- data/app/views/misc/information.html.haml +13 -13
- data/app/views/misc/update_fluentd_ui.html.haml +3 -3
- data/app/views/plugins/installed.html.haml +8 -8
- data/app/views/plugins/recommended.html.haml +5 -5
- data/app/views/plugins/updated.html.haml +5 -5
- data/app/views/sessions/new.html.haml +5 -6
- data/app/views/shared/_global_nav.html.erb +9 -9
- data/app/views/shared/_initial_setup.html.haml +3 -3
- data/app/views/shared/_modal.html.erb +1 -1
- data/app/views/shared/settings/_form.html.haml +9 -8
- data/app/views/shared/settings/show.html.haml +4 -2
- data/app/views/shared/vue/_fluent_log.html.erb +6 -6
- data/app/views/shared/vue/_in_tail_format.html.erb +31 -29
- data/app/views/shared/vue/_notification.html.erb +5 -9
- data/app/views/shared/vue/_setting.html.erb +12 -10
- data/app/views/shared/vue/_treeview.html.erb +13 -10
- data/app/views/tutorials/chapter1.html.erb +3 -4
- data/app/views/tutorials/chapter2.html.haml +2 -2
- data/app/views/tutorials/chapter3.html.haml +2 -2
- data/app/views/tutorials/chapter4.html.haml +2 -2
- data/app/views/users/show.html.haml +1 -1
- data/bin/bundle +1 -1
- data/bin/fluentd-ui +1 -0
- data/bin/rails +1 -1
- data/bin/setup +16 -17
- data/bin/update +28 -0
- data/bin/webpack +15 -0
- data/bin/webpack-dev-server +15 -0
- data/bin/yarn +11 -0
- data/config/application.rb +18 -5
- data/config/boot.rb +2 -1
- data/config/environment.rb +1 -1
- data/config/environments/development.rb +27 -5
- data/config/environments/production.rb +34 -23
- data/config/environments/test.rb +7 -3
- data/config/initializers/application_controller_renderer.rb +8 -0
- data/config/initializers/assets.rb +14 -0
- data/config/initializers/content_security_policy.rb +25 -0
- data/config/initializers/cookies_serializer.rb +2 -0
- data/config/initializers/fluentd_ui_update_check.rb +2 -1
- data/config/initializers/new_framework_defaults_5_2.rb +35 -0
- data/config/initializers/prefetch_gem_updates.rb +4 -1
- data/config/initializers/wrap_parameters.rb +1 -6
- data/config/locales/ja.yml +61 -57
- data/config/routes.rb +1 -0
- data/config/spring.rb +6 -0
- data/config/webpack/development.js +5 -0
- data/config/webpack/environment.js +20 -0
- data/config/webpack/loaders/vue.js +13 -0
- data/config/webpack/production.js +5 -0
- data/config/webpack/test.js +5 -0
- data/config/webpacker.yml +69 -0
- data/fluentd-ui.gemspec +16 -6
- data/lib/fluentd-ui/version.rb +1 -1
- data/lib/regexp_preview/single_line.rb +5 -5
- data/package.json +19 -0
- data/spec/controllers/application_controller_spec.rb +2 -6
- data/spec/controllers/fluentd/agents_controller_spec.rb +12 -0
- data/spec/controllers/polling_controller_spec.rb +1 -1
- data/spec/factories/fluentd.rb +1 -1
- data/spec/factories/plugins.rb +2 -2
- data/spec/factories/user.rb +1 -1
- data/spec/features/fluentd/setting/histories_spec.rb +7 -6
- data/spec/features/fluentd/setting/running_backup_spec.rb +4 -3
- data/spec/features/setting_spec.rb +1 -0
- data/spec/features/source_and_output_spec.rb +16 -16
- data/spec/lib/regexp_preview/single_line_spec.rb +1 -1
- data/spec/models/fluentd_spec.rb +4 -4
- data/spec/spec_helper.rb +16 -4
- data/yarn.lock +6225 -0
- metadata +120 -154
- data/.bowerrc +0 -3
- data/app/assets/javascripts/application.js +0 -24
- data/app/assets/javascripts/codemirror.js +0 -29
- data/app/assets/javascripts/enable_bootstrap_tooltip.js +0 -3
- data/app/assets/javascripts/nested_setting.js +0 -41
- data/app/assets/javascripts/vue/fluent_log.js +0 -64
- data/app/assets/javascripts/vue/in_tail_format.js +0 -177
- data/app/assets/javascripts/vue/notification.js +0 -65
- data/app/assets/javascripts/vue/settings.js +0 -121
- data/app/assets/javascripts/vue/treeview.js +0 -97
- data/app/assets/javascripts/vue_common.js +0 -4
- data/app/workers/all_plugin_check_update.rb +0 -14
- data/app/workers/fluentd_ui_update_check.rb +0 -15
- data/app/workers/gem_uninstaller.rb +0 -15
- data/app/workers/gem_update_check.rb +0 -10
- data/bower.json +0 -11
- data/vendor/assets/javascripts/bower/.gitignore +0 -10
- data/vendor/assets/javascripts/bower/codemirror/.bower.json +0 -29
- data/vendor/assets/javascripts/bower/codemirror/bower.json +0 -16
- data/vendor/assets/javascripts/bower/codemirror/lib/codemirror.css +0 -309
- data/vendor/assets/javascripts/bower/codemirror/lib/codemirror.js +0 -8029
- data/vendor/assets/javascripts/bower/codemirror/theme/3024-day.css +0 -38
- data/vendor/assets/javascripts/bower/codemirror/theme/3024-night.css +0 -37
- data/vendor/assets/javascripts/bower/codemirror/theme/ambiance-mobile.css +0 -5
- data/vendor/assets/javascripts/bower/codemirror/theme/ambiance.css +0 -77
- data/vendor/assets/javascripts/bower/codemirror/theme/base16-dark.css +0 -36
- data/vendor/assets/javascripts/bower/codemirror/theme/base16-light.css +0 -36
- data/vendor/assets/javascripts/bower/codemirror/theme/blackboard.css +0 -30
- data/vendor/assets/javascripts/bower/codemirror/theme/cobalt.css +0 -23
- data/vendor/assets/javascripts/bower/codemirror/theme/eclipse.css +0 -23
- data/vendor/assets/javascripts/bower/codemirror/theme/elegant.css +0 -13
- data/vendor/assets/javascripts/bower/codemirror/theme/erlang-dark.css +0 -32
- data/vendor/assets/javascripts/bower/codemirror/theme/lesser-dark.css +0 -45
- data/vendor/assets/javascripts/bower/codemirror/theme/mbo.css +0 -35
- data/vendor/assets/javascripts/bower/codemirror/theme/mdn-like.css +0 -44
- data/vendor/assets/javascripts/bower/codemirror/theme/midnight.css +0 -45
- data/vendor/assets/javascripts/bower/codemirror/theme/monokai.css +0 -31
- data/vendor/assets/javascripts/bower/codemirror/theme/neat.css +0 -12
- data/vendor/assets/javascripts/bower/codemirror/theme/neo.css +0 -43
- data/vendor/assets/javascripts/bower/codemirror/theme/night.css +0 -26
- data/vendor/assets/javascripts/bower/codemirror/theme/paraiso-dark.css +0 -36
- data/vendor/assets/javascripts/bower/codemirror/theme/paraiso-light.css +0 -36
- data/vendor/assets/javascripts/bower/codemirror/theme/pastel-on-dark.css +0 -50
- data/vendor/assets/javascripts/bower/codemirror/theme/rubyblue.css +0 -23
- data/vendor/assets/javascripts/bower/codemirror/theme/solarized.css +0 -165
- data/vendor/assets/javascripts/bower/codemirror/theme/the-matrix.css +0 -28
- data/vendor/assets/javascripts/bower/codemirror/theme/tomorrow-night-bright.css +0 -35
- data/vendor/assets/javascripts/bower/codemirror/theme/tomorrow-night-eighties.css +0 -36
- data/vendor/assets/javascripts/bower/codemirror/theme/twilight.css +0 -30
- data/vendor/assets/javascripts/bower/codemirror/theme/vibrant-ink.css +0 -32
- data/vendor/assets/javascripts/bower/codemirror/theme/xq-dark.css +0 -51
- data/vendor/assets/javascripts/bower/codemirror/theme/xq-light.css +0 -43
- data/vendor/assets/javascripts/bower/codemirror/theme/zenburn.css +0 -37
- data/vendor/assets/javascripts/bower/es6-promise/.bower.json +0 -15
- data/vendor/assets/javascripts/bower/es6-promise/bower.json +0 -5
- data/vendor/assets/javascripts/bower/es6-promise/promise.js +0 -684
- data/vendor/assets/javascripts/bower/es6-promise/promise.min.js +0 -1
- data/vendor/assets/javascripts/bower/lodash/.bower.json +0 -33
- data/vendor/assets/javascripts/bower/lodash/LICENSE.txt +0 -22
- data/vendor/assets/javascripts/bower/lodash/bower.json +0 -23
- data/vendor/assets/javascripts/bower/lodash/dist/lodash.compat.js +0 -7157
- data/vendor/assets/javascripts/bower/lodash/dist/lodash.compat.min.js +0 -61
- data/vendor/assets/javascripts/bower/lodash/dist/lodash.js +0 -6785
- data/vendor/assets/javascripts/bower/lodash/dist/lodash.min.js +0 -56
- data/vendor/assets/javascripts/bower/lodash/dist/lodash.underscore.js +0 -4979
- data/vendor/assets/javascripts/bower/lodash/dist/lodash.underscore.min.js +0 -39
- data/vendor/assets/javascripts/bower/vue/.bower.json +0 -29
- data/vendor/assets/javascripts/bower/vue/bower.json +0 -17
- data/vendor/assets/javascripts/bower/vue/dist/vue.js +0 -7977
- data/vendor/assets/javascripts/bower/vue/dist/vue.min.js +0 -7
- data/vendor/assets/javascripts/sb-admin-v2/bootstrap.js +0 -1951
- data/vendor/assets/javascripts/sb-admin-v2/bootstrap.min.js +0 -6
- data/vendor/assets/javascripts/sb-admin-v2/demo/dashboard-demo.js +0 -117
- data/vendor/assets/javascripts/sb-admin-v2/demo/flot-demo.js +0 -1242
- data/vendor/assets/javascripts/sb-admin-v2/demo/morris-demo.js +0 -155
- data/vendor/assets/javascripts/sb-admin-v2/jquery-1.10.2.js +0 -6
- data/vendor/assets/javascripts/sb-admin-v2/plugins/dataTables/dataTables.bootstrap.js +0 -245
- data/vendor/assets/javascripts/sb-admin-v2/plugins/dataTables/jquery.dataTables.js +0 -14013
- data/vendor/assets/javascripts/sb-admin-v2/plugins/flot/excanvas.min.js +0 -1
- data/vendor/assets/javascripts/sb-admin-v2/plugins/flot/jquery.flot.js +0 -2599
- data/vendor/assets/javascripts/sb-admin-v2/plugins/flot/jquery.flot.pie.js +0 -750
- data/vendor/assets/javascripts/sb-admin-v2/plugins/flot/jquery.flot.resize.js +0 -60
- data/vendor/assets/javascripts/sb-admin-v2/plugins/flot/jquery.flot.tooltip.min.js +0 -12
- data/vendor/assets/javascripts/sb-admin-v2/plugins/metisMenu/jquery.metisMenu.js +0 -45
- data/vendor/assets/javascripts/sb-admin-v2/plugins/morris/morris.js +0 -1888
- data/vendor/assets/javascripts/sb-admin-v2/plugins/morris/raphael-2.1.0.min.js +0 -10
- data/vendor/assets/javascripts/sb-admin-v2/sb-admin.js +0 -18
- data/vendor/assets/stylesheets/.keep +0 -0
- data/vendor/assets/stylesheets/sb-admin-v2/bootstrap.css +0 -5830
- data/vendor/assets/stylesheets/sb-admin-v2/bootstrap.min.css +0 -7
- data/vendor/assets/stylesheets/sb-admin-v2/font-awesome/css/font-awesome.css +0 -1338
- data/vendor/assets/stylesheets/sb-admin-v2/font-awesome/css/font-awesome.min.css +0 -4
- data/vendor/assets/stylesheets/sb-admin-v2/font-awesome/fonts/FontAwesome.otf +0 -0
- data/vendor/assets/stylesheets/sb-admin-v2/font-awesome/fonts/fontawesome-webfont.eot +0 -0
- data/vendor/assets/stylesheets/sb-admin-v2/font-awesome/fonts/fontawesome-webfont.svg +0 -414
- data/vendor/assets/stylesheets/sb-admin-v2/font-awesome/fonts/fontawesome-webfont.ttf +0 -0
- data/vendor/assets/stylesheets/sb-admin-v2/font-awesome/fonts/fontawesome-webfont.woff +0 -0
- data/vendor/assets/stylesheets/sb-admin-v2/font-awesome/scss/_bordered-pulled.scss +0 -16
- data/vendor/assets/stylesheets/sb-admin-v2/font-awesome/scss/_core.scss +0 -12
- data/vendor/assets/stylesheets/sb-admin-v2/font-awesome/scss/_fixed-width.scss +0 -6
- data/vendor/assets/stylesheets/sb-admin-v2/font-awesome/scss/_icons.scss +0 -412
- data/vendor/assets/stylesheets/sb-admin-v2/font-awesome/scss/_larger.scss +0 -13
- data/vendor/assets/stylesheets/sb-admin-v2/font-awesome/scss/_list.scss +0 -19
- data/vendor/assets/stylesheets/sb-admin-v2/font-awesome/scss/_mixins.scss +0 -20
- data/vendor/assets/stylesheets/sb-admin-v2/font-awesome/scss/_path.scss +0 -14
- data/vendor/assets/stylesheets/sb-admin-v2/font-awesome/scss/_rotated-flipped.scss +0 -9
- data/vendor/assets/stylesheets/sb-admin-v2/font-awesome/scss/_spinning.scss +0 -30
- data/vendor/assets/stylesheets/sb-admin-v2/font-awesome/scss/_stacked.scss +0 -20
- data/vendor/assets/stylesheets/sb-admin-v2/font-awesome/scss/_variables.scss +0 -381
- data/vendor/assets/stylesheets/sb-admin-v2/font-awesome/scss/font-awesome.scss +0 -17
- data/vendor/assets/stylesheets/sb-admin-v2/fonts/glyphicons-halflings-regular.eot +0 -0
- data/vendor/assets/stylesheets/sb-admin-v2/fonts/glyphicons-halflings-regular.svg +0 -229
- data/vendor/assets/stylesheets/sb-admin-v2/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/vendor/assets/stylesheets/sb-admin-v2/fonts/glyphicons-halflings-regular.woff +0 -0
- data/vendor/assets/stylesheets/sb-admin-v2/plugins/dataTables/dataTables.bootstrap.css +0 -233
- data/vendor/assets/stylesheets/sb-admin-v2/plugins/morris/morris-0.4.3.min.css +0 -2
- data/vendor/assets/stylesheets/sb-admin-v2/plugins/social-buttons/social-buttons.css +0 -68
- data/vendor/assets/stylesheets/sb-admin-v2/plugins/timeline/timeline.css +0 -144
- data/vendor/assets/stylesheets/sb-admin-v2/sb-admin.css +0 -329
@@ -1,750 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
Flot plugin for rendering pie charts. The plugin assumes the data is
|
3
|
-
coming is as a single data value for each series, and each of those
|
4
|
-
values is a positive value or zero (negative numbers don't make
|
5
|
-
any sense and will cause strange effects). The data values do
|
6
|
-
NOT need to be passed in as percentage values because it
|
7
|
-
internally calculates the total and percentages.
|
8
|
-
|
9
|
-
* Created by Brian Medendorp, June 2009
|
10
|
-
* Updated November 2009 with contributions from: btburnett3, Anthony Aragues and Xavi Ivars
|
11
|
-
|
12
|
-
* Changes:
|
13
|
-
2009-10-22: lineJoin set to round
|
14
|
-
2009-10-23: IE full circle fix, donut
|
15
|
-
2009-11-11: Added basic hover from btburnett3 - does not work in IE, and center is off in Chrome and Opera
|
16
|
-
2009-11-17: Added IE hover capability submitted by Anthony Aragues
|
17
|
-
2009-11-18: Added bug fix submitted by Xavi Ivars (issues with arrays when other JS libraries are included as well)
|
18
|
-
|
19
|
-
|
20
|
-
Available options are:
|
21
|
-
series: {
|
22
|
-
pie: {
|
23
|
-
show: true/false
|
24
|
-
radius: 0-1 for percentage of fullsize, or a specified pixel length, or 'auto'
|
25
|
-
innerRadius: 0-1 for percentage of fullsize or a specified pixel length, for creating a donut effect
|
26
|
-
startAngle: 0-2 factor of PI used for starting angle (in radians) i.e 3/2 starts at the top, 0 and 2 have the same result
|
27
|
-
tilt: 0-1 for percentage to tilt the pie, where 1 is no tilt, and 0 is completely flat (nothing will show)
|
28
|
-
offset: {
|
29
|
-
top: integer value to move the pie up or down
|
30
|
-
left: integer value to move the pie left or right, or 'auto'
|
31
|
-
},
|
32
|
-
stroke: {
|
33
|
-
color: any hexidecimal color value (other formats may or may not work, so best to stick with something like '#FFF')
|
34
|
-
width: integer pixel width of the stroke
|
35
|
-
},
|
36
|
-
label: {
|
37
|
-
show: true/false, or 'auto'
|
38
|
-
formatter: a user-defined function that modifies the text/style of the label text
|
39
|
-
radius: 0-1 for percentage of fullsize, or a specified pixel length
|
40
|
-
background: {
|
41
|
-
color: any hexidecimal color value (other formats may or may not work, so best to stick with something like '#000')
|
42
|
-
opacity: 0-1
|
43
|
-
},
|
44
|
-
threshold: 0-1 for the percentage value at which to hide labels (if they're too small)
|
45
|
-
},
|
46
|
-
combine: {
|
47
|
-
threshold: 0-1 for the percentage value at which to combine slices (if they're too small)
|
48
|
-
color: any hexidecimal color value (other formats may or may not work, so best to stick with something like '#CCC'), if null, the plugin will automatically use the color of the first slice to be combined
|
49
|
-
label: any text value of what the combined slice should be labeled
|
50
|
-
}
|
51
|
-
highlight: {
|
52
|
-
opacity: 0-1
|
53
|
-
}
|
54
|
-
}
|
55
|
-
}
|
56
|
-
|
57
|
-
More detail and specific examples can be found in the included HTML file.
|
58
|
-
|
59
|
-
*/
|
60
|
-
|
61
|
-
(function ($)
|
62
|
-
{
|
63
|
-
function init(plot) // this is the "body" of the plugin
|
64
|
-
{
|
65
|
-
var canvas = null;
|
66
|
-
var target = null;
|
67
|
-
var maxRadius = null;
|
68
|
-
var centerLeft = null;
|
69
|
-
var centerTop = null;
|
70
|
-
var total = 0;
|
71
|
-
var redraw = true;
|
72
|
-
var redrawAttempts = 10;
|
73
|
-
var shrink = 0.95;
|
74
|
-
var legendWidth = 0;
|
75
|
-
var processed = false;
|
76
|
-
var raw = false;
|
77
|
-
|
78
|
-
// interactive variables
|
79
|
-
var highlights = [];
|
80
|
-
|
81
|
-
// add hook to determine if pie plugin in enabled, and then perform necessary operations
|
82
|
-
plot.hooks.processOptions.push(checkPieEnabled);
|
83
|
-
plot.hooks.bindEvents.push(bindEvents);
|
84
|
-
|
85
|
-
// check to see if the pie plugin is enabled
|
86
|
-
function checkPieEnabled(plot, options)
|
87
|
-
{
|
88
|
-
if (options.series.pie.show)
|
89
|
-
{
|
90
|
-
//disable grid
|
91
|
-
options.grid.show = false;
|
92
|
-
|
93
|
-
// set labels.show
|
94
|
-
if (options.series.pie.label.show=='auto')
|
95
|
-
if (options.legend.show)
|
96
|
-
options.series.pie.label.show = false;
|
97
|
-
else
|
98
|
-
options.series.pie.label.show = true;
|
99
|
-
|
100
|
-
// set radius
|
101
|
-
if (options.series.pie.radius=='auto')
|
102
|
-
if (options.series.pie.label.show)
|
103
|
-
options.series.pie.radius = 3/4;
|
104
|
-
else
|
105
|
-
options.series.pie.radius = 1;
|
106
|
-
|
107
|
-
// ensure sane tilt
|
108
|
-
if (options.series.pie.tilt>1)
|
109
|
-
options.series.pie.tilt=1;
|
110
|
-
if (options.series.pie.tilt<0)
|
111
|
-
options.series.pie.tilt=0;
|
112
|
-
|
113
|
-
// add processData hook to do transformations on the data
|
114
|
-
plot.hooks.processDatapoints.push(processDatapoints);
|
115
|
-
plot.hooks.drawOverlay.push(drawOverlay);
|
116
|
-
|
117
|
-
// add draw hook
|
118
|
-
plot.hooks.draw.push(draw);
|
119
|
-
}
|
120
|
-
}
|
121
|
-
|
122
|
-
// bind hoverable events
|
123
|
-
function bindEvents(plot, eventHolder)
|
124
|
-
{
|
125
|
-
var options = plot.getOptions();
|
126
|
-
|
127
|
-
if (options.series.pie.show && options.grid.hoverable)
|
128
|
-
eventHolder.unbind('mousemove').mousemove(onMouseMove);
|
129
|
-
|
130
|
-
if (options.series.pie.show && options.grid.clickable)
|
131
|
-
eventHolder.unbind('click').click(onClick);
|
132
|
-
}
|
133
|
-
|
134
|
-
|
135
|
-
// debugging function that prints out an object
|
136
|
-
function alertObject(obj)
|
137
|
-
{
|
138
|
-
var msg = '';
|
139
|
-
function traverse(obj, depth)
|
140
|
-
{
|
141
|
-
if (!depth)
|
142
|
-
depth = 0;
|
143
|
-
for (var i = 0; i < obj.length; ++i)
|
144
|
-
{
|
145
|
-
for (var j=0; j<depth; j++)
|
146
|
-
msg += '\t';
|
147
|
-
|
148
|
-
if( typeof obj[i] == "object")
|
149
|
-
{ // its an object
|
150
|
-
msg += ''+i+':\n';
|
151
|
-
traverse(obj[i], depth+1);
|
152
|
-
}
|
153
|
-
else
|
154
|
-
{ // its a value
|
155
|
-
msg += ''+i+': '+obj[i]+'\n';
|
156
|
-
}
|
157
|
-
}
|
158
|
-
}
|
159
|
-
traverse(obj);
|
160
|
-
alert(msg);
|
161
|
-
}
|
162
|
-
|
163
|
-
function calcTotal(data)
|
164
|
-
{
|
165
|
-
for (var i = 0; i < data.length; ++i)
|
166
|
-
{
|
167
|
-
var item = parseFloat(data[i].data[0][1]);
|
168
|
-
if (item)
|
169
|
-
total += item;
|
170
|
-
}
|
171
|
-
}
|
172
|
-
|
173
|
-
function processDatapoints(plot, series, data, datapoints)
|
174
|
-
{
|
175
|
-
if (!processed)
|
176
|
-
{
|
177
|
-
processed = true;
|
178
|
-
|
179
|
-
canvas = plot.getCanvas();
|
180
|
-
target = $(canvas).parent();
|
181
|
-
options = plot.getOptions();
|
182
|
-
|
183
|
-
plot.setData(combine(plot.getData()));
|
184
|
-
}
|
185
|
-
}
|
186
|
-
|
187
|
-
function setupPie()
|
188
|
-
{
|
189
|
-
legendWidth = target.children().filter('.legend').children().width();
|
190
|
-
|
191
|
-
// calculate maximum radius and center point
|
192
|
-
maxRadius = Math.min(canvas.width,(canvas.height/options.series.pie.tilt))/2;
|
193
|
-
centerTop = (canvas.height/2)+options.series.pie.offset.top;
|
194
|
-
centerLeft = (canvas.width/2);
|
195
|
-
|
196
|
-
if (options.series.pie.offset.left=='auto')
|
197
|
-
if (options.legend.position.match('w'))
|
198
|
-
centerLeft += legendWidth/2;
|
199
|
-
else
|
200
|
-
centerLeft -= legendWidth/2;
|
201
|
-
else
|
202
|
-
centerLeft += options.series.pie.offset.left;
|
203
|
-
|
204
|
-
if (centerLeft<maxRadius)
|
205
|
-
centerLeft = maxRadius;
|
206
|
-
else if (centerLeft>canvas.width-maxRadius)
|
207
|
-
centerLeft = canvas.width-maxRadius;
|
208
|
-
}
|
209
|
-
|
210
|
-
function fixData(data)
|
211
|
-
{
|
212
|
-
for (var i = 0; i < data.length; ++i)
|
213
|
-
{
|
214
|
-
if (typeof(data[i].data)=='number')
|
215
|
-
data[i].data = [[1,data[i].data]];
|
216
|
-
else if (typeof(data[i].data)=='undefined' || typeof(data[i].data[0])=='undefined')
|
217
|
-
{
|
218
|
-
if (typeof(data[i].data)!='undefined' && typeof(data[i].data.label)!='undefined')
|
219
|
-
data[i].label = data[i].data.label; // fix weirdness coming from flot
|
220
|
-
data[i].data = [[1,0]];
|
221
|
-
|
222
|
-
}
|
223
|
-
}
|
224
|
-
return data;
|
225
|
-
}
|
226
|
-
|
227
|
-
function combine(data)
|
228
|
-
{
|
229
|
-
data = fixData(data);
|
230
|
-
calcTotal(data);
|
231
|
-
var combined = 0;
|
232
|
-
var numCombined = 0;
|
233
|
-
var color = options.series.pie.combine.color;
|
234
|
-
|
235
|
-
var newdata = [];
|
236
|
-
for (var i = 0; i < data.length; ++i)
|
237
|
-
{
|
238
|
-
// make sure its a number
|
239
|
-
data[i].data[0][1] = parseFloat(data[i].data[0][1]);
|
240
|
-
if (!data[i].data[0][1])
|
241
|
-
data[i].data[0][1] = 0;
|
242
|
-
|
243
|
-
if (data[i].data[0][1]/total<=options.series.pie.combine.threshold)
|
244
|
-
{
|
245
|
-
combined += data[i].data[0][1];
|
246
|
-
numCombined++;
|
247
|
-
if (!color)
|
248
|
-
color = data[i].color;
|
249
|
-
}
|
250
|
-
else
|
251
|
-
{
|
252
|
-
newdata.push({
|
253
|
-
data: [[1,data[i].data[0][1]]],
|
254
|
-
color: data[i].color,
|
255
|
-
label: data[i].label,
|
256
|
-
angle: (data[i].data[0][1]*(Math.PI*2))/total,
|
257
|
-
percent: (data[i].data[0][1]/total*100)
|
258
|
-
});
|
259
|
-
}
|
260
|
-
}
|
261
|
-
if (numCombined>0)
|
262
|
-
newdata.push({
|
263
|
-
data: [[1,combined]],
|
264
|
-
color: color,
|
265
|
-
label: options.series.pie.combine.label,
|
266
|
-
angle: (combined*(Math.PI*2))/total,
|
267
|
-
percent: (combined/total*100)
|
268
|
-
});
|
269
|
-
return newdata;
|
270
|
-
}
|
271
|
-
|
272
|
-
function draw(plot, newCtx)
|
273
|
-
{
|
274
|
-
if (!target) return; // if no series were passed
|
275
|
-
ctx = newCtx;
|
276
|
-
|
277
|
-
setupPie();
|
278
|
-
var slices = plot.getData();
|
279
|
-
|
280
|
-
var attempts = 0;
|
281
|
-
while (redraw && attempts<redrawAttempts)
|
282
|
-
{
|
283
|
-
redraw = false;
|
284
|
-
if (attempts>0)
|
285
|
-
maxRadius *= shrink;
|
286
|
-
attempts += 1;
|
287
|
-
clear();
|
288
|
-
if (options.series.pie.tilt<=0.8)
|
289
|
-
drawShadow();
|
290
|
-
drawPie();
|
291
|
-
}
|
292
|
-
if (attempts >= redrawAttempts) {
|
293
|
-
clear();
|
294
|
-
target.prepend('<div class="error">Could not draw pie with labels contained inside canvas</div>');
|
295
|
-
}
|
296
|
-
|
297
|
-
if ( plot.setSeries && plot.insertLegend )
|
298
|
-
{
|
299
|
-
plot.setSeries(slices);
|
300
|
-
plot.insertLegend();
|
301
|
-
}
|
302
|
-
|
303
|
-
// we're actually done at this point, just defining internal functions at this point
|
304
|
-
|
305
|
-
function clear()
|
306
|
-
{
|
307
|
-
ctx.clearRect(0,0,canvas.width,canvas.height);
|
308
|
-
target.children().filter('.pieLabel, .pieLabelBackground').remove();
|
309
|
-
}
|
310
|
-
|
311
|
-
function drawShadow()
|
312
|
-
{
|
313
|
-
var shadowLeft = 5;
|
314
|
-
var shadowTop = 15;
|
315
|
-
var edge = 10;
|
316
|
-
var alpha = 0.02;
|
317
|
-
|
318
|
-
// set radius
|
319
|
-
if (options.series.pie.radius>1)
|
320
|
-
var radius = options.series.pie.radius;
|
321
|
-
else
|
322
|
-
var radius = maxRadius * options.series.pie.radius;
|
323
|
-
|
324
|
-
if (radius>=(canvas.width/2)-shadowLeft || radius*options.series.pie.tilt>=(canvas.height/2)-shadowTop || radius<=edge)
|
325
|
-
return; // shadow would be outside canvas, so don't draw it
|
326
|
-
|
327
|
-
ctx.save();
|
328
|
-
ctx.translate(shadowLeft,shadowTop);
|
329
|
-
ctx.globalAlpha = alpha;
|
330
|
-
ctx.fillStyle = '#000';
|
331
|
-
|
332
|
-
// center and rotate to starting position
|
333
|
-
ctx.translate(centerLeft,centerTop);
|
334
|
-
ctx.scale(1, options.series.pie.tilt);
|
335
|
-
|
336
|
-
//radius -= edge;
|
337
|
-
for (var i=1; i<=edge; i++)
|
338
|
-
{
|
339
|
-
ctx.beginPath();
|
340
|
-
ctx.arc(0,0,radius,0,Math.PI*2,false);
|
341
|
-
ctx.fill();
|
342
|
-
radius -= i;
|
343
|
-
}
|
344
|
-
|
345
|
-
ctx.restore();
|
346
|
-
}
|
347
|
-
|
348
|
-
function drawPie()
|
349
|
-
{
|
350
|
-
startAngle = Math.PI*options.series.pie.startAngle;
|
351
|
-
|
352
|
-
// set radius
|
353
|
-
if (options.series.pie.radius>1)
|
354
|
-
var radius = options.series.pie.radius;
|
355
|
-
else
|
356
|
-
var radius = maxRadius * options.series.pie.radius;
|
357
|
-
|
358
|
-
// center and rotate to starting position
|
359
|
-
ctx.save();
|
360
|
-
ctx.translate(centerLeft,centerTop);
|
361
|
-
ctx.scale(1, options.series.pie.tilt);
|
362
|
-
//ctx.rotate(startAngle); // start at top; -- This doesn't work properly in Opera
|
363
|
-
|
364
|
-
// draw slices
|
365
|
-
ctx.save();
|
366
|
-
var currentAngle = startAngle;
|
367
|
-
for (var i = 0; i < slices.length; ++i)
|
368
|
-
{
|
369
|
-
slices[i].startAngle = currentAngle;
|
370
|
-
drawSlice(slices[i].angle, slices[i].color, true);
|
371
|
-
}
|
372
|
-
ctx.restore();
|
373
|
-
|
374
|
-
// draw slice outlines
|
375
|
-
ctx.save();
|
376
|
-
ctx.lineWidth = options.series.pie.stroke.width;
|
377
|
-
currentAngle = startAngle;
|
378
|
-
for (var i = 0; i < slices.length; ++i)
|
379
|
-
drawSlice(slices[i].angle, options.series.pie.stroke.color, false);
|
380
|
-
ctx.restore();
|
381
|
-
|
382
|
-
// draw donut hole
|
383
|
-
drawDonutHole(ctx);
|
384
|
-
|
385
|
-
// draw labels
|
386
|
-
if (options.series.pie.label.show)
|
387
|
-
drawLabels();
|
388
|
-
|
389
|
-
// restore to original state
|
390
|
-
ctx.restore();
|
391
|
-
|
392
|
-
function drawSlice(angle, color, fill)
|
393
|
-
{
|
394
|
-
if (angle<=0)
|
395
|
-
return;
|
396
|
-
|
397
|
-
if (fill)
|
398
|
-
ctx.fillStyle = color;
|
399
|
-
else
|
400
|
-
{
|
401
|
-
ctx.strokeStyle = color;
|
402
|
-
ctx.lineJoin = 'round';
|
403
|
-
}
|
404
|
-
|
405
|
-
ctx.beginPath();
|
406
|
-
if (Math.abs(angle - Math.PI*2) > 0.000000001)
|
407
|
-
ctx.moveTo(0,0); // Center of the pie
|
408
|
-
else if ($.browser.msie)
|
409
|
-
angle -= 0.0001;
|
410
|
-
//ctx.arc(0,0,radius,0,angle,false); // This doesn't work properly in Opera
|
411
|
-
ctx.arc(0,0,radius,currentAngle,currentAngle+angle,false);
|
412
|
-
ctx.closePath();
|
413
|
-
//ctx.rotate(angle); // This doesn't work properly in Opera
|
414
|
-
currentAngle += angle;
|
415
|
-
|
416
|
-
if (fill)
|
417
|
-
ctx.fill();
|
418
|
-
else
|
419
|
-
ctx.stroke();
|
420
|
-
}
|
421
|
-
|
422
|
-
function drawLabels()
|
423
|
-
{
|
424
|
-
var currentAngle = startAngle;
|
425
|
-
|
426
|
-
// set radius
|
427
|
-
if (options.series.pie.label.radius>1)
|
428
|
-
var radius = options.series.pie.label.radius;
|
429
|
-
else
|
430
|
-
var radius = maxRadius * options.series.pie.label.radius;
|
431
|
-
|
432
|
-
for (var i = 0; i < slices.length; ++i)
|
433
|
-
{
|
434
|
-
if (slices[i].percent >= options.series.pie.label.threshold*100)
|
435
|
-
drawLabel(slices[i], currentAngle, i);
|
436
|
-
currentAngle += slices[i].angle;
|
437
|
-
}
|
438
|
-
|
439
|
-
function drawLabel(slice, startAngle, index)
|
440
|
-
{
|
441
|
-
if (slice.data[0][1]==0)
|
442
|
-
return;
|
443
|
-
|
444
|
-
// format label text
|
445
|
-
var lf = options.legend.labelFormatter, text, plf = options.series.pie.label.formatter;
|
446
|
-
if (lf)
|
447
|
-
text = lf(slice.label, slice);
|
448
|
-
else
|
449
|
-
text = slice.label;
|
450
|
-
if (plf)
|
451
|
-
text = plf(text, slice);
|
452
|
-
|
453
|
-
var halfAngle = ((startAngle+slice.angle) + startAngle)/2;
|
454
|
-
var x = centerLeft + Math.round(Math.cos(halfAngle) * radius);
|
455
|
-
var y = centerTop + Math.round(Math.sin(halfAngle) * radius) * options.series.pie.tilt;
|
456
|
-
|
457
|
-
var html = '<span class="pieLabel" id="pieLabel'+index+'" style="position:absolute;top:' + y + 'px;left:' + x + 'px;">' + text + "</span>";
|
458
|
-
target.append(html);
|
459
|
-
var label = target.children('#pieLabel'+index);
|
460
|
-
var labelTop = (y - label.height()/2);
|
461
|
-
var labelLeft = (x - label.width()/2);
|
462
|
-
label.css('top', labelTop);
|
463
|
-
label.css('left', labelLeft);
|
464
|
-
|
465
|
-
// check to make sure that the label is not outside the canvas
|
466
|
-
if (0-labelTop>0 || 0-labelLeft>0 || canvas.height-(labelTop+label.height())<0 || canvas.width-(labelLeft+label.width())<0)
|
467
|
-
redraw = true;
|
468
|
-
|
469
|
-
if (options.series.pie.label.background.opacity != 0) {
|
470
|
-
// put in the transparent background separately to avoid blended labels and label boxes
|
471
|
-
var c = options.series.pie.label.background.color;
|
472
|
-
if (c == null) {
|
473
|
-
c = slice.color;
|
474
|
-
}
|
475
|
-
var pos = 'top:'+labelTop+'px;left:'+labelLeft+'px;';
|
476
|
-
$('<div class="pieLabelBackground" style="position:absolute;width:' + label.width() + 'px;height:' + label.height() + 'px;' + pos +'background-color:' + c + ';"> </div>').insertBefore(label).css('opacity', options.series.pie.label.background.opacity);
|
477
|
-
}
|
478
|
-
} // end individual label function
|
479
|
-
} // end drawLabels function
|
480
|
-
} // end drawPie function
|
481
|
-
} // end draw function
|
482
|
-
|
483
|
-
// Placed here because it needs to be accessed from multiple locations
|
484
|
-
function drawDonutHole(layer)
|
485
|
-
{
|
486
|
-
// draw donut hole
|
487
|
-
if(options.series.pie.innerRadius > 0)
|
488
|
-
{
|
489
|
-
// subtract the center
|
490
|
-
layer.save();
|
491
|
-
innerRadius = options.series.pie.innerRadius > 1 ? options.series.pie.innerRadius : maxRadius * options.series.pie.innerRadius;
|
492
|
-
layer.globalCompositeOperation = 'destination-out'; // this does not work with excanvas, but it will fall back to using the stroke color
|
493
|
-
layer.beginPath();
|
494
|
-
layer.fillStyle = options.series.pie.stroke.color;
|
495
|
-
layer.arc(0,0,innerRadius,0,Math.PI*2,false);
|
496
|
-
layer.fill();
|
497
|
-
layer.closePath();
|
498
|
-
layer.restore();
|
499
|
-
|
500
|
-
// add inner stroke
|
501
|
-
layer.save();
|
502
|
-
layer.beginPath();
|
503
|
-
layer.strokeStyle = options.series.pie.stroke.color;
|
504
|
-
layer.arc(0,0,innerRadius,0,Math.PI*2,false);
|
505
|
-
layer.stroke();
|
506
|
-
layer.closePath();
|
507
|
-
layer.restore();
|
508
|
-
// TODO: add extra shadow inside hole (with a mask) if the pie is tilted.
|
509
|
-
}
|
510
|
-
}
|
511
|
-
|
512
|
-
//-- Additional Interactive related functions --
|
513
|
-
|
514
|
-
function isPointInPoly(poly, pt)
|
515
|
-
{
|
516
|
-
for(var c = false, i = -1, l = poly.length, j = l - 1; ++i < l; j = i)
|
517
|
-
((poly[i][1] <= pt[1] && pt[1] < poly[j][1]) || (poly[j][1] <= pt[1] && pt[1]< poly[i][1]))
|
518
|
-
&& (pt[0] < (poly[j][0] - poly[i][0]) * (pt[1] - poly[i][1]) / (poly[j][1] - poly[i][1]) + poly[i][0])
|
519
|
-
&& (c = !c);
|
520
|
-
return c;
|
521
|
-
}
|
522
|
-
|
523
|
-
function findNearbySlice(mouseX, mouseY)
|
524
|
-
{
|
525
|
-
var slices = plot.getData(),
|
526
|
-
options = plot.getOptions(),
|
527
|
-
radius = options.series.pie.radius > 1 ? options.series.pie.radius : maxRadius * options.series.pie.radius;
|
528
|
-
|
529
|
-
for (var i = 0; i < slices.length; ++i)
|
530
|
-
{
|
531
|
-
var s = slices[i];
|
532
|
-
|
533
|
-
if(s.pie.show)
|
534
|
-
{
|
535
|
-
ctx.save();
|
536
|
-
ctx.beginPath();
|
537
|
-
ctx.moveTo(0,0); // Center of the pie
|
538
|
-
//ctx.scale(1, options.series.pie.tilt); // this actually seems to break everything when here.
|
539
|
-
ctx.arc(0,0,radius,s.startAngle,s.startAngle+s.angle,false);
|
540
|
-
ctx.closePath();
|
541
|
-
x = mouseX-centerLeft;
|
542
|
-
y = mouseY-centerTop;
|
543
|
-
if(ctx.isPointInPath)
|
544
|
-
{
|
545
|
-
if (ctx.isPointInPath(mouseX-centerLeft, mouseY-centerTop))
|
546
|
-
{
|
547
|
-
//alert('found slice!');
|
548
|
-
ctx.restore();
|
549
|
-
return {datapoint: [s.percent, s.data], dataIndex: 0, series: s, seriesIndex: i};
|
550
|
-
}
|
551
|
-
}
|
552
|
-
else
|
553
|
-
{
|
554
|
-
// excanvas for IE doesn;t support isPointInPath, this is a workaround.
|
555
|
-
p1X = (radius * Math.cos(s.startAngle));
|
556
|
-
p1Y = (radius * Math.sin(s.startAngle));
|
557
|
-
p2X = (radius * Math.cos(s.startAngle+(s.angle/4)));
|
558
|
-
p2Y = (radius * Math.sin(s.startAngle+(s.angle/4)));
|
559
|
-
p3X = (radius * Math.cos(s.startAngle+(s.angle/2)));
|
560
|
-
p3Y = (radius * Math.sin(s.startAngle+(s.angle/2)));
|
561
|
-
p4X = (radius * Math.cos(s.startAngle+(s.angle/1.5)));
|
562
|
-
p4Y = (radius * Math.sin(s.startAngle+(s.angle/1.5)));
|
563
|
-
p5X = (radius * Math.cos(s.startAngle+s.angle));
|
564
|
-
p5Y = (radius * Math.sin(s.startAngle+s.angle));
|
565
|
-
arrPoly = [[0,0],[p1X,p1Y],[p2X,p2Y],[p3X,p3Y],[p4X,p4Y],[p5X,p5Y]];
|
566
|
-
arrPoint = [x,y];
|
567
|
-
// TODO: perhaps do some mathmatical trickery here with the Y-coordinate to compensate for pie tilt?
|
568
|
-
if(isPointInPoly(arrPoly, arrPoint))
|
569
|
-
{
|
570
|
-
ctx.restore();
|
571
|
-
return {datapoint: [s.percent, s.data], dataIndex: 0, series: s, seriesIndex: i};
|
572
|
-
}
|
573
|
-
}
|
574
|
-
ctx.restore();
|
575
|
-
}
|
576
|
-
}
|
577
|
-
|
578
|
-
return null;
|
579
|
-
}
|
580
|
-
|
581
|
-
function onMouseMove(e)
|
582
|
-
{
|
583
|
-
triggerClickHoverEvent('plothover', e);
|
584
|
-
}
|
585
|
-
|
586
|
-
function onClick(e)
|
587
|
-
{
|
588
|
-
triggerClickHoverEvent('plotclick', e);
|
589
|
-
}
|
590
|
-
|
591
|
-
// trigger click or hover event (they send the same parameters so we share their code)
|
592
|
-
function triggerClickHoverEvent(eventname, e)
|
593
|
-
{
|
594
|
-
var offset = plot.offset(),
|
595
|
-
canvasX = parseInt(e.pageX - offset.left),
|
596
|
-
canvasY = parseInt(e.pageY - offset.top),
|
597
|
-
item = findNearbySlice(canvasX, canvasY);
|
598
|
-
|
599
|
-
if (options.grid.autoHighlight)
|
600
|
-
{
|
601
|
-
// clear auto-highlights
|
602
|
-
for (var i = 0; i < highlights.length; ++i)
|
603
|
-
{
|
604
|
-
var h = highlights[i];
|
605
|
-
if (h.auto == eventname && !(item && h.series == item.series))
|
606
|
-
unhighlight(h.series);
|
607
|
-
}
|
608
|
-
}
|
609
|
-
|
610
|
-
// highlight the slice
|
611
|
-
if (item)
|
612
|
-
highlight(item.series, eventname);
|
613
|
-
|
614
|
-
// trigger any hover bind events
|
615
|
-
var pos = { pageX: e.pageX, pageY: e.pageY };
|
616
|
-
target.trigger(eventname, [ pos, item ]);
|
617
|
-
}
|
618
|
-
|
619
|
-
function highlight(s, auto)
|
620
|
-
{
|
621
|
-
if (typeof s == "number")
|
622
|
-
s = series[s];
|
623
|
-
|
624
|
-
var i = indexOfHighlight(s);
|
625
|
-
if (i == -1)
|
626
|
-
{
|
627
|
-
highlights.push({ series: s, auto: auto });
|
628
|
-
plot.triggerRedrawOverlay();
|
629
|
-
}
|
630
|
-
else if (!auto)
|
631
|
-
highlights[i].auto = false;
|
632
|
-
}
|
633
|
-
|
634
|
-
function unhighlight(s)
|
635
|
-
{
|
636
|
-
if (s == null)
|
637
|
-
{
|
638
|
-
highlights = [];
|
639
|
-
plot.triggerRedrawOverlay();
|
640
|
-
}
|
641
|
-
|
642
|
-
if (typeof s == "number")
|
643
|
-
s = series[s];
|
644
|
-
|
645
|
-
var i = indexOfHighlight(s);
|
646
|
-
if (i != -1)
|
647
|
-
{
|
648
|
-
highlights.splice(i, 1);
|
649
|
-
plot.triggerRedrawOverlay();
|
650
|
-
}
|
651
|
-
}
|
652
|
-
|
653
|
-
function indexOfHighlight(s)
|
654
|
-
{
|
655
|
-
for (var i = 0; i < highlights.length; ++i)
|
656
|
-
{
|
657
|
-
var h = highlights[i];
|
658
|
-
if (h.series == s)
|
659
|
-
return i;
|
660
|
-
}
|
661
|
-
return -1;
|
662
|
-
}
|
663
|
-
|
664
|
-
function drawOverlay(plot, octx)
|
665
|
-
{
|
666
|
-
//alert(options.series.pie.radius);
|
667
|
-
var options = plot.getOptions();
|
668
|
-
//alert(options.series.pie.radius);
|
669
|
-
|
670
|
-
var radius = options.series.pie.radius > 1 ? options.series.pie.radius : maxRadius * options.series.pie.radius;
|
671
|
-
|
672
|
-
octx.save();
|
673
|
-
octx.translate(centerLeft, centerTop);
|
674
|
-
octx.scale(1, options.series.pie.tilt);
|
675
|
-
|
676
|
-
for (i = 0; i < highlights.length; ++i)
|
677
|
-
drawHighlight(highlights[i].series);
|
678
|
-
|
679
|
-
drawDonutHole(octx);
|
680
|
-
|
681
|
-
octx.restore();
|
682
|
-
|
683
|
-
function drawHighlight(series)
|
684
|
-
{
|
685
|
-
if (series.angle < 0) return;
|
686
|
-
|
687
|
-
//octx.fillStyle = parseColor(options.series.pie.highlight.color).scale(null, null, null, options.series.pie.highlight.opacity).toString();
|
688
|
-
octx.fillStyle = "rgba(255, 255, 255, "+options.series.pie.highlight.opacity+")"; // this is temporary until we have access to parseColor
|
689
|
-
|
690
|
-
octx.beginPath();
|
691
|
-
if (Math.abs(series.angle - Math.PI*2) > 0.000000001)
|
692
|
-
octx.moveTo(0,0); // Center of the pie
|
693
|
-
octx.arc(0,0,radius,series.startAngle,series.startAngle+series.angle,false);
|
694
|
-
octx.closePath();
|
695
|
-
octx.fill();
|
696
|
-
}
|
697
|
-
|
698
|
-
}
|
699
|
-
|
700
|
-
} // end init (plugin body)
|
701
|
-
|
702
|
-
// define pie specific options and their default values
|
703
|
-
var options = {
|
704
|
-
series: {
|
705
|
-
pie: {
|
706
|
-
show: false,
|
707
|
-
radius: 'auto', // actual radius of the visible pie (based on full calculated radius if <=1, or hard pixel value)
|
708
|
-
innerRadius:0, /* for donut */
|
709
|
-
startAngle: 3/2,
|
710
|
-
tilt: 1,
|
711
|
-
offset: {
|
712
|
-
top: 0,
|
713
|
-
left: 'auto'
|
714
|
-
},
|
715
|
-
stroke: {
|
716
|
-
color: '#FFF',
|
717
|
-
width: 1
|
718
|
-
},
|
719
|
-
label: {
|
720
|
-
show: 'auto',
|
721
|
-
formatter: function(label, slice){
|
722
|
-
return '<div style="font-size:x-small;text-align:center;padding:2px;color:'+slice.color+';">'+label+'<br/>'+Math.round(slice.percent)+'%</div>';
|
723
|
-
}, // formatter function
|
724
|
-
radius: 1, // radius at which to place the labels (based on full calculated radius if <=1, or hard pixel value)
|
725
|
-
background: {
|
726
|
-
color: null,
|
727
|
-
opacity: 0
|
728
|
-
},
|
729
|
-
threshold: 0 // percentage at which to hide the label (i.e. the slice is too narrow)
|
730
|
-
},
|
731
|
-
combine: {
|
732
|
-
threshold: -1, // percentage at which to combine little slices into one larger slice
|
733
|
-
color: null, // color to give the new slice (auto-generated if null)
|
734
|
-
label: 'Other' // label to give the new slice
|
735
|
-
},
|
736
|
-
highlight: {
|
737
|
-
//color: '#FFF', // will add this functionality once parseColor is available
|
738
|
-
opacity: 0.5
|
739
|
-
}
|
740
|
-
}
|
741
|
-
}
|
742
|
-
};
|
743
|
-
|
744
|
-
$.plot.plugins.push({
|
745
|
-
init: init,
|
746
|
-
options: options,
|
747
|
-
name: "pie",
|
748
|
-
version: "1.0"
|
749
|
-
});
|
750
|
-
})(jQuery);
|