Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
c3-closed
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
charts
c3-closed
Commits
a1f2c749
Commit
a1f2c749
authored
Mar 26, 2016
by
Дмитрий Никулин
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make markers settings individual per line
parent
7309dfb2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
config.js
src/config.js
+1
-1
core.js
src/core.js
+1
-1
No files found.
src/config.js
View file @
a1f2c749
...
...
@@ -143,7 +143,7 @@ c3_chart_internal_fn.getDefaultConfig = function () {
grid_focus_show
:
true
,
grid_lines_front
:
true
,
// point - point of each data
point_show
:
true
,
point_show
:
{}
,
point_r
:
2.5
,
point_focus_expand_enabled
:
true
,
point_focus_expand_r
:
undefined
,
...
...
src/core.js
View file @
a1f2c749
...
...
@@ -831,7 +831,7 @@ c3_chart_internal_fn.initialOpacityForCircle = function (d) {
return
d
.
value
!==
null
&&
this
.
withoutFadeIn
[
d
.
id
]
?
this
.
opacityForCircle
(
d
)
:
0
;
};
c3_chart_internal_fn
.
opacityForCircle
=
function
(
d
)
{
var
opacity
=
this
.
config
.
point_show
?
1
:
0
;
var
opacity
=
this
.
config
.
point_show
[
d
.
id
]
?
1
:
0
;
return
isValue
(
d
.
value
)
?
(
this
.
isScatterType
(
d
)
?
0.5
:
opacity
)
:
0
;
};
c3_chart_internal_fn
.
opacityForText
=
function
()
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment