-
KathleenJuly 6, 2016 at 1:43 pm #6320
So I go into the src then theme then scatter and grab this theme:
Sunset: {
name: “Sunset”,
labelColor: “#FFF”,
labelFill: “#00236C”,
stroke_colors: [“#CD57A4”, “#B236A3”, “#FA6F7F”, “#FA7C3B”, “#E96B6B”],
fill_colors: [“#89208F”, “#C02690”, “#D93256”, “#DB3D0C”, “#B2180E”],
grad1: “#390E1D”,
grad0: “#7C1B31”,
background_transition: materialBackground,
yAxis_line_stroke: “#FFF”,
yAxis_line_opacity: 0.25,
node_stroke: function (d, i) {
return this.stroke_colors[i % 5];
},
node_fill: function (d, i) {
return this.fill_colors[i % 5];
},
node_fill_opacity: function (d, i) {
return .7;
},
class: “vz-skin-sunset”
},I was trying to change a color value then move to the next spot and change the color again to see what was what when it was applied, the problem is whenever I refreshed the page the theme was the same not showing that I changed anything at all. At one point I even changed all the hex values to the same thing but it did not appear to change anything. Is this the right way to alter the themes or am I missing something?
vizulyJuly 7, 2016 at 7:11 am #6324Hello Kathleen,
You will want to make sure that you have modified the Scatter_Test.html file so it points to the actual source code files versus the minified files.
You can find these instructions in our Getting Started guide at the “Our First Look” section.
You will want to uncomment out all of the references to the source files and remove or comment out the references to the minified files used for production.
Once you have done that, you should be able to see your changes (assuming you are using the Sunset Skin.)
– Tom
-
|
You must be logged in to reply to this topic.