Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
Position: Absolute + Transform: Rotate(-(УГОЛПОВОРОТА)deg);
In my opinion, it's best not to overdo it. Why such red tape in web development? You can come up with something simpler, but no less cool
function updateHeatmap(data) {
return function(event) {
var map = event.chart;
if ( map.dataGenerated )
return;
if ( map.dataProvider.areas.length === 0 ) {
setTimeout( updateHeatmap, 100 );
return;
}
for ( var i = 0; i < map.dataProvider.areas.length; i++ ) {
map.dataProvider.areas[ i ].value = Math.round( Math.random() * 10000 );
}
map.dataGenerated = true;
map.validateNow();
}
}
// "method": updateHeatmap(data)
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question