-
Notifications
You must be signed in to change notification settings - Fork 100
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adds locale option as described in.. #96
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
module GoogleVisualr | ||
module Interactive | ||
|
||
# https://developers.google.com/chart/interactive/docs/gallery/annotationchart | ||
class AnnotationChart < BaseChart | ||
# For Configuration Options, please refer to: | ||
# https://developers.google.com/chart/interactive/docs/gallery/annotationchart#configuration-options | ||
end | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Extra empty line detected at module body end. |
||
end | ||
end |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
module GoogleVisualr | ||
module Interactive | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Extra empty line detected at module body beginning. |
||
# https://developers.google.com/chart/interactive/docs/gallery/calendar | ||
class Calendar < BaseChart | ||
# For Configuration Options, please refer to: | ||
# https://developers.google.com/chart/interactive/docs/gallery/calendar#configuration-options | ||
end | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Extra empty line detected at module body end. |
||
end | ||
end |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
module GoogleVisualr | ||
module Interactive | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Extra empty line detected at module body beginning. |
||
# https://developers.google.com/chart/interactive/docs/gallery/ganttchart | ||
class GanttChart < BaseChart | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Extra empty line detected at class body beginning. |
||
def package_name | ||
"gantt" | ||
end | ||
|
||
# For Configuration Options, please refer to: | ||
# https://developers.google.com/chart/interactive/docs/gallery/ganttchart#configuration-options | ||
end | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Extra empty line detected at module body end. |
||
end | ||
end |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
module GoogleVisualr | ||
module Interactive | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Extra empty line detected at module body beginning. |
||
# https://developers.google.com/chart/interactive/docs/gallery/sankey | ||
class Sankey < BaseChart | ||
# For Configuration Options, please refer to: | ||
# https://developers.google.com/chart/interactive/docs/gallery/sankey#configuration-options | ||
end | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Extra empty line detected at module body end. |
||
end | ||
end |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
module GoogleVisualr | ||
module Interactive | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Extra empty line detected at module body beginning. |
||
# https://developers.google.com/chart/interactive/docs/gallery/wordtree | ||
class WordTree < BaseChart | ||
# For Configuration Options, please refer to: | ||
# https://developers.google.com/chart/interactive/docs/gallery/wordtree#a-simple-example | ||
end | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Extra empty line detected at module body end. |
||
end | ||
end |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Extra empty line detected at module body beginning.